Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lintest/fb2edit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKandrashin Denis <mail@lintest.ru>2012-06-27 11:16:29 +0400
committerKandrashin Denis <mail@lintest.ru>2012-06-27 11:35:03 +0400
commit4dace6581ddb397ecfcf57d44b6a40b0a6c0fb52 (patch)
tree97101d9dbeb6c47b9e28c46ee9d7733ea45fd74a /source/fb2read.hpp
parentfd661b31e42cd00f7df489440dd634156f5b6409 (diff)
Detect binary content type
Diffstat (limited to 'source/fb2read.hpp')
-rw-r--r--source/fb2read.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/fb2read.hpp b/source/fb2read.hpp
index 03af674..18f1b83 100644
--- a/source/fb2read.hpp
+++ b/source/fb2read.hpp
@@ -53,6 +53,7 @@ private:
: NodeHandler(name), m_owner(owner) {}
protected:
QXmlStreamWriter & writer() { return m_owner.writer(); }
+ void writeAttributes(const QXmlAttributes &atts);
protected:
Fb2ReadHandler &m_owner;
};
@@ -181,7 +182,6 @@ private:
virtual void EndTag(const QString &name);
private:
QString m_file;
- QString m_type;
QString m_text;
};
@@ -189,7 +189,7 @@ protected:
virtual NodeHandler * CreateRoot(const QString &name, const QXmlAttributes &atts);
private:
- void addFile(const QString &name, const QString &type, const QByteArray &data);
+ void addFile(const QString &name, const QByteArray &data);
QString getFile(const QString &name);
private: