]> source.dussan.org Git - tigervnc.git/commitdiff
Fix bad indentation.
authorPierre Ossman <ossman@cendio.se>
Tue, 2 Oct 2012 14:30:22 +0000 (14:30 +0000)
committerPierre Ossman <ossman@cendio.se>
Tue, 2 Oct 2012 14:30:22 +0000 (14:30 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5000 3789f03b-4d11-0410-bbf8-ca57d06f2519

vncviewer/DesktopWindow.cxx

index f35457d7c1fd7d495c2ca5598a047bba2921b563..37b94104bd5d53cb5da4faf89c917799eddd6ab6 100644 (file)
@@ -93,15 +93,15 @@ DesktopWindow::DesktopWindow(int w, int h, const char *name,
       matched = sscanf(geometry.getValueStr(), "%dx%d+%d+%d", &geom_w, &geom_h, &geom_x, &geom_y);
       switch (matched) {
       case 4:
-       force_position(1);
-       /* fall through */
+        force_position(1);
+        /* fall through */
       case 2:
-       w = geom_w;
-       h = geom_h;
-       break;
+        w = geom_w;
+        h = geom_h;
+        break;
       default:
-       geom_x = geom_y = 0;
-       vlog.error("Invalid geometry specified!");      
+        geom_x = geom_y = 0;
+        vlog.error("Invalid geometry specified!");
       }
     }
   }