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

« back to all changes in this revision

Viewing changes to lib/document/document.h

  • 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:
31
31
#include <QSize>
32
32
 
33
33
// KDE
34
 
#include <ksharedptr.h>
 
34
#include <KSharedPtr>
35
35
 
36
36
// Local
37
37
#include <lib/mimetypeutils.h>
137
137
 
138
138
    QSize size() const;
139
139
 
140
 
    int width() const {
 
140
    int width() const
 
141
    {
141
142
        return size().width();
142
143
    }
143
144
 
144
 
    int height() const {
 
145
    int height() const
 
146
    {
145
147
        return size().height();
146
148
    }
147
149