~ubuntu-branches/ubuntu/precise/gwenview/precise-proposed

« back to all changes in this revision

Viewing changes to importer/progresspage.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:54 UTC
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20111215141754-z043hyx69dulbggf
Tags: upstream-4.7.90
Import upstream version 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// vim: set tabstop=4 shiftwidth=4 noexpandtab:
 
1
// vim: set tabstop=4 shiftwidth=4 expandtab:
2
2
/*
3
3
Gwenview: an image viewer
4
4
Copyright 2009 Aurélien Gâteau <agateau@kde.org>
29
29
 
30
30
// Local
31
31
 
32
 
namespace Gwenview {
 
32
namespace Gwenview
 
33
{
33
34
 
34
35
class Importer;
35
36
 
36
37
class ProgressPagePrivate;
37
 
class ProgressPage : public QWidget {
38
 
        Q_OBJECT
 
38
class ProgressPage : public QWidget
 
39
{
 
40
    Q_OBJECT
39
41
public:
40
 
        ProgressPage(Importer*);
41
 
        ~ProgressPage();
 
42
    ProgressPage(Importer*);
 
43
    ~ProgressPage();
42
44
 
43
45
private:
44
 
        ProgressPagePrivate* const d;
 
46
    ProgressPagePrivate* const d;
45
47
};
46
48
 
47
 
 
48
49
} // namespace
49
50
 
50
51
#endif /* PROGRESSPAGE_H */