Remove useless run method override

This commit is contained in:
Rafał Dzięgiel
2021-02-24 16:46:25 +01:00
parent db8d060841
commit 53ad4da7c6
2 changed files with 2 additions and 7 deletions

View File

@@ -62,11 +62,6 @@ class ClapperAppBase extends Gtk.Application
); );
} }
run(arr)
{
super.run(arr || []);
}
_onFirstActivate() _onFirstActivate()
{ {
const gtkSettings = Gtk.Settings.get_default(); const gtkSettings = Gtk.Settings.get_default();

View File

@@ -9,7 +9,7 @@ const ID_POSTFIX = 'Remote';
Misc.clapperPath = `${pkg.datadir}/${Misc.appId}`; Misc.clapperPath = `${pkg.datadir}/${Misc.appId}`;
Misc.appId += '.' + ID_POSTFIX; Misc.appId += '.' + ID_POSTFIX;
function main() function main(argv)
{ {
new AppRemote().run(); new AppRemote().run(argv);
} }