Merge branch '0.9.1-beta' of git@scm.dev.nokia.troll.no:creator/mainline into 0.9.1-beta

This commit is contained in:
hjk
2008-12-15 12:54:53 +01:00
3 changed files with 24 additions and 4 deletions

View File

@@ -605,7 +605,7 @@
\o Ctrl+K, l, Space, and the line number \o Ctrl+K, l, Space, and the line number
\o \image qtcreator-locator-line.png \o \image qtcreator-locator-line.png
\row \row
\o Go to a function definition \o Go to a symbol definition
\o Ctrl+K, :, Space, and the function name \o Ctrl+K, :, Space, and the function name
\row \row
\o Go to a help topic \o Go to a help topic
@@ -626,9 +626,14 @@
\o Ctrl+K, p, Space, and the function name. \o Ctrl+K, p, Space, and the function name.
\row \row
\o Go to a class in the current project \o Go to a class definition
\o Ctrl+K, c, Space, and the class name. \o Ctrl+K, c, Space, and the class name.
\o \image qtcreator-locator-classes.png \o \image qtcreator-locator-classes.png
\row
\o Go to a method definition
\o Ctrl+K, m, Space, and the class name.
\o \image qtcreator-locator-methods.png
\endtable \endtable
*/ */

View File

@@ -52,7 +52,7 @@ public:
CompileOutputWindow(BuildManager *bm); CompileOutputWindow(BuildManager *bm);
QWidget *outputWidget(QWidget *); QWidget *outputWidget(QWidget *);
QList<QWidget*> toolBarWidgets(void) const { return QList<QWidget *>(); } QList<QWidget*> toolBarWidgets(void) const { return QList<QWidget *>(); }
QString name() const { return tr("Compile"); } QString name() const { return tr("Compile Output"); }
int priorityInStatusBar() const; int priorityInStatusBar() const;
void clearContents(); void clearContents();
void visibilityChanged(bool visible); void visibilityChanged(bool visible);

View File

@@ -621,7 +621,22 @@ void Qt4Project::addDefaultBuild()
// Restoring configuration // Restoring configuration
// Do we already have a gdbmacrobuildstep? // Do we already have a gdbmacrobuildstep?
// If not add it and disable linking of debugging helper // If not add it and disable linking of debugging helper
// TODO
// Check for old link debugging helper setting in each buildConfiguration
// We add a gdbmacrosbuildstep if at least one has it
// TODO remove migration code from pre beta
foreach(const QString &bc, buildConfigurations()) {
QVariant v = value(bc, "addQDumper");
if (v.isValid() && v.toBool()) {
GdbMacrosBuildStep *gdbmacrostep = new GdbMacrosBuildStep(this);
insertBuildStep(0, gdbmacrostep);
break;
}
}
foreach(const QString &bc, buildConfigurations()) {
setValue(bc, "addQDumper", QVariant());
}
} }
} }