~ubuntu-branches/ubuntu/karmic/knetworkmanager/karmic

« back to all changes in this revision

Viewing changes to knetworkmanager/src/traycomponent.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2008-09-26 12:40:26 UTC
  • mfrom: (1.2.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080926124026-t5fr920l4lf2l6hz
Tags: 1:0.7svn864988-0ubuntu1
New upstream snapshot, now works with current NM API, 
closes LP: #259278

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
Copyright 2008 Helmut Schaa <hschaa@suse.de>, <Helmut.Schaa@gmx.de>
3
 
 
4
 
This program is free software; you can redistribute it and/or
5
 
modify it under the terms of the GNU General Public License as
6
 
published by the Free Software Foundation; either version 2 of
7
 
the License or (at your option) version 3 or any later version
8
 
accepted by the membership of KDE e.V. (or its successor approved
9
 
by the membership of KDE e.V.), which shall act as a proxy 
10
 
defined in Section 14 of version 3 of the license.
11
 
 
12
 
This program is distributed in the hope that it will be useful,
13
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
GNU General Public License for more details.
16
 
 
17
 
You should have received a copy of the GNU General Public License
18
 
along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 
*/
20
 
 
21
 
#include "traycomponent.h"
22
 
 
23
 
#include <klocale.h>
24
 
#include <ksystemtray.h>
25
 
 
26
 
TrayComponent::TrayComponent(KSystemTray * parent, const char * name )
27
 
    : QObject(parent, name), m_tray(parent)
28
 
{
29
 
 
30
 
}
31
 
 
32
 
TrayComponent::~TrayComponent()
33
 
{
34
 
}
35
 
 
36
 
KSystemTray * TrayComponent::tray() const
37
 
{
38
 
    return m_tray;
39
 
}
40
 
 
41
 
QStringList TrayComponent::getToolTipText()
42
 
{
43
 
        return QStringList();
44
 
}
45
 
 
46
 
#include "traycomponent.moc"