Hi,
I create my program in qt (c++) with ubuntu OS. I have to move my application to a lubuntu os on another pc. I know how to make a make-file and move the program.
My problem is: I want to disable the close-button in a QTabWidget.

I did it with:

Qt Code:
  1. QTabWidget tabWidget = new QTabWidget;
  2. tabWidget->setWindowFlags(Qt::CustomizeWindowHint | Qt::WindowTitleHint);
To copy to clipboard, switch view to plain text mode 

When I use this in Ubuntu, everything works like I want (not able to push close-button). But when I move the programs make-file to lubuntu-PC, the close-button appears again. When I push x (close-button) in lubuntu the program stops.

I need to deactivate this button.
Does anybody know how to do that?