diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-04-14 23:22:53 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-04-18 07:36:51 +0200 |
commit | a6f8de662e0e03e3ac2160823dc02b84fa6ba091 (patch) | |
tree | b7073db46fdf8faf77096b5a33664f1b929a0e73 /sw | |
parent | c6ba1deab0f04c05e8554caaf563c4349a4005af (diff) |
sal_uInt16 to int
Change-Id: I8a27d7fc2cbdb3093e7955b80642675dc9b8ab55
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/dbui/addresslistdialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/dbui/addresslistdialog.cxx b/sw/source/ui/dbui/addresslistdialog.cxx index 88ad0cf243fa..e835f4f72d2f 100644 --- a/sw/source/ui/dbui/addresslistdialog.cxx +++ b/sw/source/ui/dbui/addresslistdialog.cxx @@ -492,7 +492,7 @@ IMPL_STATIC_LINK(SwAddressListDialog, StaticListBoxSelectHdl_Impl, SvTreeListEnt pThis->m_pListLB->SetEntryText(pThis->m_sConnecting, pSelect, ITEMID_TABLE - 1); // allow painting of the new entry pThis->m_pListLB->Window::Invalidate(INVALIDATE_UPDATE); - for (sal_uInt16 i = 0; i < 10; i++) + for (int i = 0; i < 10; ++i) Application::Reschedule(); } |