diff -r 1ddbe54d0645 -r ccb4f6b3db21 sysstatemgmt/systemstarter/src/StartupSplashScreen.cpp --- a/sysstatemgmt/systemstarter/src/StartupSplashScreen.cpp Thu Aug 19 11:09:10 2010 +0300 +++ b/sysstatemgmt/systemstarter/src/StartupSplashScreen.cpp Tue Aug 31 16:29:05 2010 +0300 @@ -1,4 +1,4 @@ -// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). +// Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies). // All rights reserved. // This component and the accompanying materials are made available // under the terms of "Eclipse Public License v1.0" @@ -93,12 +93,14 @@ // Define a splash property to control display and removal of // the splash screen on system start up. - RProperty::Define(KSplashPropertyKey, RProperty::EInt, + // Ignoring the error value. + TInt err = RProperty::Define(KSplashPropertyKey, RProperty::EInt, KSplashReadPolicy, KSplashWritePolicy); - + DEBUGPRINT2(_L("Defining the KSplashPropertyKey completed with %d"), err); + // Create and set off the splash screen process. RProcess splash; - TInt err = splash.Create(*iSplashPath, KNullDesC); + err = splash.Create(*iSplashPath, KNullDesC); if (err == KErrNone) { splash.Resume();