[frogr] Use GTK_API_VERSION_3 and avoid defining unused variables (license)
- From: Mario Sanchez Prada <msanchez src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [frogr] Use GTK_API_VERSION_3 and avoid defining unused variables (license)
- Date: Fri, 27 May 2011 11:24:56 +0000 (UTC)
commit 13b95b3648c862aeeae4824708dfb59075167f7d
Author: Mario Sanchez Prada <msanchez igalia com>
Date: Fri May 27 13:24:27 2011 +0200
Use GTK_API_VERSION_3 and avoid defining unused variables (license)
src/frogr-about-dialog.c | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/src/frogr-about-dialog.c b/src/frogr-about-dialog.c
index 0529e32..07b1856 100644
--- a/src/frogr-about-dialog.c
+++ b/src/frogr-about-dialog.c
@@ -45,6 +45,8 @@ static const gchar *artists[] = {
static const gchar *appdescr = N_("A Flickr remote organizer for GNOME\n");
static const gchar *copyright = "(c) 2009-2011 Mario Sanchez Prada";
static const gchar *website = "http://live.gnome.org/Frogr";
+
+#ifndef GTK_API_VERSION_3
static const gchar *license =
"frogr is free software: you can redistribute\n"
"it and/or modify it under the terms of the GNU\n"
@@ -63,6 +65,7 @@ static const gchar *license =
"This program uses flickr API through the flicksoup\n"
"library (which comes bundled-in with frogr), but\n"
"it's neither approved nor certified by flickr.";
+#endif
#if !GTK_CHECK_VERSION (2,23,0)
static void
@@ -104,10 +107,10 @@ frogr_about_dialog_show (GtkWindow *parent)
"artists", artists,
"comments", _(appdescr),
"copyright", copyright,
-#if !GTK_CHECK_VERSION (3,0,0)
- "license", license,
-#else
+#ifdef GTK_API_VERSION_3
"license-type", GTK_LICENSE_GPL_3_0,
+#else
+ "license", license,
#endif
"version", version,
"website", website,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]