diff options
author | Noel Grandin <noel@peralex.com> | 2012-08-06 09:51:54 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-08-08 13:53:04 +0300 |
commit | 3d8f844101bbd0a999227af70991128584b2fe23 (patch) | |
tree | 778e3823529290be1fc608b74dff64852b772f63 | |
parent | cb9d71e85df6a1838ca721534a0bf78b917306b2 (diff) |
Expand the only use of the SV_DECL_IMPL_REF_LIST macro
Change-Id: I697d53f44e8e79f7c5b21978101eef0cb6966475
-rw-r--r-- | cui/source/dialogs/linkdlg.cxx | 3 | ||||
-rw-r--r-- | tools/inc/tools/ref.hxx | 5 |
2 files changed, 2 insertions, 6 deletions
diff --git a/cui/source/dialogs/linkdlg.cxx b/cui/source/dialogs/linkdlg.cxx index dbd87dbf606a..c163c59de418 100644 --- a/cui/source/dialogs/linkdlg.cxx +++ b/cui/source/dialogs/linkdlg.cxx @@ -56,7 +56,8 @@ using namespace sfx2; -SV_DECL_IMPL_REF_LIST(SvBaseLink,SvBaseLink*) +SV_DECL_REF_LIST(SvBaseLink,SvBaseLink*) +SV_IMPL_REF_LIST(SvBaseLink,SvBaseLink*) // attention, this array is indexed directly (0, 1, ...) in the code static long nTabs[] = diff --git a/tools/inc/tools/ref.hxx b/tools/inc/tools/ref.hxx index 157cb4be57a9..558a66d7b97c 100644 --- a/tools/inc/tools/ref.hxx +++ b/tools/inc/tools/ref.hxx @@ -257,11 +257,6 @@ inline void CN##MemberList::Append( const CN##MemberList & rList )\ Append( rList.GetObject( i ) );\ } -/************************** S V _ D E C L _ R E F _ L I S T **************/ -#define SV_DECL_IMPL_REF_LIST(ClassName,EntryName) \ - SV_DECL_REF_LIST(ClassName,EntryName) \ - SV_IMPL_REF_LIST(ClassName,EntryName) - /************************** S v M e m b e r L i s t **********************/ #define PRV_SV_DECL_MEMBER_LIST(Class,EntryName) \ Class##MemberList() {} \ |