make webinterface translatable. there are around 20 short strings, all with context...
[kdenetwork.git] / kopete / protocols / sms / smsservice.cpp
blob0944da06e42fd426d696d04b49bc80804c39b5be
1 /* *************************************************************************
2 * copyright: (C) 2003 Richard Lärkäng <nouseforaname@home.se> *
3 * copyright: (C) 2003 Gav Wood <gav@kde.org> *
4 *************************************************************************
5 */
7 /* *************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 *************************************************************************
17 #include <qlayout.h>
19 #include <kdebug.h>
21 #include "smsservice.h"
23 SMSService::SMSService(Kopete::Account* account)
24 : QObject(), m_account(account), m_layout(NULL), m_parent(NULL)
28 SMSService::~SMSService()
33 void SMSService::setAccount(Kopete::Account* account)
35 if(!m_account)
36 m_account = account;
37 if(account)
38 savePreferences();
41 // The Default impl simply flips a signal back
42 void SMSService::connect()
44 emit connected();
47 // The Default impl simply flips a signal back
48 void SMSService::disconnect()
50 emit disconnected();
54 * Local variables:
55 * c-indentation-style: k&r
56 * c-basic-offset: 8
57 * indent-tabs-mode: t
58 * End:
60 // vim: set noet ts=4 sts=4 sw=4:
63 #include "smsservice.moc"