--- a/phoneapp/phoneuivoipextension/src/tphonetouchpanewrapper.cpp Thu Aug 19 09:54:27 2010 +0300
+++ b/phoneapp/phoneuivoipextension/src/tphonetouchpanewrapper.cpp Tue Aug 31 15:14:29 2010 +0300
@@ -28,9 +28,7 @@
// might leave.
// -----------------------------------------------------------------------------
//
-TPhTouchPaneWrapper::TPhTouchPaneWrapper(
- MBubbleTouchPaneInterface& aTouchPane ) :
- iTouchPane( aTouchPane )
+TPhTouchPaneWrapper::TPhTouchPaneWrapper()
{
}
@@ -40,9 +38,9 @@
// ---------------------------------------------------------
//
TInt TPhTouchPaneWrapper::NumberOfButtonsInPane() const
- {
- return iTouchPane.NumberOfButtonsInPane();
- }
+ {
+ return KErrNotSupported;
+ }
// ---------------------------------------------------------
// TPhTouchPaneWrapper::ButtonCommandId
@@ -50,21 +48,18 @@
// ---------------------------------------------------------
//
TInt TPhTouchPaneWrapper::ButtonCommandId(
- TInt aButtonIndex ) const
+ TInt /*aButtonIndex*/ ) const
{
- return iTouchPane.ButtonCommandId( aButtonIndex );
- }
+ return KErrNotSupported;
+ }
// ---------------------------------------------------------
// TPhTouchPaneWrapper::SetButtonDimmed
// (other items were commented in a header).
// ---------------------------------------------------------
//
-void TPhTouchPaneWrapper::SetButtonDimmed( TInt aCommand, TBool aDimmed )
+void TPhTouchPaneWrapper::SetButtonDimmed( TInt /*aCommand*/, TBool /*aDimmed*/ )
{
- iTouchPane.SetButtonDimmed( aCommand, aDimmed );
}
-
-
// End of File