]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/checkedwidgets.h
Rename .C ==> .cpp for files in src/frontends/qt4, part one
[lyx.git] / src / frontends / qt4 / checkedwidgets.h
index 9d72d1aa4d6451e5c066204373c4824ff44c7ec9..823e095265ad6cdd762a89012ca397201d50b0dd 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 /**
- * \file qt4/checkedwidgets.h
+ * \file qt4/CheckedLineEdit.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
@@ -9,24 +9,23 @@
  * Full author contact details are available in file CREDITS.
  */
 
-#ifndef CHECKEDWIDGETS_H
-#define CHECKEDWIDGETS_H
+#ifndef CHECKEDLINEEDIT_H
+#define CHECKEDLINEEDIT_H
 
 #include "BCView.h"
-//#include <QLabel>
 
-class QLabel;
+class QWidget;
 class QLineEdit;
 
 namespace lyx {
 namespace frontend {
 
 void addCheckedLineEdit(BCView & bcview,
-                       QLineEdit * input, QLabel * label = 0);
+       QLineEdit * input, QWidget * label = 0);
 
 class CheckedLineEdit : public CheckedWidget {
 public:
-       CheckedLineEdit(QLineEdit * input, QLabel * label = 0);
+       CheckedLineEdit(QLineEdit * input, QWidget * label = 0);
 
 private:
        ///
@@ -34,10 +33,10 @@ private:
 
        ///
        QLineEdit * input_;
-       QLabel * label_;
+       QWidget * label_;
 };
 
 } // namespace frontend
 } // namespace lyx
 
-#endif // CHECKEDWIDGETS_H
+#endif // CHECKEDLINEEDIT_H