Kaydet (Commit) 086e03af authored tarafından Chris Sherlock's avatar Chris Sherlock

vcl: cleanup include/vcl/svdata.hxx

Change-Id: I0b4ed6ac4518dae2a4abda6f4d0cef78343144b9
üst 791a8780
...@@ -379,8 +379,10 @@ struct ImplDelData ...@@ -379,8 +379,10 @@ struct ImplDelData
const vcl::Window* mpWindow; const vcl::Window* mpWindow;
bool mbDel; bool mbDel;
ImplDelData( const vcl::Window* pWindow = NULL ) ImplDelData( const vcl::Window* pWindow = NULL ) :
: mpNext( NULL ), mpWindow( NULL ), mbDel( false ) mpNext( NULL ),
mpWindow( NULL ),
mbDel( false )
{ if( pWindow ) AttachToWindow( pWindow ); } { if( pWindow ) AttachToWindow( pWindow ); }
virtual ~ImplDelData(); virtual ~ImplDelData();
...@@ -393,6 +395,7 @@ struct ImplDelData ...@@ -393,6 +395,7 @@ struct ImplDelData
private: private:
void AttachToWindow( const vcl::Window* ); void AttachToWindow( const vcl::Window* );
}; };
struct ImplFocusDelData : public ImplDelData struct ImplFocusDelData : public ImplDelData
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment