diff -r d6b9e89d80a3 -r 0f7422b6b602 sysstatemgmt/systemstarter/src/StartupSplashScreen.cpp --- a/sysstatemgmt/systemstarter/src/StartupSplashScreen.cpp Tue Aug 10 14:46:45 2010 +0300 +++ b/sysstatemgmt/systemstarter/src/StartupSplashScreen.cpp Mon Aug 23 14:47:20 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();