summaryrefslogtreecommitdiff
path: root/setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.cxx
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-08-23 15:06:53 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-08-23 15:06:53 +0200
commit6e4894c2019dc9c442dce738d3f0423d8d74973f (patch)
treee3734a287f4c02ecb120e54aa32141f95f484236 /setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.cxx
parentb84e1626f6fcb29fe784933dee51079c3447a50c (diff)
recreated tag libreoffice-3.3.3.1 which had these commits:
commit d7e53cee633ec1c583c72e6d9c01122195c4383c (tag: refs/tags/libreoffice-3.3.3.1) Author: Petr Mladek <pmladek@suse.cz> Date: Tue May 31 17:39:04 2011 +0200 Version 3.3.3.1, tag libreoffice-3.3.3.1 (3.3.3-rc1)
Notes
split repo tag: components_libreoffice-3.3.3.1 split repo tag: components_libreoffice-3.3.4.1
Diffstat (limited to 'setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.cxx')
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.cxx b/setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.cxx
index d9012fcd087d..71501a8a6ce9 100644
--- a/setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.cxx
+++ b/setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.cxx
@@ -48,7 +48,7 @@ RegistryValueImpl::RegistryValueImpl(const std::wstring& Name, const std::wstrin
*/
RegistryValueImpl::RegistryValueImpl(const std::wstring& Name, const std::string& Value) :
m_Name(Name),
- m_Type(REG_SZ),
+ m_Type(REG_SZ),
m_IntData(0)
{
m_StringData = AnsiToUnicodeString(Value);
@@ -118,7 +118,7 @@ const void* RegistryValueImpl::GetDataBuffer() const
*/
std::wstring RegistryValueImpl::GetDataAsUniString() const
{
- assert(REG_SZ == m_Type);
+ assert(REG_SZ == m_Type);
return m_StringData;
}
@@ -130,13 +130,13 @@ std::string RegistryValueImpl::GetDataAsAnsiString() const
assert(REG_SZ == m_Type);
return UnicodeToAnsiString(m_StringData);
}
-
+
//--------------------------------------------
-/** Returns the data as number
+/** Returns the data as number
*/
int RegistryValueImpl::GetDataAsInt() const
{
- assert(REG_DWORD == m_Type);
+ assert(REG_DWORD == m_Type);
return m_IntData;
}
@@ -155,7 +155,7 @@ int RegistryValueImpl::GetType() const
//--------------------------------------------
-/** Set a new name
+/** Set a new name
*/
void RegistryValueImpl::SetName(const std::wstring& NewName)
{
@@ -163,7 +163,7 @@ void RegistryValueImpl::SetName(const std::wstring& NewName)
}
//--------------------------------------------
-/**
+/**
*/
void RegistryValueImpl::SetValue(const std::wstring& NewValue)
{
@@ -172,7 +172,7 @@ void RegistryValueImpl::SetValue(const std::wstring& NewValue)
}
//--------------------------------------------
-/**
+/**
*/
void RegistryValueImpl::SetValue(const std::string& NewValue)
{