diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-04-30 07:18:59 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-04-30 09:11:40 +0300 |
commit | 5a27f808beff001bc69755095e08e50900d7c863 (patch) | |
tree | 1df6fbc012958c178be6f4bd7e5e60e08e7ef189 /sd/source/ui/table | |
parent | c07a3b0396ab131bef7ef23305180c8f27bf5c9b (diff) |
Get rid of initial :: for the sdr namespace
Change-Id: Ibbeb069b6fcb2aa0581429ac5cb6db519548fd00
Diffstat (limited to 'sd/source/ui/table')
-rw-r--r-- | sd/source/ui/table/tablefunction.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/table/tablefunction.cxx b/sd/source/ui/table/tablefunction.cxx index 6a242eb98433..291cff7798f5 100644 --- a/sd/source/ui/table/tablefunction.cxx +++ b/sd/source/ui/table/tablefunction.cxx @@ -67,7 +67,7 @@ #include <boost/scoped_ptr.hpp> using namespace ::sd; -using namespace ::sdr::table; +using namespace sdr::table; using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; @@ -159,7 +159,7 @@ void DrawViewShell::FuTable(SfxRequest& rReq) aRect = Rectangle(aPos, aSize); } - ::sdr::table::SdrTableObj* pObj = new ::sdr::table::SdrTableObj( GetDoc(), aRect, nColumns, nRows ); + sdr::table::SdrTableObj* pObj = new sdr::table::SdrTableObj( GetDoc(), aRect, nColumns, nRows ); pObj->NbcSetStyleSheet( GetDoc()->GetDefaultStyleSheet(), true ); apply_table_style( pObj, GetDoc(), sTableStyle ); SdrPageView* pPV = mpView->GetSdrPageView(); @@ -256,7 +256,7 @@ void CreateTableFromRTF( SvStream& rStream, SdDrawDocument* pModel ) Size aSize( 200, 200 ); Point aPos; Rectangle aRect (aPos, aSize); - ::sdr::table::SdrTableObj* pObj = new ::sdr::table::SdrTableObj( pModel, aRect, 1, 1 ); + sdr::table::SdrTableObj* pObj = new sdr::table::SdrTableObj( pModel, aRect, 1, 1 ); pObj->NbcSetStyleSheet( pModel->GetDefaultStyleSheet(), true ); OUString sTableStyle; apply_table_style( pObj, pModel, sTableStyle ); |