summaryrefslogtreecommitdiff
path: root/include/svtools/svlbitm.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svtools/svlbitm.hxx')
-rw-r--r--include/svtools/svlbitm.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/svlbitm.hxx b/include/svtools/svlbitm.hxx
index 8e9f6321a78b..a5e2ee29d855 100644
--- a/include/svtools/svlbitm.hxx
+++ b/include/svtools/svlbitm.hxx
@@ -59,7 +59,7 @@ struct SvLBoxButtonData_Impl;
class SVT_DLLPUBLIC SvLBoxButtonData
{
private:
- Link aLink;
+ Link<> aLink;
long nWidth;
long nHeight;
SvLBoxButtonData_Impl* pImpl;
@@ -80,8 +80,8 @@ public:
static SvBmp GetIndex( SvItemStateFlags nItemState );
long Width();
long Height();
- void SetLink( const Link& rLink) { aLink=rLink; }
- const Link& GetLink() const { return aLink; }
+ void SetLink( const Link<>& rLink) { aLink=rLink; }
+ const Link<>& GetLink() const { return aLink; }
bool IsRadio();
// as buttons are not derived from LinkHdl
void CallLink();