diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-07 12:31:09 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-07 12:38:27 +0200 |
commit | 8f6c55a839d790c9268c1d0686f3eaf2f23484cb (patch) | |
tree | 1b10a5e10b66c3c8dcf0a8bf295167563e0f6828 /include/svx | |
parent | e0f6559776b515a7d51331c7e848ac785e751c6a (diff) |
Replace SV_DECL/IMPL_REF macros with SvRef template
Change-Id: I0ef2e67f6d61e0ce118c0f5e926b8194ef9d8058
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/gridctrl.hxx | 6 | ||||
-rw-r--r-- | include/svx/svdmodel.hxx | 1 |
2 files changed, 1 insertions, 6 deletions
diff --git a/include/svx/gridctrl.hxx b/include/svx/gridctrl.hxx index d42cfa3fdf95..e222f0475c82 100644 --- a/include/svx/gridctrl.hxx +++ b/include/svx/gridctrl.hxx @@ -90,7 +90,7 @@ public: bool IsModified() const { return m_eStatus == GRS_MODIFIED; } }; -SV_DECL_REF(DbGridRow) +typedef tools::SvRef<DbGridRow> DbGridRowRef; // DbGridControl @@ -597,10 +597,6 @@ private: using BrowseBox::InsertHandleColumn; }; - -SV_IMPL_REF(DbGridRow); - - #endif // INCLUDED_SVX_GRIDCTRL_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/svx/svdmodel.hxx b/include/svx/svdmodel.hxx index 049e2f099f3f..3c1e6e598991 100644 --- a/include/svx/svdmodel.hxx +++ b/include/svx/svdmodel.hxx @@ -73,7 +73,6 @@ class SvxForbiddenCharactersTable; class SvNumberFormatter; class SotStorage; class SdrOutlinerCache; -class SotStorageRef; class SdrUndoFactory; class ImageMap; namespace comphelper |