]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/XMiniBuffer.C
Tiny clean-ups.
[lyx.git] / src / frontends / xforms / XMiniBuffer.C
index 25505d4f35900cce298e6ad44fc9ac40ef505503..aa0216888b6320c113be41e26245ed3fc2dfba41 100644 (file)
@@ -1,38 +1,32 @@
-// -*- C++ -*-
 /**
  * \file XMiniBuffer.C
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
  * \author Lars
- * \author Asger and Juergen
+ * \author Asger and JΓΌrgen
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
 #include "XMiniBuffer.h"
-#include "ControlCommandBuffer.h"
+
 #include "freebrowser.h"
 #include "xforms_helpers.h"
 
-#include "gettext.h"
+#include "controllers/ControlCommandBuffer.h"
 
 #include "frontends/Timeout.h"
 
-#include "support/lstrings.h"
+#include "gettext.h"
 
 #include <boost/bind.hpp>
 
-#include <vector>
 
-#ifndef CXX_GLOBAL_CSTD
-using std::isprint;
-#endif
-
-using std::endl;
 using std::vector;
+using std::string;
 
 
 namespace {
@@ -53,7 +47,7 @@ XMiniBuffer::XMiniBuffer(ControlCommandBuffer & control,
 {
        input_ = create_input_box(this, FL_NORMAL_INPUT, x, y, h, w);
        freebrowser_.reset(create_freebrowser(this), fl_free_freebrowser);
-       
+
        info_timer_.reset(new Timeout(1500));
        idle_timer_.reset(new Timeout(6000));
        info_con = info_timer_->timeout.connect(boost::bind(&XMiniBuffer::info_timeout, this));