diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-10-14 22:50:56 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-10-14 22:50:56 +1100 |
commit | 9fef481ffff0b49b04194c1e00b97ac340d14114 (patch) | |
tree | 6ee41b51eab944cb5de0f800ea66500d261fc4ca | |
parent | 474d267efdcbc8cd069989f8b111566b2343c39e (diff) |
vcl: cleanup salframe.hxx
Change-Id: I0f331a2589d0fab5cf3843bf7531333e07067997
-rw-r--r-- | vcl/inc/salframe.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/inc/salframe.hxx b/vcl/inc/salframe.hxx index f594977e11c2..f427c249b2ad 100644 --- a/vcl/inc/salframe.hxx +++ b/vcl/inc/salframe.hxx @@ -99,12 +99,12 @@ struct SystemParentData; class VCL_PLUGIN_PUBLIC SalFrame : public vcl::DeletionNotifier { // the VCL window corresponding to this frame - vcl::Window* m_pWindow; + vcl::Window* m_pWindow; SALFRAMEPROC m_pProc; public: - SalFrame() : m_pWindow( NULL ), m_pProc( NULL ) {} - virtual ~SalFrame(); + SalFrame() : m_pWindow( NULL ), m_pProc( NULL ) {} + virtual ~SalFrame(); SalFrameGeometry maGeometry; @@ -181,7 +181,7 @@ public: virtual void UpdateSettings( AllSettings& rSettings ) = 0; - virtual void Beep() = 0; + virtual void Beep() = 0; // returns system data (most prominent: window handle) virtual const SystemEnvData* @@ -233,7 +233,7 @@ public: { m_pWindow = pWindow; m_pProc = pProc; } // returns the instance set - vcl::Window* GetWindow() const { return m_pWindow; } + vcl::Window* GetWindow() const { return m_pWindow; } // Call the callback set; this sometimes necessary for implementation classes // that should not know more than necessary about the SalFrame implementation |