summaryrefslogtreecommitdiffstats
path: root/stoc/source/registry_tdprovider/rdbtdp_tdenumeration.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'stoc/source/registry_tdprovider/rdbtdp_tdenumeration.cxx')
-rw-r--r--stoc/source/registry_tdprovider/rdbtdp_tdenumeration.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/stoc/source/registry_tdprovider/rdbtdp_tdenumeration.cxx b/stoc/source/registry_tdprovider/rdbtdp_tdenumeration.cxx
index 7104fbf57d92..9feae0da9ef0 100644
--- a/stoc/source/registry_tdprovider/rdbtdp_tdenumeration.cxx
+++ b/stoc/source/registry_tdprovider/rdbtdp_tdenumeration.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.
@@ -168,7 +169,7 @@ TypeDescriptionEnumerationImpl::createInstance(
"- Caught InvalidRegistryException!" );
}
- it++;
+ ++it;
}
if ( !bOpenKeySucceeded )
@@ -242,7 +243,7 @@ TypeDescriptionEnumerationImpl::~TypeDescriptionEnumerationImpl()
"- Caught exception!" );
}
- it++;
+ ++it;
}
g_moduleCount.modCnt.release( &g_moduleCount.modCnt );
@@ -289,8 +290,8 @@ TypeDescriptionEnumerationImpl::nextTypeDescription()
return xTD;
throw container::NoSuchElementException(
- rtl::OUString::createFromAscii(
- "No further elements in enumeration!" ),
+ rtl::OUString(
+ RTL_CONSTASCII_USTRINGPARAM("No further elements in enumeration!") ),
static_cast< cppu::OWeakObject * >( this ) );
}
@@ -641,3 +642,4 @@ TypeDescriptionEnumerationImpl::queryNext()
} // namespace stoc_rdbtdp
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */