diff options
author | Petr Mladek <pmladek@suse.cz> | 2011-10-26 17:57:56 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2011-10-26 17:57:56 +0200 |
commit | fe87d9b8633f00c18ae770782694cf71db10bbfc (patch) | |
tree | d8bcaf531d1cdd0d8f471d72e9ed78464efc5aaf /vcl | |
parent | 10bce0fbf39b80d0859119b005f62accefe7b35b (diff) |
gdk_screen_get_monitor_plug_name returns "gchar *"
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk/app/gtksys.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk/app/gtksys.cxx b/vcl/unx/gtk/app/gtksys.cxx index 4134b5d229b7..0d1299a452e2 100644 --- a/vcl/unx/gtk/app/gtksys.cxx +++ b/vcl/unx/gtk/app/gtksys.cxx @@ -190,7 +190,7 @@ rtl::OUString GtkSalSystem::GetScreenName(unsigned int nScreen) #if GTK_CHECK_VERSION(3,0,0) || GTK_CHECK_VERSION(2,14,0) pStr = gdk_screen_get_monitor_plug_name (pScreen, nMonitor); #else - static gchar (*get_fn) (GdkScreen *, int) = NULL; + static gchar * (*get_fn) (GdkScreen *, int) = NULL; GModule *module = g_module_open (NULL, (GModuleFlags) 0); if (!g_module_symbol (module, "gdk_screen_get_monitor_plug_name", |