diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-28 18:21:20 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-28 18:21:20 +0200 |
commit | 65a34bdc4dd2f5e736010e9f40cded6e022e75c0 (patch) | |
tree | ec6879cd9162de4220cf02ae7fffb378db49564f | |
parent | a4bbd95248159b7e2a2ec47cc28954763c8f81bd (diff) |
dbaccess: more GCC-4.7 fixes
Change-Id: Ia89a9984ce1d5230c1a57591b6bce87a5e22471a
-rw-r--r-- | dbaccess/source/ui/inc/TableGrantCtrl.hxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/indexfieldscontrol.hxx | 4 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx | 10 | ||||
-rw-r--r-- | dbaccess/source/ui/tabledesign/TEditControl.hxx | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/dbaccess/source/ui/inc/TableGrantCtrl.hxx b/dbaccess/source/ui/inc/TableGrantCtrl.hxx index 5f80e75fcbf3..ad965b7e3a11 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 3f262156d129..787f897dc9bf 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 8c30610be159..af514f5a1ead 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 03f9b4598c67..a91c88396737 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 |