SF.net SVN: geany: [1177] trunk/src/notebook.c

ntrel at users.sourceforge.net ntrel at xxxxx
Fri Jan 12 16:56:23 UTC 2007


Revision: 1177
          http://svn.sourceforge.net/geany/?rev=1177&view=rev
Author:   ntrel
Date:     2007-01-12 08:56:23 -0800 (Fri, 12 Jan 2007)

Log Message:
-----------
Fix some indent formatting.

Modified Paths:
--------------
    trunk/src/notebook.c

Modified: trunk/src/notebook.c
===================================================================
--- trunk/src/notebook.c	2007-01-12 16:55:05 UTC (rev 1176)
+++ trunk/src/notebook.c	2007-01-12 16:56:23 UTC (rev 1177)
@@ -198,15 +198,15 @@
 		// prevent oscillation between non-homogeneous sized tabs
 		switch(gtk_notebook_get_tab_pos(notebook))
 		{
-		case GTK_POS_LEFT:
-		case GTK_POS_RIGHT:
-		ok = ((ndest > ncurr) && (y > oldy)) || ((ndest < ncurr) && (y < oldy));
-		break;
+			case GTK_POS_LEFT:
+			case GTK_POS_RIGHT:
+			ok = ((ndest > ncurr) && (y > oldy)) || ((ndest < ncurr) && (y < oldy));
+			break;
 
-		case GTK_POS_TOP:
-		case GTK_POS_BOTTOM:
-		ok = ((ndest > ncurr) && (x > oldx)) || ((ndest < ncurr) && (x < oldx));
-		break;
+			case GTK_POS_TOP:
+			case GTK_POS_BOTTOM:
+			ok = ((ndest > ncurr) && (x > oldx)) || ((ndest < ncurr) && (x < oldx));
+			break;
 		}
 
 		if (ok)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list