Skip to content
Snippets Groups Projects
Commit a5f6281f authored by Oswald Buddenhagen's avatar Oswald Buddenhagen
Browse files

improve messages

parent 399f8d63
No related branches found
No related tags found
No related merge requests found
...@@ -141,7 +141,7 @@ void ApplicationRunControl::start() ...@@ -141,7 +141,7 @@ void ApplicationRunControl::start()
m_executable, rc->commandLineArguments()); m_executable, rc->commandLineArguments());
emit started(); emit started();
emit addToOutputWindow(this, tr("Starting %1").arg(m_executable)); emit addToOutputWindow(this, tr("Starting %1...").arg(m_executable));
} }
void ApplicationRunControl::stop() void ApplicationRunControl::stop()
......
...@@ -39,6 +39,6 @@ extern "C" Q_DECL_EXPORT int pluginTest() ...@@ -39,6 +39,6 @@ extern "C" Q_DECL_EXPORT int pluginTest()
int s = 0; int s = 0;
for (int i = 1; i != 2000; ++i) for (int i = 1; i != 2000; ++i)
s += i; s += i;
fprintf(stderr, "in plugin test"); fprintf(stderr, "in plugin test\n");
return s; return s;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment