[Goodies-commits] r7551 - in gigolo/trunk: . src

Enrico Troeger enrico at xfce.org
Sat Jun 13 11:39:52 CEST 2009


Author: enrico
Date: 2009-06-13 09:39:52 +0000 (Sat, 13 Jun 2009)
New Revision: 7551

Modified:
   gigolo/trunk/ChangeLog
   gigolo/trunk/src/backendgvfs.c
   gigolo/trunk/src/common.c
   gigolo/trunk/src/main.c
Log:
Move definition of a variable to fix non-debug build of the test suite.

Modified: gigolo/trunk/ChangeLog
===================================================================
--- gigolo/trunk/ChangeLog	2009-06-13 07:46:50 UTC (rev 7550)
+++ gigolo/trunk/ChangeLog	2009-06-13 09:39:52 UTC (rev 7551)
@@ -1,5 +1,12 @@
 2009-06-06  Enrico Tröger  <enrico(at)xfce(dot)org>
 
+ * src/main.c, src/common:
+   Move definition of a variable to fix non-debug build of the
+   test suite.
+
+
+2009-06-13  Enrico Tröger  <enrico(at)xfce(dot)org>
+
  * src/preferences.c:
    Adjust tooltip for the 'Show side panel' option.
 

Modified: gigolo/trunk/src/backendgvfs.c
===================================================================
--- gigolo/trunk/src/backendgvfs.c	2009-06-13 07:46:50 UTC (rev 7550)
+++ gigolo/trunk/src/backendgvfs.c	2009-06-13 09:39:52 UTC (rev 7551)
@@ -313,7 +313,7 @@
 
 
 static void gigolo_backend_gvfs_set_property(GObject *object, guint prop_id,
-										   const GValue *value, GParamSpec *pspec)
+											 const GValue *value, GParamSpec *pspec)
 {
 	switch (prop_id)
 	{

Modified: gigolo/trunk/src/common.c
===================================================================
--- gigolo/trunk/src/common.c	2009-06-13 07:46:50 UTC (rev 7550)
+++ gigolo/trunk/src/common.c	2009-06-13 09:39:52 UTC (rev 7551)
@@ -26,7 +26,7 @@
 
 #include "common.h"
 
-extern gboolean verbose_mode;
+gboolean verbose_mode;
 
 const gchar *gigolo_get_application_icon_name(void)
 {

Modified: gigolo/trunk/src/main.c
===================================================================
--- gigolo/trunk/src/main.c	2009-06-13 07:46:50 UTC (rev 7550)
+++ gigolo/trunk/src/main.c	2009-06-13 09:39:52 UTC (rev 7551)
@@ -39,7 +39,7 @@
 static gboolean show_version = FALSE;
 static gboolean list_schemes = FALSE;
 static gboolean new_instance = FALSE;
-gboolean verbose_mode = FALSE;
+extern gboolean verbose_mode;
 
 static GOptionEntry cli_options[] =
 {




More information about the Goodies-commits mailing list