-rw-r--r-- | noncore/net/opieirc/ircserver.cpp | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/noncore/net/opieirc/ircserver.cpp b/noncore/net/opieirc/ircserver.cpp index 7e7e412..abb770b 100644 --- a/noncore/net/opieirc/ircserver.cpp +++ b/noncore/net/opieirc/ircserver.cpp @@ -1,12 +1,17 @@ +#include <qpe/global.h> +#include <qpe/contact.h> + +#include <qobject.h> +#include <qfile.h> + #include "ircserver.h" #include "ircversion.h" -#include <qobject.h> IRCServer::IRCServer() { m_port = 6667; } /* Setter implementations */ void IRCServer::setHostname(QString hostname) { @@ -68,16 +73,24 @@ QString IRCServer::password() { QString IRCServer::nick() { return m_nick; } QString IRCServer::realname() { if(!m_realname.isEmpty()) return m_realname; - - return QString(QObject::tr("Using")) + " " + QString(APP_VERSION); + // Try to fetch realname from addressbook + QString file = Global::applicationFileName( "addressbook", "businesscard.vcf" ); + if ( QFile::exists( file ) ) { + Contact cont = Contact::readVCard( file )[0]; + QString realName = cont.fullName(); + if(!realName.isEmpty()) + return realName; + } + + return QString(APP_VERSION + QObject::tr(" User")); } QString IRCServer::channels() { return m_channels; } |