summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2007-04-26 08:26:07 +0000
committerRüdiger Timm <rt@openoffice.org>2007-04-26 08:26:07 +0000
commit46883a233ffcd72258026cde6dc2e835393ad572 (patch)
tree8210dec4b408cf67ae1e58eab6767baef5cafb8b /vcl
parentecbbea0428f8ba491a846ecab00a7f6b00baba17 (diff)
INTEGRATION: CWS residcleanup (1.2.28); FILE MERGED
2007/04/20 19:07:53 pl 1.2.28.1: fix cwsanalyze alerts
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/vcl/abstdlg.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/vcl/inc/vcl/abstdlg.hxx b/vcl/inc/vcl/abstdlg.hxx
index d7bd4aa1b98b..8c723d3bd5a7 100644
--- a/vcl/inc/vcl/abstdlg.hxx
+++ b/vcl/inc/vcl/abstdlg.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: abstdlg.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: vg $ $Date: 2007-04-11 17:46:45 $
+ * last change: $Author: rt $ $Date: 2007-04-26 09:26:07 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -80,7 +80,9 @@ class VCL_DLLPUBLIC VclAbstractDialogFactory
{
public:
static VclAbstractDialogFactory* Create();
- virtual VclAbstractDialog* CreateVclDialog( Window* pParent, const ResId& rResId ) = 0;
+ // nDialogId was previously a ResId without ResMgr; the ResourceId is now
+ // an implementation detail of the factory
+ virtual VclAbstractDialog* CreateVclDialog( Window* pParent, sal_uInt32 nResId ) = 0;
};
#endif