Skip to content
Snippets Groups Projects
Commit 30763039 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

Imageviewer: Compile

parent 02ce57e4
No related branches found
No related tags found
No related merge requests found
...@@ -97,14 +97,14 @@ QString ImageViewerFactory::displayName() const ...@@ -97,14 +97,14 @@ QString ImageViewerFactory::displayName() const
return tr("Image Viewer"); return tr("Image Viewer");
} }
Core::IFile *ImageViewerFactory::open(const QString &fileName) Core::IFile *ImageViewerFactory::open(const QString & /* fileName */)
{ {
return 0; return 0;
} }
// #pragma mark -- ImageViewerFile // #pragma mark -- ImageViewerFile
void ImageViewerFile::modified(ReloadBehavior *behavior) void ImageViewerFile::modified(ReloadBehavior * /* behavior */)
{ {
// TODO // TODO
} }
......
...@@ -65,7 +65,7 @@ class ImageViewerFile : public Core::IFile ...@@ -65,7 +65,7 @@ class ImageViewerFile : public Core::IFile
{ {
Q_OBJECT Q_OBJECT
public: public:
explicit ImageViewerFile(QObject *parent = 0) {} explicit ImageViewerFile(QObject *parent = 0) : Core::IFile(parent) {}
bool save(const QString &fileName = QString()) { Q_UNUSED(fileName); return false; } bool save(const QString &fileName = QString()) { Q_UNUSED(fileName); return false; }
QString fileName() const { return m_fileName; } QString fileName() const { return m_fileName; }
...@@ -107,10 +107,10 @@ public: ...@@ -107,10 +107,10 @@ public:
void setDisplayName(const QString &title); void setDisplayName(const QString &title);
bool duplicateSupported() const { return false; } bool duplicateSupported() const { return false; }
IEditor *duplicate(QWidget *parent) { return 0; } IEditor *duplicate(QWidget * /* parent */) { return 0; }
QByteArray saveState() const { return QByteArray(); } QByteArray saveState() const { return QByteArray(); }
bool restoreState(const QByteArray &state) { Q_UNUSED(state); } bool restoreState(const QByteArray & /* state */) { return true; }
int currentLine() const { return 0; } int currentLine() const { return 0; }
int currentColumn() const { return 0; } int currentColumn() const { return 0; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment