SF.net SVN: geany-plugins:[375] trunk/spellcheck

eht16 at users.sourceforge.net eht16 at xxxxx
Wed Jan 14 18:44:52 UTC 2009


Revision: 375
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=375&view=rev
Author:   eht16
Date:     2009-01-14 18:44:52 +0000 (Wed, 14 Jan 2009)

Log Message:
-----------
Fix deprecated usage of g_win32_get_package_installation_directory(), pass NULL as package name.

Modified Paths:
--------------
    trunk/spellcheck/ChangeLog
    trunk/spellcheck/src/scplugin.c

Modified: trunk/spellcheck/ChangeLog
===================================================================
--- trunk/spellcheck/ChangeLog	2009-01-09 16:29:01 UTC (rev 374)
+++ trunk/spellcheck/ChangeLog	2009-01-14 18:44:52 UTC (rev 375)
@@ -1,3 +1,11 @@
+2009-01-14  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
+
+ * src/scplugin.c:
+   Fix deprecated usage of g_win32_get_package_installation_directory(),
+   pass NULL as package name.
+
+
+
 2008-12-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * src/scplugin.c, src/gui.c, src/speller.c:

Modified: trunk/spellcheck/src/scplugin.c
===================================================================
--- trunk/spellcheck/src/scplugin.c	2009-01-09 16:29:01 UTC (rev 374)
+++ trunk/spellcheck/src/scplugin.c	2009-01-14 18:44:52 UTC (rev 375)
@@ -114,7 +114,7 @@
 #endif
 
 #ifdef G_OS_WIN32
-	gchar *install_dir = g_win32_get_package_installation_directory("geany", NULL);
+	gchar *install_dir = g_win32_get_package_installation_directory(NULL, NULL);
 	/* e.g. C:\Program Files\geany\lib\locale */
 	locale_dir = g_strconcat(install_dir, "\\share\\locale", NULL);
 	g_free(install_dir);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list