~ubuntu-branches/ubuntu/gutsy/kde4libs/gutsy

« back to all changes in this revision

Viewing changes to kdeui/util/kicon.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-02-21 11:00:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070221110012-6kw8khr9knv6lmg1
Tags: 3.80.3-0ubuntu1
New upstream unstable release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of the KDE libraries
2
 
    Copyright (C) 2006 Hamish Rodda <rodda@kde.org>
3
 
 
4
 
    This library is free software; you can redistribute it and/or
5
 
    modify it under the terms of the GNU Library General Public
6
 
    License version 2 as published by the Free Software Foundation.
7
 
 
8
 
    This library is distributed in the hope that it will be useful,
9
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
 
    Library General Public License for more details.
12
 
 
13
 
    You should have received a copy of the GNU Library General Public License
14
 
    along with this library; see the file COPYING.LIB.  If not, write to
15
 
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16
 
    Boston, MA 02110-1301, USA.
17
 
*/
18
 
 
19
 
#include "kicon.h"
20
 
 
21
 
#include <kglobal.h>
22
 
 
23
 
#include "kiconengine.h"
24
 
 
25
 
KIcon::KIcon(const QString& iconName, KIconLoader* iconLoader)
26
 
  : QIcon(new KIconEngine(iconName, iconLoader ? iconLoader : KGlobal::iconLoader()))
27
 
{
28
 
}
29
 
 
30
 
KIcon::KIcon()
31
 
{
32
 
}
33
 
 
34
 
KIcon::KIcon(const QIcon& copy)
35
 
  : QIcon(copy)
36
 
{
37
 
}