]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormNote.C
Tiny clean-ups.
[lyx.git] / src / frontends / xforms / FormNote.C
index b60e01f6b09896122653dd5796813643e1230185..3db5352fc54f1fc1c2810f82ee893b2b9fc510ee 100644 (file)
@@ -8,7 +8,6 @@
  * Full author contact details are available in file CREDITS.
  */
 
-
 #include <config.h>
 
 #include "FormNote.h"
@@ -22,7 +21,8 @@
 
 #include "lyx_forms.h"
 
-using std::vector;
+
+using std::string;
 
 
 typedef FormController<ControlNote, FormView<FD_note> > base_class;
@@ -38,7 +38,7 @@ void FormNote::build()
 
        note_gui_tokens(ids_, gui_names_);
 
-       for (int i = 0; i < 3; ++i) {   
+       for (string::size_type i = 0; i < gui_names_.size(); ++i) {
                fl_addto_choice(dialog_->choice_type, gui_names_[i].c_str());
        }
 
@@ -56,7 +56,7 @@ void FormNote::build()
 void FormNote::update()
 {
        string type(controller().params().type);
-       for (int i = 0; i < 3; ++i) {   
+       for (string::size_type i = 0; i < gui_names_.size(); ++i) {
                if (type == ids_[i])
                        fl_set_choice_text(dialog_->choice_type, gui_names_[i].c_str());
                }
@@ -68,4 +68,3 @@ void FormNote::apply()
        int i = fl_get_choice(dialog_->choice_type);
        controller().params().type = ids_[i - 1];
 }
-