javauis/eswt_akn/org.eclipse.ercp.swt.s60/native/src/swtdecorations.cpp
branchRCL_3
changeset 19 71c436fe3ce0
parent 14 04becd199f91
--- a/javauis/eswt_akn/org.eclipse.ercp.swt.s60/native/src/swtdecorations.cpp	Tue May 25 12:34:19 2010 +0300
+++ b/javauis/eswt_akn/org.eclipse.ercp.swt.s60/native/src/swtdecorations.cpp	Wed Jun 09 09:34:07 2010 +0300
@@ -620,23 +620,9 @@
 // CSwtDecorations::SetMaximized
 // ---------------------------------------------------------------------------
 //
-void CSwtDecorations::SetMaximized(TBool aMaximized)
+void CSwtDecorations::SetMaximized(TBool /*aMaximized*/)
 {
-    ASSERT(aMaximized != iIsMaximized);
-
-    if (aMaximized)
-    {
-        // Set bounds so as to cover the parent's client area
-        iNormalBounds = GetBounds();
-        TRect newBounds(iParent->Control()->ClientRect().Size());
-        SetBounds(newBounds);
-    }
-    else
-    {
-        SetBounds(iNormalBounds);
-    }
-
-    iIsMaximized = aMaximized;
+    // Nothing to do, unsupported feature
 }
 
 // ---------------------------------------------------------------------------