예제 #1
0
void TodoPlugin::todoItemClicked(const TodoItem &item)
{
    if (item.file.exists()) {
        Core::IEditor *editor = Core::EditorManager::openEditor(item.file.toString());
        editor->gotoLine(item.line);
    }
}
예제 #2
0
void TodoPlugin::todoItemClicked(const TodoItem &item)
{
    if (QFileInfo::exists(item.file)) {
        Core::IEditor *editor = Core::EditorManager::openEditor(item.file);
        editor->gotoLine(item.line);
    }
}