]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/DropDown.C
fix crash with "save as"
[lyx.git] / src / frontends / xforms / DropDown.C
index 44dcd6e49ff67d3e7c1c02e9b5b8f531f241f57d..8fc54eb6773677852d27a1e1465b9cf43e670660 100644 (file)
@@ -1,9 +1,11 @@
 /**
  * \file DropDown.C
- * 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 John Levon, moz@compsoc.man.ac.uk
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
@@ -71,7 +73,7 @@ void DropDown::select(vector<string> const & choices, int x, int y, int w)
        if (choices.empty())
                return;
 
-       fl_set_form_geometry(form_, x, y-100, w, 100);
+       fl_set_form_geometry(form_, x, y - 100, w, 100);
        fl_clear_browser(browser_);
 
        vector<string>::const_iterator cit = choices.begin();