|
From: <sv...@va...> - 2011-06-24 10:55:50
|
Author: cerion
Date: 2011-06-24 11:51:00 +0100 (Fri, 24 Jun 2011)
New Revision: 530
Log:
add temp log dir tooltip warning
Modified:
trunk/src/options/valkyrie_options_page.cpp
Modified: trunk/src/options/valkyrie_options_page.cpp
===================================================================
--- trunk/src/options/valkyrie_options_page.cpp 2011-06-24 10:50:11 UTC (rev 529)
+++ trunk/src/options/valkyrie_options_page.cpp 2011-06-24 10:51:00 UTC (rev 530)
@@ -167,12 +167,19 @@
// ------------------------------------------------------------
// tooltips
+ // TODO: put these in the options.
QString tip_editor = tr( "Tip: \"%n\" will be replaced with "
"the source code line number.<br>"
"Set the appropriate editor flag to support "
"opening the source at this line." );
editLedit->button()->setToolTip( tip_editor );
editLedit->widget()->setToolTip( tip_editor );
+
+ QString tip_logdir = tr( "Tip: All files in this temporary directory are "
+ "deleted by Valkyrie on startup and exit.<br>"
+ "Don't save your own files here!" );
+ dirLogSave->button()->setToolTip( tip_logdir );
+ dirLogSave->widget()->setToolTip( tip_logdir );
}
|