summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/sddlgfact.hxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-03-12 10:37:19 +0000
committerRüdiger Timm <rt@openoffice.org>2008-03-12 10:37:19 +0000
commit521f0948e6c58fa634546f39b8a77fab3794be22 (patch)
tree30fb5d6fd56c1744952360458ea1dc290db90889 /sd/source/ui/dlg/sddlgfact.hxx
parent10160df32824bd63e8f1dc648cf0d610ed863141 (diff)
INTEGRATION: CWS impresstables2 (1.7.44); FILE MERGED
2008/01/29 18:09:11 cl 1.7.44.4: #i68103# added SfxUnoStyleSheet to fix a dynamic_cast issue under linux 2007/10/11 15:41:25 cl 1.7.44.3: #i68103# changing execute return type 2007/08/01 15:13:10 cl 1.7.44.2: RESYNC: (1.7-1.8); FILE MERGED 2007/07/26 18:08:04 cl 1.7.44.1: #i68103# added cell styles
Diffstat (limited to 'sd/source/ui/dlg/sddlgfact.hxx')
-rw-r--r--sd/source/ui/dlg/sddlgfact.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/dlg/sddlgfact.hxx b/sd/source/ui/dlg/sddlgfact.hxx
index 18522afbf674..d451d35a9864 100644
--- a/sd/source/ui/dlg/sddlgfact.hxx
+++ b/sd/source/ui/dlg/sddlgfact.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sddlgfact.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: hr $ $Date: 2007-06-26 13:39:47 $
+ * last change: $Author: rt $ $Date: 2008-03-12 11:37:19 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -45,14 +45,14 @@ public: \
: pDlg(p) \
{} \
virtual ~Class(); \
- virtual USHORT Execute() ;
+ virtual short Execute() ;
#define IMPL_ABSTDLG_BASE(Class) \
Class::~Class() \
{ \
delete pDlg; \
} \
-USHORT Class::Execute() \
+short Class::Execute() \
{ \
return pDlg->Execute(); \
}