diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-24 17:22:39 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-25 11:41:23 +0100 |
commit | c1448b4286ae9ecb192497e2a49ec66bfc49f3b6 (patch) | |
tree | 4380b48efedfdba216cbce818cfce1c4e0a842eb /vcl | |
parent | 141a7aa1b3faafa7bf5c45b73f1604b16809a1a3 (diff) |
no raw Window is loaded from .src anymore
Change-Id: I81e4bb23f4a819f59115cdf58afe19097b4ce68f
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/window.cxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index 8db7645c51da..fdd43b81f718 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -98,18 +98,6 @@ Window::Window( vcl::Window* pParent, WinBits nStyle ) : ImplInit( pParent, nStyle, nullptr ); } -Window::Window( vcl::Window* pParent, const ResId& rResId ) : - Window(WINDOW_WINDOW) -{ - rResId.SetRT( RSC_WINDOW ); - WinBits nStyle = ImplInitRes( rResId ); - ImplInit( pParent, nStyle, nullptr ); - ImplLoadRes(); - - if ( !(nStyle & WB_HIDE) ) - Show(); -} - #if OSL_DEBUG_LEVEL > 0 namespace { |