summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-08-03 00:15:29 +0200
committerSlávek Banko <slavek.banko@axis.cz>2021-08-03 00:18:15 +0200
commit7cb82d805bb77cdeb009e1a2ef59ab3fdf2476af (patch)
treed224a48299cc229ded5ab4e5b9b9fa79cc1976ec
parentf5ec04be013eea8e9c08ee255f5c73d1a70a9830 (diff)
downloadtdebase-7cb82d805bb77cdeb009e1a2ef59ab3fdf2476af.tar.gz
tdebase-7cb82d805bb77cdeb009e1a2ef59ab3fdf2476af.zip
kcontrol/hwmanager: Move description to the corresponding item in TDEAboutData
and added a line break to avoid unwantedly wide about dialog. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 6432d2c28008e5a78b0556e564c87a2ea84340da)
-rw-r--r--kcontrol/hwmanager/hwmanager.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/kcontrol/hwmanager/hwmanager.cpp b/kcontrol/hwmanager/hwmanager.cpp
index fbdc822c3..a9e5e5f85 100644
--- a/kcontrol/hwmanager/hwmanager.cpp
+++ b/kcontrol/hwmanager/hwmanager.cpp
@@ -68,10 +68,13 @@ TDEHWManager::TDEHWManager(TQWidget *parent, const char *name, const TQStringLis
systemconfig = new KSimpleConfig( TQString::fromLatin1( KDE_CONFDIR "/tdehw/hwmanagerrc" ));
TDEAboutData *about =
- new TDEAboutData(I18N_NOOP("kcmhwmanager"), I18N_NOOP("TDE Device Manager\n\nCan be used to get all kind of informations about your devices on your system, shows which drivers are used by them and allows to change device settings."),
- 0, 0, TDEAboutData::License_GPL,
- I18N_NOOP("(c) 2012 Timothy Pearson\n(c) 2019 The Trinity Desktop Project"));
-
+ new TDEAboutData(I18N_NOOP("kcmhwmanager"), I18N_NOOP("TDE Device Manager"), 0,
+ I18N_NOOP("Device Manager\n\n"
+ "Can be used to get all kind of informations about your devices on your system,\n"
+ "shows which drivers are used by them and allows to change device settings."),
+ TDEAboutData::License_GPL,
+ I18N_NOOP("(c) 2012 Timothy Pearson\n"
+ "(c) 2019 The Trinity Desktop Project"));
about->addAuthor("Timothy Pearson", 0, "kb9vqf@pearsoncomputing.net");
setAboutData( about );