]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QTocDialog.h
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QTocDialog.h
index 72187d203685289a13242200c3eae30857a9762e..474427fac04e8e375cf2c0dbd9452a2d8d76ff4c 100644 (file)
@@ -1,34 +1,37 @@
+// -*- C++ -*-
 /**
  * \file QTocDialog.h
- * 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
  */
 
 #ifndef QTOCDIALOG_H
 #define QTOCDIALOG_H
 
+#ifdef __GNUG__
+#pragma interface
+#endif
+
 #include "ui/QTocDialogBase.h"
 
 class QToc;
 
-class QTocDialog : public QTocDialogBase
-{ Q_OBJECT
-
+class QTocDialog : public QTocDialogBase {
+       Q_OBJECT
 public:
        QTocDialog(QToc * form);
        ~QTocDialog();
-
 public slots:
        void activate_adaptor(int);
        void depth_adaptor(int);
        void select_adaptor(QListViewItem *);
        void update_adaptor();
-
 protected:
        void closeEvent(QCloseEvent * e);
-
 private:
        QToc * form_;
 };