Debugger/DebugUI.py

changeset 15
f6ccc31d6e72
parent 13
1af94a91f439
child 55
b5c84934de9c
--- a/Debugger/DebugUI.py	Sat Jan 02 16:15:57 2010 +0000
+++ b/Debugger/DebugUI.py	Sat Jan 02 17:09:08 2010 +0000
@@ -26,7 +26,7 @@
 
 from E4Gui.E4Action import E4Action, createActionGroup
 
-from eric4config import getConfig
+from eric5config import getConfig
 
 class DebugUI(QObject):
     """
@@ -1417,7 +1417,7 @@
             if not doNotStart:
                 if runProject and self.project.getProjectType() == "E4Plugin":
                     argv.insert(0, "--plugin=%s " % fn)
-                    fn = os.path.join(getConfig('ericDir'), "eric4.py")
+                    fn = os.path.join(getConfig('ericDir'), "eric5.py")
                 
                 # Ask the client to open the new program.
                 self.debugServer.remoteCoverage(fn, argv, wd, env, 
@@ -1521,7 +1521,7 @@
             if not doNotStart:
                 if runProject and self.project.getProjectType() == "E4Plugin":
                     argv.insert(0, "--plugin=%s " % fn)
-                    fn = os.path.join(getConfig('ericDir'), "eric4.py")
+                    fn = os.path.join(getConfig('ericDir'), "eric5.py")
                 
                 # Ask the client to open the new program.
                 self.debugServer.remoteProfile(fn, argv, wd, env,
@@ -1621,7 +1621,7 @@
             if not doNotStart:
                 if runProject and self.project.getProjectType() == "E4Plugin":
                     argv.insert(0, "--plugin=%s " % fn)
-                    fn = os.path.join(getConfig('ericDir'), "eric4.py")
+                    fn = os.path.join(getConfig('ericDir'), "eric5.py")
                 
                 # Ask the client to open the new program.
                 self.debugServer.remoteRun(fn, argv, wd, env,
@@ -1735,7 +1735,7 @@
             if not doNotStart:
                 if debugProject and self.project.getProjectType() == "E4Plugin":
                     argv.insert(0, "--plugin=%s " % fn)
-                    fn = os.path.join(getConfig('ericDir'), "eric4.py")
+                    fn = os.path.join(getConfig('ericDir'), "eric5.py")
                     tracePython = True # override flag because it must be true
                 
                 # Ask the client to open the new program.
@@ -1786,7 +1786,7 @@
         if not doNotStart:
             if forProject and self.project.getProjectType() == "E4Plugin":
                 argv.insert(0, "--plugin=%s " % fn)
-                fn = os.path.join(getConfig('ericDir'), "eric4.py")
+                fn = os.path.join(getConfig('ericDir'), "eric5.py")
             
             if self.lastStartAction in [1, 2]:
                 # Ask the client to debug the new program.
@@ -1978,4 +1978,4 @@
         
         @return list of all actions (list of E4Action)
         """
-        return self.actions[:]
+        return self.actions[:]
\ No newline at end of file

eric ide

mercurial