diff options
-rw-r--r-- | sw/source/ui/config/optpage.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
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<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); } |