diff options
author | Tor Lillqvist <tml@novell.com> | 2008-07-28 00:26:09 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2008-07-28 00:26:09 +0000 |
commit | 4437940fe1f0932d5ad3e5dd2677f4b3e8d4b52e (patch) | |
tree | 5321fd4ea33bfa1d9683a66d14b176c3c54b12ef /gio | |
parent | a3fa74853aa93af9e1754b61769e5ec76f0918bc (diff) |
Correct return type.
2008-07-28 Tor Lillqvist <tml@novell.com>
* gwin32appinfo.c (g_win32_app_info_get_icon): Correct return
type.
svn path=/trunk/; revision=7261
Diffstat (limited to 'gio')
-rw-r--r-- | gio/ChangeLog | 5 | ||||
-rw-r--r-- | gio/gwin32appinfo.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gio/ChangeLog b/gio/ChangeLog index b6fd1c2ab..fa6e848ee 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,8 @@ +2008-07-28 Tor Lillqvist <tml@novell.com> + + * gwin32appinfo.c (g_win32_app_info_get_icon): Correct return + type. + 2008-07-27 Tor Lillqvist <tml@novell.com> * Makefile.am (gio-2.0.lib): Pass appropriate -machine flag to lib.exe. diff --git a/gio/gwin32appinfo.c b/gio/gwin32appinfo.c index 693bcc213..cec2533bd 100644 --- a/gio/gwin32appinfo.c +++ b/gio/gwin32appinfo.c @@ -239,7 +239,7 @@ g_win32_app_info_get_executable (GAppInfo *appinfo) return info->executable; } -static const char * +static GIcon * g_win32_app_info_get_icon (GAppInfo *appinfo) { /* GWin32AppInfo *info = G_WIN32_APP_INFO (appinfo); */ |