summaryrefslogtreecommitdiff
path: root/include/svtools/filectrl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svtools/filectrl.hxx')
-rw-r--r--include/svtools/filectrl.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/filectrl.hxx b/include/svtools/filectrl.hxx
index 20506dbd7b51..bc8c96a58a1a 100644
--- a/include/svtools/filectrl.hxx
+++ b/include/svtools/filectrl.hxx
@@ -60,7 +60,7 @@ private:
OUString maButtonText;
bool mbOpenDlg;
- Link maDialogCreatedHdl;
+ Link<> maDialogCreatedHdl;
FileControlMode mnFlags;
FileControlMode_Internal mnInternalFlags;
@@ -100,8 +100,8 @@ public:
//use this to manipulate the dialog bevore executing it:
- void SetDialogCreatedHdl( const Link& rLink ) { maDialogCreatedHdl = rLink; }
- const Link& GetDialogCreatedHdl() const { return maDialogCreatedHdl; }
+ void SetDialogCreatedHdl( const Link<>& rLink ) { maDialogCreatedHdl = rLink; }
+ const Link<>& GetDialogCreatedHdl() const { return maDialogCreatedHdl; }
};
#endif