--warnings

Small bugfix for column to jump to.
This commit is contained in:
Thorbjørn Lindeijer
2009-03-05 16:29:18 +01:00
parent ba1d742461
commit 166a4086c9
2 changed files with 3 additions and 3 deletions

View File

@@ -977,7 +977,7 @@ bool CPPEditor::openEditorAt(Symbol *s)
--column;
if (s->isGenerated())
unsigned column = 0;
column = 0;
return openCppEditorAt(fileName, line, column);
}