summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircsettings.cpp
authorskyhusker <skyhusker>2005-01-14 20:47:46 (UTC)
committer skyhusker <skyhusker>2005-01-14 20:47:46 (UTC)
commitf572b6a41ab3576957b29d73b54bfc34adeea07c (patch) (unidiff)
tree1391c7e32e6eeee8d94031ab908c2f7e7bc7629f /noncore/net/opieirc/ircsettings.cpp
parente5f33e8eba48c12edf0dc5a48a61024eb42fbaf9 (diff)
downloadopie-f572b6a41ab3576957b29d73b54bfc34adeea07c.zip
opie-f572b6a41ab3576957b29d73b54bfc34adeea07c.tar.gz
opie-f572b6a41ab3576957b29d73b54bfc34adeea07c.tar.bz2
Changed default notification color
Diffstat (limited to 'noncore/net/opieirc/ircsettings.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircsettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/opieirc/ircsettings.cpp b/noncore/net/opieirc/ircsettings.cpp
index 7a1dd6c..86e0f11 100644
--- a/noncore/net/opieirc/ircsettings.cpp
+++ b/noncore/net/opieirc/ircsettings.cpp
@@ -81,25 +81,25 @@ IRCSettings::IRCSettings(QWidget* parent, const char* name, bool modal, WFlags)
81 label = new QLabel(tr("Text written by others :"), widget); 81 label = new QLabel(tr("Text written by others :"), widget);
82 layout->addWidget(label, 4, 0); 82 layout->addWidget(label, 4, 0);
83 m_other = new OColorButton(widget, m_config->readEntry("OtherColor", "#0000BB")); 83 m_other = new OColorButton(widget, m_config->readEntry("OtherColor", "#0000BB"));
84 QWhatsThis::add(m_other, tr("Text color to be used to identify text written by others")); 84 QWhatsThis::add(m_other, tr("Text color to be used to identify text written by others"));
85 layout->addWidget(m_other, 4, 1); 85 layout->addWidget(m_other, 4, 1);
86 label = new QLabel(tr("Text written by the server :"), widget); 86 label = new QLabel(tr("Text written by the server :"), widget);
87 layout->addWidget(label, 5, 0); 87 layout->addWidget(label, 5, 0);
88 m_server = new OColorButton(widget, m_config->readEntry("ServerColor", "#0000FF")); 88 m_server = new OColorButton(widget, m_config->readEntry("ServerColor", "#0000FF"));
89 QWhatsThis::add(m_server, tr("Text color to be used to identify text written by the server")); 89 QWhatsThis::add(m_server, tr("Text color to be used to identify text written by the server"));
90 layout->addWidget(m_server, 5, 1); 90 layout->addWidget(m_server, 5, 1);
91 label = new QLabel(tr("Notifications :"), widget); 91 label = new QLabel(tr("Notifications :"), widget);
92 layout->addWidget(label, 6, 0); 92 layout->addWidget(label, 6, 0);
93 m_notification = new OColorButton(widget, m_config->readEntry("NotificationColor", "#AAE300")); 93 m_notification = new OColorButton(widget, m_config->readEntry("NotificationColor", "#006400"));
94 QWhatsThis::add(m_notification, tr("Text color to be used to display notifications")); 94 QWhatsThis::add(m_notification, tr("Text color to be used to display notifications"));
95 layout->addWidget(m_notification, 6, 1); 95 layout->addWidget(m_notification, 6, 1);
96 tw->addTab(view, "opieirc/colors", tr("Colors")); 96 tw->addTab(view, "opieirc/colors", tr("Colors"));
97 97
98 98
99 /* 99 /*
100 * IRC EditLine KeyConfiguration 100 * IRC EditLine KeyConfiguration
101 */ 101 */
102 m_keyConf = new Opie::Ui::OKeyConfigWidget(tw, "KEyConfig GUI" ); 102 m_keyConf = new Opie::Ui::OKeyConfigWidget(tw, "KEyConfig GUI" );
103 m_keyConf->setChangeMode( OKeyConfigWidget::Queue ); 103 m_keyConf->setChangeMode( OKeyConfigWidget::Queue );
104 m_keyConf->insert( tr("Keyboard Shortcuts"), 104 m_keyConf->insert( tr("Keyboard Shortcuts"),
105 IRCHistoryLineEdit::keyConfigInstance() ); 105 IRCHistoryLineEdit::keyConfigInstance() );