Author: mvw Date: 2014-09-17 12:38:12-0700 New Revision: 19953 Modified: trunk/src/argouml-app/src/org/argouml/cognitive/ui/ToDoPane.java
Log: Fix for issue 5745, based on the patch by Mohammadnaser Zandi. Modified: trunk/src/argouml-app/src/org/argouml/cognitive/ui/ToDoPane.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/cognitive/ui/ToDoPane.java?view=diff&pathrev=19953&r1=19952&r2=19953 ============================================================================== --- trunk/src/argouml-app/src/org/argouml/cognitive/ui/ToDoPane.java (original) +++ trunk/src/argouml-app/src/org/argouml/cognitive/ui/ToDoPane.java 2014-09-17 12:38:12-0700 @@ -1,6 +1,6 @@ /* $Id$ ***************************************************************************** - * Copyright (c) 2009-2012 Contributors - see below + * Copyright (c) 2009-2014 Contributors - see below * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -8,6 +8,8 @@ * * Contributors: * tfmorris + * Michiel van der Wulp + * Mohammadnaser Zandi ***************************************************************************** * * Some portions of this file was previously release using the BSD License: @@ -153,7 +155,7 @@ perspectives = new ArrayList<ToDoPerspective>(); - countLabel = new JLabel(formatCountLabel(999)); + countLabel = new JLabel(formatCountLabel(0)); countLabel.setBorder(BorderFactory.createEmptyBorder(0, 4, 0, 4)); JPanel toolbarPanel = new JPanel(new BorderLayout()); ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=3088650 To unsubscribe from this discussion, e-mail: [[email protected]].
