]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QCommandEdit.C
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QCommandEdit.C
index bdedfd34c3f884c8372ffae5df982e8f904a812c..cc9836f61795ed6b7226cd202ba6ec6ce64c964f 100644 (file)
@@ -1,44 +1,49 @@
 /**
  * \file QCommandEdit.C
- * Copyright 2002 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 "QCommandEdit.h"
+
+
 QCommandEdit::QCommandEdit(QWidget * parent)
        : QLineEdit(parent)
-{ 
-       setFocusPolicy(QWidget::ClickFocus); 
+{
+       setFocusPolicy(QWidget::ClickFocus);
 }
 
 
 void QCommandEdit::keyPressEvent(QKeyEvent * e)
 {
        switch (e->key()) {
-               case Key_Escape:
-                       emit escapePressed();
-                       break;
-               case Key_Up:
-                       emit upPressed();
-                       break;
+       case Key_Escape:
+               emit escapePressed();
+               break;
 
-               case Key_Down:
-                       emit downPressed();
+       case Key_Up:
+               emit upPressed();
                        break;
 
-               case Key_Right:
-                       if (cursorPosition() == text().length())
-                               emit rightPressed();
-                       else
-                               QLineEdit::keyPressEvent(e);
-                       break;
+       case Key_Down:
+               emit downPressed();
+               break;
 
-               default:
+       case Key_Right:
+               if (cursorPosition() == text().length())
+                       emit rightPressed();
+               else
                        QLineEdit::keyPressEvent(e);
-                       break;
+               break;
+
+       default:
+               QLineEdit::keyPressEvent(e);
+               break;
        }
 }