]> git.lyx.org Git - features.git/blobdiff - src/frontends/xforms/Dialogs.C
Moving to have the Tabular-Layout-Form tabbed and in the GUI-indep directory.
[features.git] / src / frontends / xforms / Dialogs.C
index 13f756ef09ffc57a14df3df42b1576db4590c51b..c13f97bf9ffc15719276eb37a5f725b1330255a8 100644 (file)
@@ -2,10 +2,11 @@
 #include FORMS_H_LOCATION
 
 #include "Dialogs.h"
+#include "FormCitation.h"
 #include "FormCopyright.h"
-#include "FormPrint.h"
 #include "FormPreferences.h"
-#include "FormCitation.h"
+#include "FormPrint.h"
+#include "FormTabular.h"
 
 #ifdef __GNUG__
 #pragma implementation
 
 Dialogs::Dialogs(LyXView * lv)
 {
+       dialogs_.push_back(new FormCitation(lv, this));
        dialogs_.push_back(new FormCopyright(lv, this));
-       dialogs_.push_back(new FormPrint(lv, this));
        dialogs_.push_back(new FormPreferences(lv, this));
-       dialogs_.push_back(new FormCitation(lv, this));
+       dialogs_.push_back(new FormPrint(lv, this));
+       dialogs_.push_back(new FormTabular(lv, this));
 
        // reduce the number of connections needed in
        // dialogs by a simple connection here.