[Libreoffice-commits] core.git: vcl/unx

Tomaž Vajngerl quikee at gmail.com
Sat Oct 26 10:05:21 PDT 2013


 vcl/unx/gtk/window/gtksalframe.cxx |   15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 2e99447fc07df98ebbc343ef79852b7eaf7b7757
Author: Tomaž Vajngerl <quikee at gmail.com>
Date:   Sat Oct 26 19:01:41 2013 +0200

    fix warnings in gtksalframe
    
    g_simple_action_group_add_entries was deprecated in GLib 2.38
    
    Change-Id: I727e8aeeecd66b8f071d43ff56d9dc94cda1b9e0

diff --git a/vcl/unx/gtk/window/gtksalframe.cxx b/vcl/unx/gtk/window/gtksalframe.cxx
index a3e3b91..58d402c 100644
--- a/vcl/unx/gtk/window/gtksalframe.cxx
+++ b/vcl/unx/gtk/window/gtksalframe.cxx
@@ -394,7 +394,7 @@ void GtkSalFrame::doKeyCallback( guint state,
 {
     SalKeyEvent aEvent;
 
-    aEvent.mnTime			= time;
+    aEvent.mnTime           = time;
     aEvent.mnCharCode       = aOrigCode;
     aEvent.mnRepeat         = 0;
 
@@ -722,7 +722,11 @@ gboolean ensure_dbus_setup( gpointer data )
             g_object_unref(thirdsubmenu);
 
             GSimpleActionGroup *group = g_simple_action_group_new ();
+#if GLIB_CHECK_VERSION(2,38,0) // g_simple_action_group_add_entries is deprecated since 2.38
+            g_action_map_add_action_entries (G_ACTION_MAP (group), app_entries, G_N_ELEMENTS (app_entries), NULL);
+#else
             g_simple_action_group_add_entries (group, app_entries, G_N_ELEMENTS (app_entries), NULL);
+#endif
             GActionGroup* pAppActionGroup = G_ACTION_GROUP(group);
 
             pSalFrame->m_nAppActionGroupExportId = g_dbus_connection_export_action_group( pSessionBus, "/org/libreoffice", pAppActionGroup, NULL);
@@ -1021,9 +1025,9 @@ void GtkSalFrame::InitCommon()
 #if !GTK_CHECK_VERSION(3,0,0)
     GtkSalDisplay* pDisp = GetGtkSalData()->GetGtkDisplay();
     m_aSystemData.pDisplay      = pDisp->GetDisplay();
-    m_aSystemData.pVisual		= pDisp->GetVisual( m_nXScreen ).GetVisual();
-    m_aSystemData.nDepth		= pDisp->GetVisual( m_nXScreen ).GetDepth();
-    m_aSystemData.aColormap		= pDisp->GetColormap( m_nXScreen ).GetXColormap();
+    m_aSystemData.pVisual       = pDisp->GetVisual( m_nXScreen ).GetVisual();
+    m_aSystemData.nDepth        = pDisp->GetVisual( m_nXScreen ).GetDepth();
+    m_aSystemData.aColormap     = pDisp->GetColormap( m_nXScreen ).GetXColormap();
     m_aSystemData.aWindow       = widget_get_xid(m_pWindow);
 #else
     static int nWindow = 0;
@@ -3575,7 +3579,8 @@ gboolean GtkSalFrame::signalMap( GtkWidget *pWidget, GdkEvent*, gpointer frame )
                 {
                     sFinalProgram += "--display " + sDisplay;
                 }
-                system(sFinalProgram.getStr());
+                int returnValue = system(sFinalProgram.getStr());
+                (void)returnValue;
             }
         }
     }


More information about the Libreoffice-commits mailing list