trinity-devel@lists.pearsoncomputing.net

Message: previous - next
Month: January 2014

Re: [trinity-devel] Konversation (IRC) question

From: "Darrell Anderson" <darrella@...>
Date: Sat, 18 Jan 2014 00:18:28 -0600
>  If you have konversation installed, just run it, the first 
>screen pops up and
>tells you which channel is the default. You can cancel then.

Okay, thanks.

Incredibly, the defaults are hard-coded rather than as part of a ui 
file or default rc file.

applications/konversation/konversation/src/config/preferences.cpp:72
-79

serverGroup->setName("Ubuntu IRC");
server.setHost("irc.ubuntu.com");
channel.setName("#kubuntu");

Is the following correct to patch the defaults for Trinity?

serverGroup->setName("Trinity IRC");
server.setHost("irc.freenode.net");
channel.setName("#trinity-desktop");

Darrell