extragear/sdk/kdevplatform/plugins/standardoutputview

Andreas Pakulat apaku at gmx.de
Mon Dec 28 23:50:00 UTC 2009


SVN commit 1067129 by apaku:

The next/prev action is not just for build errors, it works for the
currently selected outputview.
My try at making the text more descriptive, if somebody else has a
better idea please share it.
CCMAIL:kdevelop-devel at kdevelop.org

 M  +2 -2      standardoutputview.cpp  


--- trunk/extragear/sdk/kdevplatform/plugins/standardoutputview/standardoutputview.cpp #1067128:1067129
@@ -83,12 +83,12 @@
     KAction *action;
 
     action = actionCollection()->addAction("next_error");
-    action->setText(i18n("Next Build Error"));
+    action->setText(i18n("Jump To next Outputmark"));
     action->setShortcut( QKeySequence(Qt::Key_F4) );
     connect(action, SIGNAL(triggered(bool)), this, SIGNAL(selectNextItem()));
 
     action = actionCollection()->addAction("prev_error");
-    action->setText(i18n("Previous Build Error"));
+    action->setText(i18n("Jump To previous Outputmark"));
     action->setShortcut( QKeySequence(Qt::SHIFT | Qt::Key_F4) );
     connect(action, SIGNAL(triggered(bool)), this, SIGNAL(selectPrevItem()));
 




More information about the KDevelop-devel mailing list