SVN commit 931579 by kevinkinfoo: Deleting useless files M +2 -1 controller/SearchController.py M +3 -0 tests/model/BugTest.py M +2 -2 view/StatusBar.py --- branches/work/kbugbuster-isi/KBugBuster-v2/src/controller/SearchController.py #931578:931579 @@ -72,7 +72,8 @@ if len(bugListDB) != 0 : self.bugList[0] = Bug(bugListDB) else: - self.window.showMessage( "No bugs Found" ) + self.window.showMessage( "No bugs Found." ) + #print "Le server est" + str( dir() ) self.window.searchTree.setModel(self.bugList) self.window.loadSearch(0, server_id, 1) --- branches/work/kbugbuster-isi/KBugBuster-v2/src/tests/model/BugTest.py #931578:931579 @@ -92,6 +92,9 @@ mutant = Bug( self.attributes ) mutant.setAlias("I am a mutant, I might look different") + bug = Bug( self.attributes ) + clone = Bug( self.attributes ) + # Bug and clone should be similar self.assertFalse( bug != clone, --- branches/work/kbugbuster-isi/KBugBuster-v2/src/view/StatusBar.py #931578:931579 @@ -33,7 +33,7 @@ Error = 2 class StatusBar(QStatusBar): - """Custom status bar for the""" + """Applications custom status bar.""" def __init__(self, parent): QProgressBar.__init__(self, parent) @@ -51,7 +51,7 @@ self._progressBar.resize(80, parent.height()) # Define label for text messages - self._label = QLabel("Test message.") + self._label = QLabel() self._button = QPushButton("Close") self.insertPermanentWidget(0, self._label, 1)