Browse Source

Correcting for whitespace PR issues

JimMarlowe 9 years ago
parent
commit
f9db1e6d8c

+ 2 - 2
Source/AtomicWebView/WebClient.cpp

@@ -370,8 +370,8 @@ public:
                 windowInfo.SetAsWindowless(info.info.win.window, /*transparent*/ true);
 #endif
 #ifdef ATOMIC_PLATFORM_LINUX
-				if ( info.subsystem == SDL_SYSWM_X11 )
-				  windowInfo.SetAsWindowless(info.info.x11.window, true);
+                if ( info.subsystem == SDL_SYSWM_X11 )
+                    windowInfo.SetAsWindowless(info.info.x11.window, true);
 #endif
             }
 

+ 4 - 4
Source/AtomicWebView/WebKeyboardLinux.cpp

@@ -70,10 +70,10 @@ bool ConvertTextInputEvent(StringHash eventType, VariantMap& eventData, CefKeyEv
  
     if ( text.Length() > 0)
     {
-		keyEvent.character = (char16)text[0];
-		keyEvent.type = KEYEVENT_CHAR;
-		return true; 
-	}
+        keyEvent.character = (char16)text[0];
+        keyEvent.type = KEYEVENT_CHAR;
+        return true; 
+    }
     return false;
 }
 

+ 9 - 9
Source/ToolCore/Build/BuildAndroid.cpp

@@ -266,17 +266,17 @@ void BuildAndroid::RunAntDebug()
     String antCommand = tprefs->GetAntPath();
     if ( antCommand.Empty() ) // user didnt fill it out, use installed one
     {
- 		antCommand = "/usr/bin/ant"; // system default if installed
-	}
-	else
-	{
-		antCommand.Append("/ant"); 
-	}
- 	FileSystem* fileSystem = GetSubsystem<FileSystem>();
+        antCommand = "/usr/bin/ant"; // system default if installed
+    }
+    else
+    {
+        antCommand.Append("/ant"); 
+    }
+    FileSystem* fileSystem = GetSubsystem<FileSystem>();
     if ( !fileSystem->FileExists ( antCommand) ) 
     {
-		FailBuild("BuildFailed ant program not installed");
-	}	
+        FailBuild("BuildFailed ant program not installed");
+    }
     Vector<String> args;
     args.Push("debug");
 #endif