summaryrefslogtreecommitdiffstats
path: root/frontend/frontend_gtk.py
diff options
context:
space:
mode:
authorJoel Andres Granados <jgranado@redhat.com>2008-05-12 11:51:11 +0200
committerJoel Andres Granados <jgranado@redhat.com>2008-05-12 11:51:11 +0200
commit59389f43868acb4511263b221190f22087252863 (patch)
treef47ed556feacaf28ce2ffe625814c98b2e2905cb /frontend/frontend_gtk.py
parent27cb269e0f7d360de373785789c7eea55e828ad1 (diff)
downloadfirstaidkit-59389f43868acb4511263b221190f22087252863.tar.gz
firstaidkit-59389f43868acb4511263b221190f22087252863.tar.xz
firstaidkit-59389f43868acb4511263b221190f22087252863.zip
Change the detected name to checked.
The new variable name better expresses the objective of the issue state. This will help avoid confusion for the plugin developer.
Diffstat (limited to 'frontend/frontend_gtk.py')
-rw-r--r--frontend/frontend_gtk.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/frontend_gtk.py b/frontend/frontend_gtk.py
index df4f2a0..13925ea 100644
--- a/frontend/frontend_gtk.py
+++ b/frontend/frontend_gtk.py
@@ -463,9 +463,9 @@ class MainWindow(object):
def issue_state(self):
if self._fixed:
return ("Fixed", 3)
- elif self._happened and self._detected:
+ elif self._happened and self._checked:
return ("Detected", 2)
- elif self._detected:
+ elif self._checked:
return ("No problem", 1)
else:
return ("Waiting for check", 0)