[rkward-cvs] SF.net SVN: rkward:[4009] trunk/rkward/rkward/windows/rkdebugconsole.cpp
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Fri Oct 28 15:40:17 UTC 2011
Revision: 4009
http://rkward.svn.sourceforge.net/rkward/?rev=4009&view=rev
Author: tfry
Date: 2011-10-28 15:40:16 +0000 (Fri, 28 Oct 2011)
Log Message:
-----------
Document potentially surprising behavior in tool tip.
Modified Paths:
--------------
trunk/rkward/rkward/windows/rkdebugconsole.cpp
Modified: trunk/rkward/rkward/windows/rkdebugconsole.cpp
===================================================================
--- trunk/rkward/rkward/windows/rkdebugconsole.cpp 2011-10-28 15:34:49 UTC (rev 4008)
+++ trunk/rkward/rkward/windows/rkdebugconsole.cpp 2011-10-28 15:40:16 UTC (rev 4009)
@@ -55,7 +55,9 @@
button_layout->addWidget (step_button);
step_out_button = new QPushButton (i18n ("Step out"), this);
connect (step_out_button, SIGNAL (clicked()), this, SLOT (stepOutButtonClicked()));
- RKCommonFunctions::setTips (i18n ("Continue until the caller of this function is reached (unless another debug statement is hit, earlier)"), step_out_button);
+ RKCommonFunctions::setTips (i18n ("<p>Continue until the caller of this function is reached (unless another debug statement is hit, earlier)</p>"
+ "<p><b>Note:</b> In some cases, the calling function will never be reached, because the call was the last step in the caller."
+ "In these cases, the behavior is identical to 'Continue'.</p>"), step_out_button);
button_layout->addWidget (step_out_button);
continue_button = new QPushButton (i18n ("Continue"), this);
connect (continue_button, SIGNAL (clicked()), this, SLOT (continueButtonClicked()));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the rkward-tracker
mailing list