浏览代码

Fixed spacing

Areloch 11 年之前
父节点
当前提交
2864edf291
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      Engine/source/windowManager/platformWindowMgr.h
  2. 2 2
      Engine/source/windowManager/win32/win32Window.cpp

+ 1 - 1
Engine/source/windowManager/platformWindowMgr.h

@@ -133,7 +133,7 @@ public:
    /// This method removes the curtain window.
    virtual void raiseCurtain()=0;
 
-	/// This method indicates to created windows to show as normal.
+   /// This method indicates to created windows to show as normal.
    virtual void setDisplayWindow(bool set)=0;
 
 private:

+ 2 - 2
Engine/source/windowManager/win32/win32Window.cpp

@@ -155,7 +155,7 @@ void Win32Window::setVideoMode( const GFXVideoMode &mode )
 		SetWindowPos( getHWND(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED);
 		
       if(mDisplayWindow)
-		   ShowWindow(getHWND(), SW_SHOWNORMAL);
+         ShowWindow(getHWND(), SW_SHOWNORMAL);
 
       // Clear the menu bar from the window for full screen
       HMENU menu = GetMenu(getHWND());
@@ -220,7 +220,7 @@ void Win32Window::setVideoMode( const GFXVideoMode &mode )
 		   SetWindowPos( getHWND(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED);
 
          if(mDisplayWindow)
-		      ShowWindow( getHWND(), SW_SHOWNORMAL);
+            ShowWindow( getHWND(), SW_SHOWNORMAL);
       }
 
       mFullscreen = false;