summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-10-05 20:58:29 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-10-06 09:06:20 +0100
commita8c7e07d45f7dce54242e7b79910e1851fc47aef (patch)
tree278fd3a4aac5ef51dba46bd41fc7fccfa3c55c03
parent41bbe4c53bc58f6156601b4e358b1546779277c0 (diff)
outdated comment
Change-Id: If853eb56aca74764ff1250f1d121dc2f2302202d
-rw-r--r--include/vcl/abstdlg.hxx6
-rw-r--r--include/vcl/fixedhyper.hxx2
2 files changed, 3 insertions, 5 deletions
diff --git a/include/vcl/abstdlg.hxx b/include/vcl/abstdlg.hxx
index bbbe51ac40b3..1db97cc290f5 100644
--- a/include/vcl/abstdlg.hxx
+++ b/include/vcl/abstdlg.hxx
@@ -25,7 +25,6 @@
#include <vector>
namespace vcl { class Window; }
-class ResId;
class Dialog;
class Bitmap;
@@ -80,9 +79,8 @@ class VCL_DLLPUBLIC VclAbstractDialogFactory
public:
virtual ~VclAbstractDialogFactory(); // needed for export of vtable
static VclAbstractDialogFactory* Create();
- // nDialogId was previously a ResId without ResMgr; the ResourceId is now
- // an implementation detail of the factory
- virtual VclAbstractDialog* CreateVclDialog( vcl::Window* pParent, sal_uInt32 nResId ) = 0;
+ // The Id is an implementation detail of the factory
+ virtual VclAbstractDialog* CreateVclDialog(vcl::Window* pParent, sal_uInt32 nId) = 0;
// creates instance of PasswordToOpenModifyDialog from cui
virtual AbstractPasswordToOpenModifyDialog* CreatePasswordToOpenModifyDialog( vcl::Window * pParent, sal_uInt16 nMaxPasswdLen, bool bIsPasswordToModify ) = 0;
diff --git a/include/vcl/fixedhyper.hxx b/include/vcl/fixedhyper.hxx
index b266f74ce1dd..d98343ca7b97 100644
--- a/include/vcl/fixedhyper.hxx
+++ b/include/vcl/fixedhyper.hxx
@@ -62,7 +62,7 @@ class VCL_DLLPUBLIC FixedHyperlink : public FixedText
public:
/** ctors
- With ResId or WinBits.
+ With WinBits.
*/
FixedHyperlink( vcl::Window* pParent, WinBits nWinStyle = 0 );