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
This commit is contained in:
Rüdiger Timm 2008-03-12 10:37:19 +00:00
parent 10160df328
commit 521f0948e6

View file

@ -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(); \
}