changeset 151:1d83f0185355

Changed some not yet impleneted functions tooltips. git-svn-id: svn://svn.code.sf.net/p/universalindent/code/trunk@354 59b1889a-e5ac-428c-b0c7-476e01d41282
author thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
date Thu, 31 May 2007 18:13:06 +0000
parents d601314c598b
children 0368946331ea
files src/uiguisettingsdialog.cpp
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/uiguisettingsdialog.cpp	Thu May 31 17:58:54 2007 +0000
+++ b/src/uiguisettingsdialog.cpp	Thu May 31 18:13:06 2007 +0000
@@ -34,6 +34,9 @@
 
     // Init the user interface created by the UIC.
 	setupUi(this);
+	//TODO: This has to be removed when the properties for the highlighters can be set.
+	groupBoxSyntaxHighlighterProperties->setToolTip( "(Will be implemented soon)" + groupBoxSyntaxHighlighterProperties->toolTip() );
+	uiGuiRecentlyOpenedListSize->setToolTip( "(Will be implemented soon)" + uiGuiRecentlyOpenedListSize->toolTip() );
 
     // Get all check boxes that are used for settings.
     checkBoxes = findChildren<QCheckBox*>( QRegExp("uiGui*") );
@@ -167,6 +170,9 @@
 void UiGuiSettingsDialog::changeEvent(QEvent *event) {
     if (event->type() == QEvent::LanguageChange) {
         retranslateUi(this);
+		//TODO: This has to be removed when the properties for the highlighters can be set.
+		groupBoxSyntaxHighlighterProperties->setToolTip( "(Will be implemented soon)" + groupBoxSyntaxHighlighterProperties->toolTip() );
+		uiGuiRecentlyOpenedListSize->setToolTip( "(Will be implemented soon)" + uiGuiRecentlyOpenedListSize->toolTip() );
 
         QStringList languageShortList = settings->getAvailableTranslations();