fixed bug #55254 - Incorrect lines number shown BLD200502241900
authorrypacek@netbeans.org
Thu, 24 Feb 2005 13:20:23 +0000
changeset 58578dbe716c5764
parent 5856 1e35673d0ea3
child 5858 98205a7ec8db
fixed bug #55254 - Incorrect lines number shown
- conversion between zero-based and one-based numbering
suggestions_framework/src/org/netbeans/modules/tasklist/suggestions/SuggestionImpl.java
     1.1 --- a/suggestions_framework/src/org/netbeans/modules/tasklist/suggestions/SuggestionImpl.java	Thu Feb 24 12:13:31 2005 +0000
     1.2 +++ b/suggestions_framework/src/org/netbeans/modules/tasklist/suggestions/SuggestionImpl.java	Thu Feb 24 13:20:23 2005 +0000
     1.3 @@ -108,7 +108,7 @@
     1.4        }
     1.5  
     1.6        public String toString() {
     1.7 -	return filename + ":" + line;
     1.8 +	return filename + ":" + (line+1);
     1.9        }
    1.10      }
    1.11