summaryrefslogtreecommitdiff
path: root/cui/source/dialogs/cuiimapwnd.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cui/source/dialogs/cuiimapwnd.cxx')
-rw-r--r--cui/source/dialogs/cuiimapwnd.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/cui/source/dialogs/cuiimapwnd.cxx b/cui/source/dialogs/cuiimapwnd.cxx
index 950d400bb42e..f04dc998bedd 100644
--- a/cui/source/dialogs/cuiimapwnd.cxx
+++ b/cui/source/dialogs/cuiimapwnd.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -25,9 +26,6 @@
*
************************************************************************/
-// MARKER(update_precomp.py): autogen include statement, do not remove
-#include "precompiled_cui.hxx"
-
#include <tools/urlobj.hxx>
#include <vcl/msgbox.hxx>
#include <vcl/help.hxx>
@@ -87,11 +85,13 @@ URLDlg::URLDlg( Window* pWindow, const String& rURL, const String& rAlternativeT
maEdtDescription.SetText( rDescription );
maEdtName.SetText( rName );
- for( String* pStr = rTargetList.First(); pStr; pStr = rTargetList.Next() )
- maCbbTargets.InsertEntry( *pStr );
+ for( size_t i = 0, n = rTargetList.size(); i < n; ++i )
+ maCbbTargets.InsertEntry( *rTargetList[ i ] );
if( !rTarget.Len() )
maCbbTargets.SetText( String::CreateFromAscii( "_self" ) );
else
maCbbTargets.SetText( rTarget );
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */