Debugger/WatchPointViewer.py

changeset 2400
c1726b754f96
parent 2302
f29e9405c851
child 2525
8b507a9a2d40
child 2953
703452a2876f
diff -r 671d0d55e5c8 -r c1726b754f96 Debugger/WatchPointViewer.py
--- a/Debugger/WatchPointViewer.py	Sun Feb 10 14:36:52 2013 +0100
+++ b/Debugger/WatchPointViewer.py	Sun Feb 10 14:48:24 2013 +0100
@@ -14,8 +14,6 @@
 from E5Gui.E5Application import e5App
 from E5Gui import E5MessageBox
 
-from .EditWatchpointDialog import EditWatchpointDialog
-
 import Utilities
 
 
@@ -242,6 +240,7 @@
         """
         Private slot to handle the add watch expression context menu entry.
         """
+        from .EditWatchpointDialog import EditWatchpointDialog
         dlg = EditWatchpointDialog(("", False, True, 0, ""), self)
         if dlg.exec_() == QDialog.Accepted:
             cond, temp, enabled, ignorecount, special = dlg.getData()
@@ -281,6 +280,7 @@
             
             cond, special, temp, enabled, count = wp[:5]
             
+            from .EditWatchpointDialog import EditWatchpointDialog
             dlg = EditWatchpointDialog(
                 (cond, temp, enabled, count, special), self)
             if dlg.exec_() == QDialog.Accepted:

eric ide

mercurial