]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/DialogView.cpp
GuiDocument.cpp: add linebreaks to error messages
[lyx.git] / src / frontends / qt4 / DialogView.cpp
1 /**
2  * \file DialogView.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "DialogView.h"
14
15 #include "GuiView.h"
16 #include "qt_helpers.h"
17
18 #include <QShowEvent>
19
20 using namespace std;
21
22 namespace lyx {
23 namespace frontend {
24
25 DialogView::DialogView(GuiView & lv, string const & name,
26         QString const & title)
27         : QDialog(&lv), Dialog(lv, name, "LyX: " + title)
28 {}
29
30 } // namespace frontend
31 } // namespace lyx
32
33 #include "DialogView_moc.cpp"