~ubuntu-branches/ubuntu/raring/gwenview/raring-proposed

« back to all changes in this revision

Viewing changes to lib/transformimageoperation.cpp

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac, Philip Muškovac, Scott Kitterman
  • Date: 2011-12-24 18:54:55 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20111224185455-zxffs6i6m5cwwuze
Tags: 4:4.7.95-0ubuntu1
[ Philip Muškovac ]
* New upstream release candiate

[ Scott Kitterman ]
* Fix Ubuntu Vcs- header in debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
// Qt
25
25
 
26
26
// KDE
27
 
#include <kdebug.h>
28
 
#include <klocale.h>
 
27
#include <KDebug>
 
28
#include <KLocale>
29
29
 
30
30
// Local
31
31
#include "document/abstractdocumenteditor.h"
34
34
namespace Gwenview
35
35
{
36
36
 
37
 
struct TransformImageOperationPrivate {
 
37
struct TransformImageOperationPrivate
 
38
{
38
39
    Orientation mOrientation;
39
40
};
40
41