]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QTocDialog.C
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QTocDialog.C
index a2a4e73a763fe19523ebe29a264d479a6c73ac85..7c01d81548935997de1c6e77d93abdfaabca547e 100644 (file)
@@ -1,19 +1,26 @@
 /**
  * \file QTocDialog.C
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
-#include "QTocDialog.h"
-#include "Dialogs.h"
+
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
 #include "QToc.h"
+#include "QTocDialog.h"
 
 #include <qlistview.h>
 #include <qpushbutton.h>
 
+
 QTocDialog::QTocDialog(QToc * form)
        : QTocDialogBase(0, 0, false, 0),
        form_(form)
@@ -21,19 +28,19 @@ QTocDialog::QTocDialog(QToc * form)
        connect(closePB, SIGNAL(clicked()),
                form, SLOT(slotClose()));
 }
+
 
 QTocDialog::~QTocDialog()
 {
 }
+
 
 void QTocDialog::activate_adaptor(int)
 {
        form_->updateToc(form_->depth_);
 }
+
+
 void QTocDialog::depth_adaptor(int depth)
 {
        form_->set_depth(depth);
@@ -51,7 +58,7 @@ void QTocDialog::update_adaptor()
        form_->update();
 }
 
+
 void QTocDialog::closeEvent(QCloseEvent * e)
 {
        form_->slotWMHide();