summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Burow <pb@openoffice.org>2001-05-11 06:50:37 +0000
committerPeter Burow <pb@openoffice.org>2001-05-11 06:50:37 +0000
commit40f2666fc05ab994178783ecc06ab4e164a812c0 (patch)
treefa1931982f7b739ec63165d966e753d80432951a
parent379793f58b03767e112a10fafe6f77c9adc04772 (diff)
fix: #85201# impl pointer instead of window pointer
-rw-r--r--svtools/inc/templdlg.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/svtools/inc/templdlg.hxx b/svtools/inc/templdlg.hxx
index 0c3caf20bd67..ac4e4d67cc99 100644
--- a/svtools/inc/templdlg.hxx
+++ b/svtools/inc/templdlg.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: templdlg.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: pb $ $Date: 2001-05-08 07:05:49 $
+ * last change: $Author: pb $ $Date: 2001-05-11 07:50:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -65,7 +65,7 @@
#include <vcl/dialog.hxx>
#include <vcl/fixed.hxx>
-class SvtTemplateWindow;
+struct SvtTmplDlg_Impl;
// class SvtDocumentTemplateDialog ---------------------------------------
@@ -79,10 +79,11 @@ private:
CancelButton aCancelBtn;
HelpButton aHelpBtn;
- SvtTemplateWindow* pWin;
+ SvtTmplDlg_Impl* pImpl;
DECL_LINK( SelectHdl_Impl, SvtTemplateWindow* );
DECL_LINK( DoubleClickHdl_Impl, SvtTemplateWindow* );
+ DECL_LINK( NewFolderHdl_Impl, SvtTemplateWindow* );
DECL_LINK( OKHdl_Impl, PushButton* );
public: