[Libreoffice-commits] .: Branch 'libreoffice-3-4' - desktop/win32
Andras Timar
timar at kemper.freedesktop.org
Sat Apr 30 06:32:20 PDT 2011
desktop/win32/source/setup/setup.cpp | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
New commits:
commit acb9b419de15b1ffa42e678a8fb978799cf2089a
Author: Andras Timar <atimar at novell.com>
Date: Sat Apr 30 15:31:56 2011 +0200
typo fix + add a line to log file
diff --git a/desktop/win32/source/setup/setup.cpp b/desktop/win32/source/setup/setup.cpp
index 073488a..ffa9df9 100644
--- a/desktop/win32/source/setup/setup.cpp
+++ b/desktop/win32/source/setup/setup.cpp
@@ -835,10 +835,10 @@ boolean SetupAppX::LaunchInstaller( LPCTSTR pParam )
PROCESS_INFORMATION aPI;
Log( TEXT( " Will install using <%s>\r\n" ), sMsiPath );
- Log( TEXT( " Prameters are: %s\r\n" ), pParam );
+ Log( TEXT( " Parameters are: %s\r\n" ), pParam );
OutputDebugStringFormat( TEXT( " Will install using <%s>\r\n" ), sMsiPath );
- OutputDebugStringFormat( TEXT( " Prameters are: %s\r\n" ), pParam );
+ OutputDebugStringFormat( TEXT( " Parameters are: %s\r\n" ), pParam );
ZeroMemory( (void*)&aPI, sizeof( PROCESS_INFORMATION ) );
ZeroMemory( (void*)&aSUI, sizeof( STARTUPINFO ) );
@@ -1898,6 +1898,7 @@ boolean SetupAppX::IsPatchInstalled( TCHAR* pBaseDir, TCHAR* pFileName )
boolean SetupAppX::InstallRuntimes( TCHAR *sProductCode, TCHAR *sRuntimePath )
{
INSTALLSTATE nRet = MsiQueryProductState( sProductCode );
+ Log( TEXT( "MsiQueryProductState returned <%d>\r\n" ), nRet );
OutputDebugStringFormat( TEXT( "MsiQueryProductState returned <%d>\r\n" ), nRet );
if ( nRet == INSTALLSTATE_DEFAULT )
return true;
More information about the Libreoffice-commits
mailing list