contentpublishingsrv/contentharvester/contentharvesterserver/src/contentharvesterserver.cpp
equal
deleted
inserted
replaced
265 void CContentHarvesterServer::CContentHarvesterAppUi::ConstructL() |
265 void CContentHarvesterServer::CContentHarvesterAppUi::ConstructL() |
266 { |
266 { |
267 CEikAppUi::BaseConstructL( ENoAppResourceFile|ENoScreenFurniture ); |
267 CEikAppUi::BaseConstructL( ENoAppResourceFile|ENoScreenFurniture ); |
268 } |
268 } |
269 |
269 |
270 // --------------------------------------------------------------------------- |
|
271 // |
|
272 // --------------------------------------------------------------------------- |
|
273 // |
|
274 TErrorHandlerResponse CContentHarvesterServer::CContentHarvesterAppUi::HandleError( TInt aError, |
|
275 const SExtendedError& /*aExtErr*/, |
|
276 TDes& /*aErrorText*/, |
|
277 TDes& /*aContextText*/ ) |
|
278 { |
|
279 RDebug::Printf("CContentHarvesterAppUi::HandleError %d", aError); |
|
280 if ( aError != KErrNoMemory ) |
|
281 { |
|
282 return ENoDisplay; // we dont want to handle this error |
|
283 } |
|
284 return EErrorNotHandled; |
|
285 } |
|
286 |
|
287 // ============================= LOCAL FUNCTIONS =============================== |
270 // ============================= LOCAL FUNCTIONS =============================== |
288 |
271 |
289 // ----------------------------------------------------------------------------- |
272 // ----------------------------------------------------------------------------- |
290 // E32Main entry point. |
273 // E32Main entry point. |
291 // Returns: KErrNone |
274 // Returns: KErrNone |