sysstatemgmt/systemstarter/src/StartupSplashScreen.cpp
branchRCL_3
changeset 22 8cb079868133
parent 21 ccb4f6b3db21
--- a/sysstatemgmt/systemstarter/src/StartupSplashScreen.cpp	Tue Aug 31 16:29:05 2010 +0300
+++ b/sysstatemgmt/systemstarter/src/StartupSplashScreen.cpp	Wed Sep 01 12:34:26 2010 +0100
@@ -1,4 +1,4 @@
-// Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
+// Copyright (c) 2005-2009 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,14 +93,12 @@
    
   	// Define a splash property to control display and removal of
   	// the splash screen on system start up.    
- 	// Ignoring the error value.
-	TInt err = RProperty::Define(KSplashPropertyKey, RProperty::EInt, 
+ 	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;	 
-	err = splash.Create(*iSplashPath, KNullDesC);
+	TInt err = splash.Create(*iSplashPath, KNullDesC);
 	if (err == KErrNone)
 		{
 		splash.Resume();