Revision
124
Author
leonpegg
Date
2007-01-12 11:17:13 -0800 (Fri, 12 Jan 2007)

Log Message

Renamed functions

Modified Paths

Diff

Modified: trunk/programs/ide/lib/ide_editor.class.php (123 => 124)


--- trunk/programs/ide/lib/ide_editor.class.php	2007-01-12 18:42:21 UTC (rev 123)
+++ trunk/programs/ide/lib/ide_editor.class.php	2007-01-12 19:17:13 UTC (rev 124)
@@ -19,7 +19,7 @@
 		$sourceView->set_data('filename',null);
 		$scroll = new GtkScrolledWindow();
 		$scroll->add($sourceView);
-		$id = $this->append_new_page($scroll, new GtkLabel('Untitled-'.$count));
+		$id = $this->append_page_new($scroll, new GtkLabel('Untitled-'.$count));
 		$this->show_all();
 		$this->set_current_page($id);
 	}
@@ -37,7 +37,7 @@
 			$sourceView->set_data('filename',$filename);
 			$scroll = new GtkScrolledWindow();
 			$scroll->add($sourceView);
-			$id = $this->append_new_page($scroll,new GtkLabel(basename($filename)));
+			$id = $this->append_page_new($scroll,new GtkLabel(basename($filename)));
 			$this->show_all();
 			$this->set_current_page($id);
 		}
@@ -91,6 +91,7 @@
 			$sourceView->redo();
 		}
 	}
+	
 }
 
 ?>
\ No newline at end of file

Modified: trunk/programs/ide/lib/ide_notebook.class.php (123 => 124)


--- trunk/programs/ide/lib/ide_notebook.class.php	2007-01-12 18:42:21 UTC (rev 123)
+++ trunk/programs/ide/lib/ide_notebook.class.php	2007-01-12 19:17:13 UTC (rev 124)
@@ -7,7 +7,7 @@
 		$this->set_scrollable(true);
 	}
 	
-	public function append_new_page($child, $label){
+	public function append_page_new($child, $label){
 		$tab = new GtkHBox();
 		$event_box = new GtkEventBox();
 		$event_box->add(