mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
fix another warning
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30518 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
91d7e3b191
commit
0e5695f933
@ -481,7 +481,7 @@ void GuiGraphics::paramsToDialog(InsetGraphicsParams const & igp)
|
||||
rtXunit->clear();
|
||||
rtYunit->clear();
|
||||
|
||||
for (int i = 0; i < bb_size; i++) {
|
||||
for (size_t i = 0; i < bb_size; i++) {
|
||||
lbXunit->addItem(qt_(bb_units_gui[i]),
|
||||
toqstr(bb_units[i]));
|
||||
lbYunit->addItem(qt_(bb_units_gui[i]),
|
||||
@ -626,7 +626,7 @@ void GuiGraphics::paramsToDialog(InsetGraphicsParams const & igp)
|
||||
|
||||
origin->clear();
|
||||
|
||||
for (int i = 0; i < rorigin_size; i++) {
|
||||
for (size_t i = 0; i < rorigin_size; i++) {
|
||||
origin->addItem(qt_(rorigin_gui_strs[i]),
|
||||
toqstr(rorigin_lyx_strs[i]));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user