~l3on/ubuntu/precise/rkward/rebuild1

« back to all changes in this revision

Viewing changes to rkward/misc/rkdummypart.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Friedrichsmeier
  • Date: 2008-04-20 21:30:00 UTC
  • mfrom: (1.2.2 upstream) (3.1.9 hardy)
  • Revision ID: james.westby@ubuntu.com-20080420213000-fs4i8efmfc793bnn
new upstream release
closes: #475175
closes: #463348
closes: #475982

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          rkdummypart  -  description
 
3
                             -------------------
 
4
    begin                : Wed Feb 28 2007
 
5
    copyright            : (C) 2007 by Thomas Friedrichsmeier
 
6
    email                : tfry@users.sourceforge.net
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *                                                                         *
 
16
 ***************************************************************************/
 
17
 
 
18
#include <kapplication.h>
 
19
 
 
20
#include "rkdummypart.h"
 
21
 
 
22
#include "../debug.h"
 
23
 
 
24
RKDummyPart::RKDummyPart (QObject *parent, QWidget *widget) : KParts::Part (parent) {
 
25
        RK_TRACE (MISC);
 
26
        setWidget (widget);
 
27
 
 
28
        KInstance* instance = new KInstance ("rkward");
 
29
        setInstance (instance);
 
30
}
 
31
 
 
32
RKDummyPart::~RKDummyPart () {
 
33
        RK_TRACE (MISC);
 
34
}
 
35