]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/Menubar_pimpl.C
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / Menubar_pimpl.C
index 1dbe51efa0f268f7d150d65073bcf59d0a21f81d..b4c70ced499d1a3d04f53da77fe6014124eda778 100644 (file)
@@ -1,15 +1,15 @@
 /**
- * \file Menubar_pimpl.C
- * Copyright 1999-2001 The LyX Team.
- * See the file COPYING.
+ * \file qt2/Menubar_pimpl.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author  Lars Gullik Bjønnes, larsbj@lyx.org
+ * \author  Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
 
-#include <algorithm>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "QtView.h"
 #include "QLPopupMenu.h"
+
 #include <qmenubar.h>
 #include <qcursor.h>
+
+#include <algorithm>
+
 using std::endl;
 using std::vector;
 using std::max;
@@ -39,7 +41,8 @@ using std::min;
 using std::for_each;
 using std::pair;
 
-Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mbe) 
+
+Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mbe)
        : owner_(static_cast<QtView*>(view)), menubackend_(mbe)
 {
        Menu::const_iterator m = mbe.getMenubar().begin();
@@ -54,8 +57,8 @@ Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mbe)
 
 void Menubar::Pimpl::openByName(string const & name)
 {
-       NameMap::const_iterator const cit = name_map_.find(name); 
-       if (cit == name_map_.end()) 
+       NameMap::const_iterator const cit = name_map_.find(name);
+       if (cit == name_map_.end())
                return;
 
        // this will have to do I'm afraid.