]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/Dialogs.C
various fixes
[lyx.git] / src / frontends / qt2 / Dialogs.C
index 9b4e8e3058f477a4550071c026f5e53ed87b85fd..9aeb6129f0e8a9731f2a05643e3c1e7af38e528b 100644 (file)
 #endif
 
 // the dialog definitions
-#include "QCitationDialog.h"
 #include "QAboutDialog.h"
+#include "QCitationDialog.h"
+#include "QIndexDialog.h"
+#include "QURLDialog.h"
  
 // the controller interface
 #include "QAbout.h"
 #include "QSearch.h"
 #include "QSplash.h"
 #include "QTabularCreate.h"
+#include "QURL.h"
 
 #include "QtLyXView.h" 
 #include "Dialogs.h"
 #include "BufferView.h"
 #include "buffer.h"
-#include "qt2BC.h"
+#include "Qt2BC.h"
 
 // xforms implementations
 #include "../xforms/FormError.h"
@@ -43,6 +46,7 @@
 #include "controllers/ControlCitation.h"
 #include "controllers/ControlIndex.h"
 #include "controllers/ControlSplash.h"
+#include "controllers/ControlUrl.h" 
 #if 0
 #include "controllers/ControlCopyright.h"
 #include "controllers/ControlCredits.h"
@@ -69,7 +73,6 @@
 #include "controllers/ControlTabularCreate.h"
 #include "controllers/ControlThesaurus.h"
 #include "controllers/ControlToc.h"
-#include "controllers/ControlUrl.h"
 #include "controllers/ControlVCLog.h"
 #endif
 
@@ -84,9 +87,10 @@ Dialogs::Dialogs(LyXView * lv)
        splash_.reset(new QSplash(lv, this));
 
        // dialogs that have been converted to new scheme
-       add(new GUICitation<QCitation, qt2BC>(*lv, *this));
-       add(new GUIAboutlyx<QAbout, qt2BC>(*lv, *this));
-       add(new GUIIndex<QIndex, qt2BC>(*lv, *this));
+       add(new GUICitation<QCitation, Qt2BC>(*lv, *this));
+       add(new GUIAboutlyx<QAbout, Qt2BC>(*lv, *this));
+       add(new GUIIndex<QIndex, Qt2BC>(*lv, *this));
+       add(new GUIUrl<QURL, Qt2BC>(*lv, *this));
 
        // reduce the number of connections needed in
        // dialogs by a simple connection here.