[Libreoffice-commits] core.git: vcl/inc

Chris Sherlock chris.sherlock79 at gmail.com
Tue Oct 14 04:52:06 PDT 2014


 vcl/inc/salframe.hxx |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 9fef481ffff0b49b04194c1e00b97ac340d14114
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
Date:   Tue Oct 14 22:50:56 2014 +1100

    vcl: cleanup salframe.hxx
    
    Change-Id: I0f331a2589d0fab5cf3843bf7531333e07067997

diff --git a/vcl/inc/salframe.hxx b/vcl/inc/salframe.hxx
index f594977..f427c24 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


More information about the Libreoffice-commits mailing list