]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormNote.C
Tiny clean-ups.
[lyx.git] / src / frontends / xforms / FormNote.C
index 9d0b192b2f400ff75cd2d5884da131eff0a6a990..3db5352fc54f1fc1c2810f82ee893b2b9fc510ee 100644 (file)
@@ -38,7 +38,7 @@ void FormNote::build()
 
        note_gui_tokens(ids_, gui_names_);
 
-       for (int i = 0; i < gui_names_.size(); ++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 < gui_names_.size(); ++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());
                }