From 6e4894c2019dc9c442dce738d3f0423d8d74973f Mon Sep 17 00:00:00 2001 From: Bjoern Michaelsen Date: Tue, 23 Aug 2011 15:06:53 +0200 Subject: recreated tag libreoffice-3.3.3.1 which had these commits: commit d7e53cee633ec1c583c72e6d9c01122195c4383c (tag: refs/tags/libreoffice-3.3.3.1) Author: Petr Mladek Date: Tue May 31 17:39:04 2011 +0200 Version 3.3.3.1, tag libreoffice-3.3.3.1 (3.3.3-rc1) --- .../win32/customactions/reg4msdoc/registryvalueimpl.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.cxx') 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) { -- cgit v1.2.3