Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 279228
Collapse All | Expand All

(-)js/org/eclipse/swt/custom/CTabFolder.js (-2 / +3 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2002, 2008 Innoopract Informationssysteme GmbH.
2
 * Copyright (c) 2002, 2009 Innoopract Informationssysteme GmbH.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 7-12 Link Here
7
 *
7
 *
8
 * Contributors:
8
 * Contributors:
9
 *     Innoopract Informationssysteme GmbH - initial API and implementation
9
 *     Innoopract Informationssysteme GmbH - initial API and implementation
10
 *     EclipseSource - ongoing development
10
 ******************************************************************************/
11
 ******************************************************************************/
11
12
12
qx.Class.define( "org.eclipse.swt.custom.CTabFolder", {
13
qx.Class.define( "org.eclipse.swt.custom.CTabFolder", {
Lines 373-379 Link Here
373
          }
374
          }
374
        } else {
375
        } else {
375
          // Maximize button was pressed
376
          // Maximize button was pressed
376
          if( this._minMaxState == "normal" || this.minMaxState == "min" ) {
377
          if( this._minMaxState == "normal" || this._minMaxState == "min" ) {
377
            this.setMinMaxState( "max" );
378
            this.setMinMaxState( "max" );
378
            event = "org.eclipse.swt.events.ctabFolderMaximized";
379
            event = "org.eclipse.swt.events.ctabFolderMaximized";
379
          } else {
380
          } else {

Return to bug 279228