mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 18:00:46 -04:00
Update format
This commit is contained in:
parent
442307cc65
commit
1aa36f8892
@ -21,8 +21,8 @@ class Render;
|
||||
class ImageFilter
|
||||
{
|
||||
public:
|
||||
ImageFilter() {};
|
||||
virtual ~ImageFilter() {};
|
||||
ImageFilter() { };
|
||||
virtual ~ImageFilter() { };
|
||||
virtual QImage setFilter(const QImage &image) = 0;
|
||||
inline int getLevel() { return level; };
|
||||
inline void setLevel(int l) { level = l; };
|
||||
|
@ -15,7 +15,7 @@ public:
|
||||
QList<int> bookmarks;
|
||||
QDateTime added;
|
||||
Bookmark()
|
||||
: lastPage(0) {};
|
||||
: lastPage(0) { };
|
||||
friend QDataStream &operator<<(QDataStream &out, const Bookmark &bm)
|
||||
{
|
||||
out << bm.lastPage;
|
||||
|
@ -92,7 +92,7 @@ public slots:
|
||||
void updateBookmarkImage(int);
|
||||
void setPageLoaded(int page);
|
||||
void invalidate();
|
||||
virtual void process() {};
|
||||
virtual void process() { };
|
||||
|
||||
signals:
|
||||
void invalidated();
|
||||
|
Loading…
Reference in New Issue
Block a user