Revision
117
Author
leonpegg
Date
2007-01-12 03:49:59 -0800 (Fri, 12 Jan 2007)

Log Message

Fixed a few things

Modified Paths

Diff

Modified: trunk/lib/toolbar.class.php (116 => 117)


--- trunk/lib/toolbar.class.php	2007-01-12 11:21:56 UTC (rev 116)
+++ trunk/lib/toolbar.class.php	2007-01-12 11:49:59 UTC (rev 117)
@@ -150,6 +150,8 @@
 	{
 		$actions = CC_Actions::instance();
 
+		$active = false;
+		
 		$actions->add_actions('toolbar', array(
 			array(
 				'type' => 'toggle',

Modified: trunk/lib/window.class.php (116 => 117)


--- trunk/lib/window.class.php	2007-01-12 11:21:56 UTC (rev 116)
+++ trunk/lib/window.class.php	2007-01-12 11:49:59 UTC (rev 117)
@@ -49,7 +49,7 @@
 	 * when used with window manager, window is modal
 	 * @var $modal bool
 	 */
-	protected $modal = false;
+	protected $_modal = false;
 
 	/**
 	 * we keep track of our restore state event and remove the signal after
@@ -148,11 +148,11 @@
 	public function hide_all()
 	{
 		if (class_exists('CC_Wm') && CC_Wm::is_window($this->get_name()) &&
-			$this->modal)
+			$this->_modal)
 		{
 			parent::grab_remove();
 			$return = parent::hide_all();
-			$this->modal = false;
+			$this->_modal = false;
 			return $return;
 		}
 		else
@@ -174,7 +174,7 @@
 		{
 			$return = parent::show_all();
 			parent::grab_add();
-			$this->modal = true;
+			$this->_modal = true;
 			return $return;
 		}
 		else

Modified: trunk/programs/ide/docs/roadmap.txt (116 => 117)


--- trunk/programs/ide/docs/roadmap.txt	2007-01-12 11:21:56 UTC (rev 116)
+++ trunk/programs/ide/docs/roadmap.txt	2007-01-12 11:49:59 UTC (rev 117)
@@ -1,17 +1,20 @@
 Version 1
 
 Basic Source Editor
-  Open
+  New 100%
+  Open 100%
   Save
   Save As
   Save All
-  Copy
-  Cut
-  Paste
+  Copy 100%
+  Cut 100%
+  Paste 100%
+  Undo 100%
+  Redo 100%
   Search
   Search and Replace
-User Customizable Panes
-Settings Dialog
+User Customizable Panes 50%
+Settings Dialog 5%
 
 Version 1.1
 

Modified: trunk/programs/ide/lib/ide.class.php (116 => 117)


--- trunk/programs/ide/lib/ide.class.php	2007-01-12 11:21:56 UTC (rev 116)
+++ trunk/programs/ide/lib/ide.class.php	2007-01-12 11:49:59 UTC (rev 117)
@@ -26,7 +26,7 @@
 			'edit:redo',
 		),
 		'_View' => array(
-			//'toolbar:toggle',
+			'toolbar:toggle',
 			'view:fullscreen',
 			'view:top_pane',
 			'view:bottom_pane',

Modified: trunk/programs/ide/lib/ide_plugins.class.php (116 => 117)


--- trunk/programs/ide/lib/ide_plugins.class.php	2007-01-12 11:21:56 UTC (rev 116)
+++ trunk/programs/ide/lib/ide_plugins.class.php	2007-01-12 11:49:59 UTC (rev 117)
@@ -2,7 +2,7 @@
 
 class CC_Plugin {
 
-	
+	protected static $Plugin;
 
 }
 

Modified: trunk/run.php (116 => 117)


--- trunk/run.php	2007-01-12 11:21:56 UTC (rev 116)
+++ trunk/run.php	2007-01-12 11:49:59 UTC (rev 117)
@@ -27,6 +27,8 @@
  * @filesource
  */
 
+error_reporting(E_ALL);
+
 include (dirname(__FILE__) . '/lib/cc.class.php');
 
 // This particular script checks argv for a program name