diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-16 18:33:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-16 18:33:04 +0100 |
commit | b0da096c610b4392277a3b7fe3c7c29d2c8c3fcf (patch) | |
tree | bf1ce0d7cf3109482a80633feb708452bf1efdd3 /vcl/source/control | |
parent | e09e956a0c8eaa00e73474bccacee7aa656f2f67 (diff) |
RSC_MULTILINEEDIT no longer used
Change-Id: If56233b5226cec9516d5e2f8992e1b0beae733bf
Diffstat (limited to 'vcl/source/control')
-rw-r--r-- | vcl/source/control/edit.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx index e03f0e5391db..bf6b283e43ee 100644 --- a/vcl/source/control/edit.cxx +++ b/vcl/source/control/edit.cxx @@ -177,9 +177,7 @@ Edit::Edit( Window* pParent, const ResId& rResId ) : ImplInit( pParent, nStyle ); ImplLoadRes( rResId ); - // Derived MultiLineEdit takes care to call Show only after MultiLineEdit - // ctor has already started: - if ( !(nStyle & WB_HIDE) && rResId.GetRT() != RSC_MULTILINEEDIT ) + if ( !(nStyle & WB_HIDE) ) Show(); } |