summaryrefslogtreecommitdiffstats
path: root/konversation
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-01-18 14:13:07 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2014-01-18 14:13:07 -0600
commit58f73770656c622d9a555fddfcbe2c2af7d6d9a3 (patch)
tree600447f4abad05effc55dc55c50ebcbe698e2431 /konversation
parent5ba520a45bfe0ed3ae2380db380e7bece348c98f (diff)
downloadkonversation-58f73770656c622d9a555fddfcbe2c2af7d6d9a3.tar.gz
konversation-58f73770656c622d9a555fddfcbe2c2af7d6d9a3.zip
Update default IRC node and fix split docbook tags.
Diffstat (limited to 'konversation')
-rw-r--r--konversation/src/config/preferences.cpp6
-rw-r--r--konversation/src/serverlistdialog.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/konversation/src/config/preferences.cpp b/konversation/src/config/preferences.cpp
index 03dedcd..3fce016 100644
--- a/konversation/src/config/preferences.cpp
+++ b/konversation/src/config/preferences.cpp
@@ -69,14 +69,14 @@ Preferences::Preferences()
mIdentity->setNicknameList(nickList);
Konversation::ServerGroupSettingsPtr serverGroup = new Konversation::ServerGroupSettings;
- serverGroup->setName("Ubuntu IRC");
+ serverGroup->setName("Trinity IRC");
Konversation::ServerSettings server;
- server.setHost("irc.ubuntu.com");
+ server.setHost("irc.freenode.net");
server.setPort(8001);
serverGroup->addServer(server);
serverGroup->setIdentityId(mIdentity->id());
Konversation::ChannelSettings channel;
- channel.setName("#kubuntu");
+ channel.setName("#trinity-desktop");
serverGroup->addChannel(channel);
serverGroup->setExpanded(false);
addServerGroup(serverGroup);
diff --git a/konversation/src/serverlistdialog.cpp b/konversation/src/serverlistdialog.cpp
index 3539f34..9f1e8b5 100644
--- a/konversation/src/serverlistdialog.cpp
+++ b/konversation/src/serverlistdialog.cpp
@@ -108,7 +108,7 @@ namespace Konversation
TQFrame* mainWidget = plainPage();
m_serverList = new ServerListView(mainWidget);
- TQWhatsThis::add(m_serverList, i18n("This shows the listof configured IRC networks. An IRC network is a collection of cooperating servers. You need only connect to one of the servers in the network to be connected to the entire IRC network. Once connected, Konversation will automatically join the channels shown. When Konversation is started for the first time, the Freenode network and the <i>#kde</i> channel are already entered for you."));
+ TQWhatsThis::add(m_serverList, i18n("This shows the list of configured IRC networks. An IRC network is a collection of cooperating servers. You need only connect to one of the servers in the network to be connected to the entire IRC network. Once connected, Konversation will automatically join the channels shown. When Konversation is started for the first time, the Freenode network and the <i>#trinity-desktop</i> channel are already entered for you."));
m_serverList->setAllColumnsShowFocus(true);
m_serverList->setRootIsDecorated(true);
m_serverList->setResizeMode(TQListView::AllColumns);