]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QCharacterDialog.h
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QCharacterDialog.h
index 9b755430e84a79580a4f3e66eb371300a5ba0dc2..135715483ec2b765a5ffed416640f8d282ab2492 100644 (file)
@@ -1,38 +1,39 @@
+// -*- C++ -*-
 /**
  * \file QCharacterDialog.h
- * Copyright 2001 the LyX Team
- * see the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Edwin Leuven
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef QCHARACTERDIALOG_H
 #define QCHARACTERDIALOG_H
 
-#include <config.h>
+#ifdef __GNUG__
+#pragma interface
+#endif
 
-#include "ui/QCharacterDialogBase.h"
 #include "QCharacter.h"
+#include "ui/QCharacterDialogBase.h"
 
 #include <qevent.h>
 #include <qcheckbox.h>
 #include <qcombobox.h>
 
 class LyXFont;
-class QCharacterDialog : public QCharacterDialogBase
-{ Q_OBJECT
 
+class QCharacterDialog : public QCharacterDialogBase {
+       Q_OBJECT
 public:
        QCharacterDialog(QCharacter * form);
-       
 protected:
        void closeEvent(QCloseEvent * e);
-
 private:
        QCharacter * form_;
-
 protected slots:
        void change_adaptor();
 };