From 57444c86d274e5602218d1163810fe586aec02c0 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Wed, 18 Jan 2012 13:54:24 +0100 Subject: sw: SwAddPrinterTabPage::SetFax: fix STL conversion regression from 166053646aff23f93ad3704cde05b9bda20e171c --- sw/source/ui/config/optpage.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sw') diff --git a/sw/source/ui/config/optpage.cxx b/sw/source/ui/config/optpage.cxx index 3952f4078c46..f08b48790e54 100644 --- a/sw/source/ui/config/optpage.cxx +++ b/sw/source/ui/config/optpage.cxx @@ -508,7 +508,9 @@ void SwAddPrinterTabPage::SetFax( const std::vector& rFaxLst ) { aFaxLB.InsertEntry(sNone); for(size_t i = 0; i < rFaxLst.size(); ++i) - aFaxLB.InsertEntry(rFaxLst[0]); + { + aFaxLB.InsertEntry(rFaxLst[i]); + } aFaxLB.SelectEntryPos(0); } -- cgit