Cosmetic fix to FormNote.C. Left tooltip text alone :-)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7578 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Martin Vermeer 2003-08-21 11:26:07 +00:00
parent 6ef3c44b64
commit cd7a9690d1
2 changed files with 7 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2003-08-21 Martin Vermeer <martin.vermeer@hut.fi>
* FormNote.C: cosmetic fix.
2003-08-17 Martin Vermeer <martin.vermeer@hut.fi>
* FormDocument.C: make the layout file's "Other" class option

View File

@ -38,9 +38,6 @@ void FormNote::build()
note_gui_tokens(ids_, gui_names_);
for (int i = 0; i < 3; ++i) {
}
for (int i = 0; i < 3; ++i) {
fl_addto_choice(dialog_->choice_type, gui_names_[i].c_str());
}
@ -60,9 +57,9 @@ void FormNote::update()
{
string type(controller().params().type);
for (int i = 0; i < 3; ++i) {
if (type == ids_[i])
fl_set_choice_text(dialog_->choice_type, gui_names_[i].c_str());
}
if (type == ids_[i])
fl_set_choice_text(dialog_->choice_type, gui_names_[i].c_str());
}
}