Bug 69819 - (typo/ugly) literal display of b (bold) tags in hint
Summary: (typo/ugly) literal display of b (bold) tags in hint
Status: RESOLVED FIXED
Alias: None
Product: kcontrol
Classification: Miscellaneous
Component: kcmlilo (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Marie Loise Nolden
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-12-07 23:40 UTC by Bart Coppens
Modified: 2004-01-11 20:59 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Bart Coppens 2003-12-07 23:40:35 UTC
Version:            (using KDE KDE 3.1.93)
Installed from:    Compiled From Sources

In the General Options tab, the Help Hint (clicking with the '?' cursor) of 'Record boot command lines for defaults' has 2 viewable bold tags (<b> and </b>). This looks ugly and other hints do display their bold tags correctly.
Comment 1 Maksim Orlovich 2004-01-11 20:59:37 UTC
Subject: kdeadmin/lilo-config

CVS commit by orlovich: 

Another spot missing the <qt> escape.
CCMAIL: 69819-done@bugs.kde.org


  M +1 -1      kde/Details.cpp   1.6
  M +1 -1      kde-qt-common/general.cpp   1.9
  M +1 -1      qt/Details.cpp   1.3


--- kdeadmin/lilo-config/kde/Details.cpp  #1.5:1.6
@@ -81,5 +81,5 @@ Details::Details(liloimage *lilo, QWidge
         QHBox *opts=new QHBox(page);
         lock=new QCheckBox(_("&Record boot command lines for defaults"), opts);
-        QWhatsThis::add(lock, _("Checking this box enables automatic recording of boot command lines as the default for the following bootups. This way, lilo \"locks\" on a choice until it is manually overridden.<br>This sets the <b>lock</b> option in lilo.conf"));
+        QWhatsThis::add(lock, "<qt>" + _("Checking this box enables automatic recording of boot command lines as the default for the following bootups. This way, lilo \"locks\" on a choice until it is manually overridden.<br>This sets the <b>lock</b> option in lilo.conf"));
         restricted=new QCheckBox(_("R&estrict parameters"), opts);
         connect(restricted, SIGNAL(clicked()), SLOT(check_pw()));

--- kdeadmin/lilo-config/kde-qt-common/general.cpp  #1.8:1.9
@@ -73,5 +73,5 @@ General::General(liloconf *l, QWidget *p
         lock=new QCheckBox(_("&Record boot command lines for defaults"), opts);
         connect(lock, SIGNAL(clicked()), SIGNAL(configChanged()));
-        QWhatsThis::add(lock, _("Checking this box enables automatic recording of boot command lines as the defaults for the following boots. This way, lilo \"locks\" on a choice until it is manually overridden.\nThis sets the <b>lock</b> option in lilo.conf."));
+        QWhatsThis::add(lock, "<qt>"+_("Checking this box enables automatic recording of boot command lines as the defaults for the following boots. This way, lilo \"locks\" on a choice until it is manually overridden.\nThis sets the <b>lock</b> option in lilo.conf."));
         restricted=new QCheckBox(_("R&estrict parameters"), opts);
         connect(restricted, SIGNAL(clicked()), SIGNAL(configChanged()));

--- kdeadmin/lilo-config/qt/Details.cpp  #1.2:1.3
@@ -84,5 +84,5 @@ Details::Details(liloimage *lilo, QWidge
         QHBox *opts=new QHBox(this);
         lock=new QCheckBox(_("&Record boot command lines for defaults"), opts);
-        QWhatsThis::add(lock, _("Checking this box enables automatic recording of boot command lines as the default for the following bootups. This way, lilo \"locks\" on a choice until it is manually overridden.<br>This sets the <b>lock</b> option in lilo.conf"));
+        QWhatsThis::add(lock, "<qt>"+_("Checking this box enables automatic recording of boot command lines as the default for the following bootups. This way, lilo \"locks\" on a choice until it is manually overridden.<br>This sets the <b>lock</b> option in lilo.conf"));
         restricted=new QCheckBox(_("R&estrict parameters"), opts);
         connect(restricted, SIGNAL(clicked()), SLOT(check_pw()));