[Libreoffice-commits] core.git: dbaccess/source

Miklos Vajna vmiklos at collabora.co.uk
Tue Apr 28 09:21:49 PDT 2015


 dbaccess/source/ui/inc/TableGrantCtrl.hxx             |    2 +-
 dbaccess/source/ui/inc/indexfieldscontrol.hxx         |    4 ++--
 dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx |   10 +++++-----
 dbaccess/source/ui/tabledesign/TEditControl.hxx       |    2 +-
 4 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 65a34bdc4dd2f5e736010e9f40cded6e022e75c0
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Tue Apr 28 18:21:20 2015 +0200

    dbaccess: more GCC-4.7 fixes
    
    Change-Id: Ia89a9984ce1d5230c1a57591b6bce87a5e22471a

diff --git a/dbaccess/source/ui/inc/TableGrantCtrl.hxx b/dbaccess/source/ui/inc/TableGrantCtrl.hxx
index 5f80e75..ad965b7 100644
--- a/dbaccess/source/ui/inc/TableGrantCtrl.hxx
+++ b/dbaccess/source/ui/inc/TableGrantCtrl.hxx
@@ -53,7 +53,7 @@ class OTableGrantControl : public ::svt::EditBrowseBox
 
     mutable TTablePrivilegeMap  m_aPrivMap;
     OUString             m_sUserName;
-    VclPtr<::svt::CheckBoxControl>     m_pCheckCell;
+    VclPtr< ::svt::CheckBoxControl>     m_pCheckCell;
     VclPtr<Edit>                       m_pEdit;
     long                        m_nDataPos;
     ImplSVEvent *               m_nDeactivateEvent;
diff --git a/dbaccess/source/ui/inc/indexfieldscontrol.hxx b/dbaccess/source/ui/inc/indexfieldscontrol.hxx
index 3f26215..787f897 100644
--- a/dbaccess/source/ui/inc/indexfieldscontrol.hxx
+++ b/dbaccess/source/ui/inc/indexfieldscontrol.hxx
@@ -40,8 +40,8 @@ namespace dbaui
 
         Link                        m_aModifyHdl;
 
-        VclPtr<::svt::ListBoxControl>      m_pSortingCell;
-        VclPtr<::svt::ListBoxControl>      m_pFieldNameCell;
+        VclPtr< ::svt::ListBoxControl>      m_pSortingCell;
+        VclPtr< ::svt::ListBoxControl>      m_pFieldNameCell;
 
         OUString                    m_sAscendingText;
         OUString                    m_sDescendingText;
diff --git a/dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx b/dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx
index 8c30610..af514f5 100644
--- a/dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx
+++ b/dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx
@@ -57,11 +57,11 @@ namespace dbaui
         long                                m_nSeekRow;
         BrowserMode                         m_nMode;                    // remember the BrowseModes
         VclPtr<Edit>                               m_pTextCell;
-        VclPtr<::svt::CheckBoxControl>             m_pVisibleCell;
-        VclPtr<::svt::ComboBoxControl>             m_pFieldCell;
-        VclPtr<::svt::ListBoxControl>              m_pFunctionCell;
-        VclPtr<::svt::ListBoxControl>              m_pTableCell;
-        VclPtr<::svt::ListBoxControl>              m_pOrderCell;
+        VclPtr< ::svt::CheckBoxControl>             m_pVisibleCell;
+        VclPtr< ::svt::ComboBoxControl>             m_pFieldCell;
+        VclPtr< ::svt::ListBoxControl>              m_pFunctionCell;
+        VclPtr< ::svt::ListBoxControl>              m_pTableCell;
+        VclPtr< ::svt::ListBoxControl>              m_pOrderCell;
 
         OTableFieldDescRef                  m_pEmptyEntry;              // default entry in the list may reference more than once
 
diff --git a/dbaccess/source/ui/tabledesign/TEditControl.hxx b/dbaccess/source/ui/tabledesign/TEditControl.hxx
index 03f9b45..a91c883 100644
--- a/dbaccess/source/ui/tabledesign/TEditControl.hxx
+++ b/dbaccess/source/ui/tabledesign/TEditControl.hxx
@@ -47,7 +47,7 @@ namespace dbaui
         ::std::vector< ::boost::shared_ptr<OTableRow> >*    m_pRowList;
 
         VclPtr<OSQLNameEdit>               pNameCell;
-        VclPtr<::svt::ListBoxControl>      pTypeCell;
+        VclPtr< ::svt::ListBoxControl>      pTypeCell;
         VclPtr<Edit>                       pHelpTextCell;
         VclPtr<Edit>                       pDescrCell;
         VclPtr<OTableFieldDescWin>         pDescrWin;          // properties of one column


More information about the Libreoffice-commits mailing list