diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-08 09:54:16 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-09 10:06:11 +0200 |
commit | 5906a2a6380dc8f748a3c6f4fa0778e237abdff2 (patch) | |
tree | 0c3f41c74e68229b1633973d25e96a8896d6e450 /include/svx/svdobj.hxx | |
parent | 7a39ae04220d70caef0335ed47452b36cd2e98c7 (diff) |
convert Link<> to typed
Change-Id: I184d836e944d6dcfd17233a7a83680f1c1bff9bf
Diffstat (limited to 'include/svx/svdobj.hxx')
-rw-r--r-- | include/svx/svdobj.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svx/svdobj.hxx b/include/svx/svdobj.hxx index 830cfed95246..50bec71e3ecd 100644 --- a/include/svx/svdobj.hxx +++ b/include/svx/svdobj.hxx @@ -992,8 +992,8 @@ private: class SVX_DLLPUBLIC SdrObjFactory { public: - sal_uInt32 nInventor; - sal_uInt16 nIdentifier; + sal_uInt32 nInventor; + sal_uInt16 nIdentifier; // for MakeNewObj(): SdrPage* pPage; @@ -1014,10 +1014,10 @@ private: public: static SdrObject* MakeNewObject(sal_uInt32 nInvent, sal_uInt16 nIdent, SdrPage* pPage, SdrModel* pModel=NULL); static SdrObject* MakeNewObject( sal_uInt32 nInventor, sal_uInt16 nIdentifier, const Rectangle& rSnapRect, SdrPage* pPage ); - static void InsertMakeObjectHdl(const Link<>& rLink); - static void RemoveMakeObjectHdl(const Link<>& rLink); - static void InsertMakeUserDataHdl(const Link<>& rLink); - static void RemoveMakeUserDataHdl(const Link<>& rLink); + static void InsertMakeObjectHdl(const Link<SdrObjFactory*,void>& rLink); + static void RemoveMakeObjectHdl(const Link<SdrObjFactory*,void>& rLink); + static void InsertMakeUserDataHdl(const Link<SdrObjFactory*,void>& rLink); + static void RemoveMakeUserDataHdl(const Link<SdrObjFactory*,void>& rLink); }; typedef tools::WeakReference< SdrObject > SdrObjectWeakRef; |