summaryrefslogtreecommitdiff
path: root/mate-about
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2014-05-03 21:02:11 +0200
committerStefano Karapetsas <[email protected]>2014-05-03 21:02:11 +0200
commit9c9e964802c8c991a6b77cc3b9cc0ad4717adc4f (patch)
tree1792ec4c54f646a06900f92b82cdaee37e55bd7a /mate-about
parentc1e67b0daceff1f409c346326548d6ea4e1a7a01 (diff)
downloadmate-desktop-9c9e964802c8c991a6b77cc3b9cc0ad4717adc4f.tar.bz2
mate-desktop-9c9e964802c8c991a6b77cc3b9cc0ad4717adc4f.tar.xz
Remove libunique usage
Diffstat (limited to 'mate-about')
-rw-r--r--mate-about/mate-about.c43
-rw-r--r--mate-about/mate-about.h16
2 files changed, 9 insertions, 50 deletions
diff --git a/mate-about/mate-about.c b/mate-about/mate-about.c
index 189e1c7..cff6b45 100644
--- a/mate-about/mate-about.c
+++ b/mate-about/mate-about.c
@@ -18,9 +18,6 @@
* 02110-1301, USA.
*/
-#ifndef __MATE_ABOUT_C__
-#define __MATE_ABOUT_C__
-
#include "mate-about.h"
/* get text macro, this should be on the common macros. or not?
@@ -32,7 +29,7 @@
textdomain(package);
#endif
- #if GTK_CHECK_VERSION(3, 0, 0) && !defined(UNIQUE)
+ #if GTK_CHECK_VERSION(3, 0, 0)
static void mate_about_on_activate(GtkApplication* app)
{
@@ -51,7 +48,7 @@
}
}
- #elif GLIB_CHECK_VERSION(2, 26, 0) && !defined(UNIQUE)
+ #else
// callback
static void mate_about_on_activate(GApplication* app)
@@ -108,9 +105,7 @@
* displayed in the about box to give credit to the translator(s). */
mate_about_dialog_set_translator_credits(mate_about_dialog, _("translator-credits"));
- #ifdef USE_UNIQUE
- unique_app_watch_window(mate_about_application, (GtkWindow*) mate_about_dialog);
- #elif GTK_CHECK_VERSION(3, 0, 0) && !defined(UNIQUE)
+ #if GTK_CHECK_VERSION(3, 0, 0)
gtk_window_set_application(GTK_WINDOW(mate_about_dialog), mate_about_application);
#endif
@@ -147,29 +142,7 @@
{
gtk_init(&argc, &argv);
- /**
- * Examples taken from:
- * http://developer.gnome.org/gtk3/3.0/gtk-migrating-GtkApplication.html
- */
- #ifdef USE_UNIQUE
-
- mate_about_application = unique_app_new("org.mate.about", NULL);
-
- if (unique_app_is_running(mate_about_application))
- {
- UniqueResponse response = unique_app_send_message(mate_about_application, UNIQUE_ACTIVATE, NULL);
-
- if (response != UNIQUE_RESPONSE_OK)
- {
- status = 1;
- }
- }
- else
- {
- mate_about_run();
- }
-
- #elif GTK_CHECK_VERSION(3, 0, 0) && !defined(USE_UNIQUE)
+ #if GTK_CHECK_VERSION(3, 0, 0)
mate_about_application = gtk_application_new("org.mate.about", 0);
g_signal_connect(mate_about_application, "activate", G_CALLBACK(mate_about_on_activate), NULL);
@@ -178,7 +151,7 @@
g_object_unref(mate_about_application);
- #elif GLIB_CHECK_VERSION(2, 26, 0) && !defined(USE_UNIQUE)
+ #else
mate_about_application = g_application_new("org.mate.about", G_APPLICATION_FLAGS_NONE);
g_signal_connect(mate_about_application, "activate", G_CALLBACK(mate_about_on_activate), NULL);
@@ -187,14 +160,8 @@
g_object_unref(mate_about_application);
- #else
-
- mate_about_run();
-
#endif
}
return status;
}
-
-#endif
diff --git a/mate-about/mate-about.h b/mate-about/mate-about.h
index 6f9c58f..9e2b16e 100644
--- a/mate-about/mate-about.h
+++ b/mate-about/mate-about.h
@@ -28,10 +28,6 @@
#include <libmate-desktop/mate-aboutdialog.h>
-#ifdef USE_UNIQUE
- #include <unique/unique.h>
-#endif
-
const char* program_name = "MATE Desktop Environment";
const char* version = PACKAGE_VERSION;
const char* icon = "mate";
@@ -646,13 +642,9 @@
// widget for mate-about window
MateAboutDialog* mate_about_dialog = FALSE;
- // libunique thing
- #ifdef USE_UNIQUE
- extern UniqueApp* mate_about_application;
- UniqueApp* mate_about_application = NULL;
- #elif GTK_CHECK_VERSION(3, 0, 0)
+ #if GTK_CHECK_VERSION(3, 0, 0)
GtkApplication* mate_about_application;
- #elif GLIB_CHECK_VERSION(2, 26, 0)
+ #else
GApplication* mate_about_application;
#endif
@@ -665,9 +657,9 @@
void mate_about_run(void);
void mate_about_release_version(void);
- #if GTK_CHECK_VERSION(3, 0, 0) && !defined(USE_UNIQUE)
+ #if GTK_CHECK_VERSION(3, 0, 0)
static void mate_about_on_activate(GtkApplication* app);
- #elif GLIB_CHECK_VERSION(2, 26, 0) && !defined(USE_UNIQUE)
+ #else
static void mate_about_on_activate(GApplication* app);
#endif