summaryrefslogtreecommitdiff
path: root/cui/source/options/connpoolconfig.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cui/source/options/connpoolconfig.cxx')
-rw-r--r--cui/source/options/connpoolconfig.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/cui/source/options/connpoolconfig.cxx b/cui/source/options/connpoolconfig.cxx
index 6caab1652ff1..41366d10314e 100644
--- a/cui/source/options/connpoolconfig.cxx
+++ b/cui/source/options/connpoolconfig.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -110,7 +110,7 @@ namespace offapp
DriverPoolingSettings aSettings;
// first get all the drivers register at the driver manager
ODriverEnumeration aEnumDrivers;
- for ( ODriverEnumeration::const_iterator aLoopDrivers = aEnumDrivers.begin();
+ for ( ODriverEnumeration::const_iterator aLoopDrivers = aEnumDrivers.begin();
aLoopDrivers != aEnumDrivers.end();
++aLoopDrivers
)
@@ -134,7 +134,7 @@ namespace offapp
// look if we (resp. the driver manager) know this driver
// doing O(n) search here, which is expensive, but this doesn't matter in this small case ...
DriverPoolingSettings::iterator aLookup;
- for ( aLookup = aSettings.begin();
+ for ( aLookup = aSettings.begin();
aLookup != aSettings.end();
++aLookup
)
@@ -142,7 +142,7 @@ namespace offapp
break;
if (aLookup == aSettings.end())
- { // do not know the driver - add it
+ { // do not know the driver - add it
aSettings.push_back(DriverPooling(sThisDriverName, sal_False, 120));
// and the position of the new entry
@@ -192,7 +192,7 @@ namespace offapp
OConfigurationNode aThisDriverSettings;
const DriverPoolingSettings& rNewSettings = pDriverSettings->getSettings();
- for ( DriverPoolingSettings::const_iterator aLoop = rNewSettings.begin();
+ for ( DriverPoolingSettings::const_iterator aLoop = rNewSettings.begin();
aLoop != rNewSettings.end();
++aLoop
)
@@ -218,7 +218,7 @@ namespace offapp
}
//........................................................................
-} // namespace offapp
+} // namespace offapp
//........................................................................