improve messages

This commit is contained in:
Oswald Buddenhagen
2009-01-14 21:12:58 +01:00
parent 399f8d63eb
commit a5f6281f1a
2 changed files with 2 additions and 2 deletions

View File

@@ -141,7 +141,7 @@ void ApplicationRunControl::start()
m_executable, rc->commandLineArguments());
emit started();
emit addToOutputWindow(this, tr("Starting %1").arg(m_executable));
emit addToOutputWindow(this, tr("Starting %1...").arg(m_executable));
}
void ApplicationRunControl::stop()

View File

@@ -39,6 +39,6 @@ extern "C" Q_DECL_EXPORT int pluginTest()
int s = 0;
for (int i = 1; i != 2000; ++i)
s += i;
fprintf(stderr, "in plugin test");
fprintf(stderr, "in plugin test\n");
return s;
}