~ubuntu-branches/ubuntu/trusty/gwenview/trusty

« back to all changes in this revision

Viewing changes to lib/abstractimageoperation.cpp

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-12-24 18:54:55 UTC
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20111224185455-peofsmb92w3o944b
Tags: upstream-4.7.95
Import upstream version 4.7.95

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
// Qt
25
25
 
26
26
// KDE
27
 
#include <kjob.h>
28
 
#include <kurl.h>
 
27
#include <KJob>
 
28
#include <KUrl>
29
29
 
30
30
// Local
31
31
#include "document/documentfactory.h"
41
41
        : mOp(op)
42
42
    {}
43
43
 
44
 
    ~ImageOperationCommand() {
 
44
    ~ImageOperationCommand()
 
45
    {
45
46
        delete mOp;
46
47
    }
47
48
 
54
55
    AbstractImageOperation* mOp;
55
56
};
56
57
 
57
 
struct AbstractImageOperationPrivate {
 
58
struct AbstractImageOperationPrivate
 
59
{
58
60
    QString mText;
59
61
    KUrl mUrl;
60
62
};