~ubuntu-branches/ubuntu/lucid/konversation/lucid-updates

« back to all changes in this revision

Viewing changes to debian/patches/10_debian_channel.diff

  • Committer: Bazaar Package Importer
  • Author(s): Richard Birnie
  • Date: 2008-05-07 13:46:21 UTC
  • Revision ID: james.westby@ubuntu.com-20080507134621-hfob6nmjllmydv16
Tags: 1.0.1-6ubuntu1
Merge with Debian, remaining change just the .orig md5sum, closes LP: #226180

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
diff -Nur konversation-1.0/konversation/src/config/preferences.cpp konversation-1.0.new/konversation/src/config/preferences.cpp
 
2
--- konversation-1.0/konversation/src/config/preferences.cpp    2006-09-09 10:48:46.000000000 +0200
 
3
+++ konversation-1.0.new/konversation/src/config/preferences.cpp        2006-09-09 10:49:56.000000000 +0200
 
4
@@ -73,13 +73,14 @@
 
5
     setAwayMessage("/me is away: %s");
 
6
     setUnAwayMessage("/me is back.");
 
7
     Konversation::ServerGroupSettingsPtr serverGroup = new Konversation::ServerGroupSettings;
 
8
-    serverGroup->setName("Freenode");
 
9
+    serverGroup->setName("Debian IRC");
 
10
     Konversation::ServerSettings server;
 
11
-    server.setServer("irc.freenode.org");
 
12
+    server.setServer("irc.debian.org");
 
13
+    server.setPort(7000);
 
14
     serverGroup->addServer(server);
 
15
     serverGroup->setIdentityId(mIdentity->id());
 
16
     Konversation::ChannelSettings channel;
 
17
-    channel.setName("#kde");
 
18
+    channel.setName("#debian");
 
19
     serverGroup->addChannel(channel);
 
20
     serverGroup->setExpanded(false);
 
21
     mServerGroupList.append(serverGroup);