~ubuntu-branches/ubuntu/maverick/digikam/maverick

« back to all changes in this revision

Viewing changes to imageplugins/perspective/imageplugin_perspective.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Luka Renko
  • Date: 2009-03-17 23:07:56 UTC
  • mfrom: (1.2.20 upstream) (3.1.4 experimental)
  • Revision ID: james.westby@ubuntu.com-20090317230756-db5b8rqjwb2j35e5
Tags: 2:0.10.0-1ubuntu1
* Remaining changes to Debian (committed to Debian SVN):
  - Depends: kde-icons-oxygen dropped (included through kdelibs)
  - Recommends: kipi-plugins added (provides major functionality)
  - debian/digikamthemedesigner.manpage: add missing manpage
* Remaning change to Debian:
  - Section: devel for -dbg package (no debug in Jaunty)

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 * Date        : 2005-02-17
7
7
 * Description : a plugin to change image perspective .
8
8
 *
9
 
 * Copyright (C) 2005-2008 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
9
 * Copyright (C) 2005-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
10
10
 *
11
11
 * This program is free software; you can redistribute it
12
12
 * and/or modify it under the terms of the GNU General
21
21
 *
22
22
 * ============================================================ */
23
23
 
24
 
 
25
24
#include "imageplugin_perspective.h"
26
25
#include "imageplugin_perspective.moc"
27
26
 
45
44
K_PLUGIN_FACTORY( PerspectiveFactory, registerPlugin<ImagePlugin_Perspective>(); )
46
45
K_EXPORT_PLUGIN ( PerspectiveFactory("digikamimageplugin_perspective") )
47
46
 
48
 
ImagePlugin_Perspective::ImagePlugin_Perspective(QObject *parent, const QVariantList &)
49
 
                        : Digikam::ImagePlugin(parent, "ImagePlugin_Perspective")
 
47
ImagePlugin_Perspective::ImagePlugin_Perspective(QObject *parent, const QVariantList&)
 
48
                       : Digikam::ImagePlugin(parent, "ImagePlugin_Perspective")
50
49
{
51
50
    m_perspectiveAction  = new KAction(KIcon("perspective"), i18n("Perspective Adjustment..."), this);
52
51
    actionCollection()->addAction("imageplugin_perspective", m_perspectiveAction );