Kaydet (Commit) 57444c86 authored tarafından Michael Stahl's avatar Michael Stahl

sw: SwAddPrinterTabPage::SetFax: fix STL conversion

regression from 16605364
üst 5a8a1d02
......@@ -508,7 +508,9 @@ void SwAddPrinterTabPage::SetFax( const std::vector<String>& rFaxLst )
{
aFaxLB.InsertEntry(sNone);
for(size_t i = 0; i < rFaxLst.size(); ++i)
aFaxLB.InsertEntry(rFaxLst[0]);
{
aFaxLB.InsertEntry(rFaxLst[i]);
}
aFaxLB.SelectEntryPos(0);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment