Skip to content
  • Luboš Luňák's avatar
    Remove usage of QWidget::show[FullScreen|Maximized|Minimized|Normal](), · 652718e5
    Luboš Luňák authored
    they do more then just change the state of the window and all these usage
    cases were wrong (that is, all their usage).
    For changing the state, use something like
    window->setWindowState( window->windowState() | Qt::WindowFullScreen ); // set
    window->setWindowState( window->windowState() & ~Qt::WindowFullScreen ); // reset
    or simply use the new KToggleFullScreenAction::setFullScreen() helper.
    
    
    svn path=/trunk/KDE/kdeedu/kmplot/; revision=784333
    652718e5