AbstractSourceCodeManager.st
changeset 1447 2ac1cf09722b
parent 1432 17790e20ad14
child 1451 561003a458bb
--- a/AbstractSourceCodeManager.st	Tue Jan 10 12:17:55 2006 +0100
+++ b/AbstractSourceCodeManager.st	Tue Jan 17 13:17:28 2006 +0100
@@ -1885,7 +1885,7 @@
      revInfo cvsRoot prevCvsRoot|
 
     goalString := ''.
-    (timeGoal notNil and:[timeGoal notEmpty]) ifTrue:[
+    (timeGoal notEmptyOrNil) ifTrue:[
         goalString := ' since ' , timeGoal.
     ].
     userFilter notNil ifTrue:[
@@ -2112,7 +2112,7 @@
 !AbstractSourceCodeManager class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/AbstractSourceCodeManager.st,v 1.169 2005-11-14 14:34:52 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/AbstractSourceCodeManager.st,v 1.170 2006-01-17 12:17:28 cg Exp $'
 ! !
 
 AbstractSourceCodeManager initialize!