mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix compiler warning
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38048 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
527b28c933
commit
7a9250df6a
@ -2481,9 +2481,9 @@ void PrefUserInterface::apply(LyXRC & rc) const
|
||||
|
||||
void PrefUserInterface::update(LyXRC const & rc)
|
||||
{
|
||||
unsigned int iconset = 0;
|
||||
int iconset = 0;
|
||||
if (!rc.icon_set.empty()) {
|
||||
for ( ; iconset < icon_names_.size(); ++iconset) {
|
||||
for ( ; iconset < int(icon_names_.size()); ++iconset) {
|
||||
if (rc.icon_set == icon_names_[iconset].first)
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user