diff --git a/source/gx/terminix/application.d b/source/gx/terminix/application.d index c5beeff7..2458117c 100644 --- a/source/gx/terminix/application.d +++ b/source/gx/terminix/application.d @@ -211,11 +211,6 @@ private: preferenceWindow.close(); } - int onHandleLocalOptions(GVariantDict, GApplication) { - trace("App processing local command line"); - return -1; - } - int onCommandLine(ApplicationCommandLine acl, GApplication app) { trace("App processing command line"); scope (exit) { @@ -322,7 +317,6 @@ public: this.addOnStartup(&onAppStartup); this.addOnShutdown(&onAppShutdown); this.addOnCommandLine(&onCommandLine); - this.addOnHandleLocalOptions(&onHandleLocalOptions); terminix = this; } diff --git a/source/gx/terminix/constants.d b/source/gx/terminix/constants.d index c990538d..fc42dc69 100644 --- a/source/gx/terminix/constants.d +++ b/source/gx/terminix/constants.d @@ -35,7 +35,7 @@ string[] APPLICATION_CREDITS = [ ]; immutable string[] APPLICATION_ARTISTS = []; immutable string[] APPLICATION_DOCUMENTERS = [""]; -immutable string APPLICATION_TRANSLATORS = "MetotoSakamoto, frnogueira, dsboger"; +immutable string APPLICATION_TRANSLATORS = "MetotoSakamoto, frnogueira, dsboger, Philipp Wolfer"; //GTK Settings enum GTK_APP_PREFER_DARK_THEME = "gtk-application-prefer-dark-theme";