]> git.lyx.org Git - features.git/blobdiff - src/frontends/qt2/QSearchDialog.h
Replace LString.h with support/std_string.h,
[features.git] / src / frontends / qt2 / QSearchDialog.h
index 691a41ae71ed49aa3917cf1b17c2092c80ac7b1d..e0fe998f7c37e7d50c7ee5557a4afa001aa54b09 100644 (file)
@@ -1,36 +1,36 @@
+// -*- C++ -*-
 /**
  * \file QSearchDialog.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 Edwin Leuven
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef QSEARCHDIALOG_H
 #define QSEARCHDIALOG_H
 
-#include <config.h>
 
-#include "QSearch.h"
 #include "ui/QSearchDialogBase.h"
+#include "support/std_string.h"
 
+class QSearch;
 class QCloseEvent;
 class QComboBox;
 
-class QSearchDialog : public QSearchDialogBase
-{ Q_OBJECT
-
+class QSearchDialog : public QSearchDialogBase {
+       Q_OBJECT
 public:
        QSearchDialog(QSearch * form);
 
        virtual void show();
-
 protected slots:
        void findChanged();
        void findClicked();
        void replaceClicked();
        void replaceallClicked();
-
 protected:
        virtual void closeEvent(QCloseEvent * e);
 
@@ -39,7 +39,6 @@ private:
        void remember(string const & find, QComboBox & combo);
 
        QSearch * form_;
-
 };
 
 #endif // QSEARCHDIALOG_H