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:
Diffstat (limited to 'source/fb2dock.cpp')
-rw-r--r--source/fb2dock.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/fb2dock.cpp b/source/fb2dock.cpp
index 9bbcede..d11bc99 100644
--- a/source/fb2dock.cpp
+++ b/source/fb2dock.cpp
@@ -54,7 +54,9 @@ FbMainDock::FbMainDock(QWidget *parent)
addWidget(m_head);
addWidget(m_code);
- connect(m_text->page(), SIGNAL(log(QXmlParseException)), parent, SLOT(log(QXmlParseException)));
+ connect(m_text->page(), SIGNAL(warning(int,int,QString)), parent, SLOT(warning(int,int,QString)));
+ connect(m_text->page(), SIGNAL(error(int,int,QString)), parent, SLOT(error(int,int,QString)));
+ connect(m_text->page(), SIGNAL(fatal(int,int,QString)), parent, SLOT(fatal(int,int,QString)));
connect(m_text->page(), SIGNAL(status(QString)), parent, SLOT(status(QString)));
connect(m_head, SIGNAL(status(QString)), parent, SLOT(status(QString)));
connect(m_code, SIGNAL(status(QString)), parent, SLOT(status(QString)));