mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
17 lines
275 B
C++
17 lines
275 B
C++
/*
|
|
* Check whether Qt provides QTabWidget::setMovable ().
|
|
*/
|
|
|
|
#include <QTabWidget>
|
|
class tab_widget : public QTabWidget
|
|
{
|
|
public:
|
|
tab_widget (QWidget *parent = 0) : QTabWidget (parent) { this->setMovable (true); }
|
|
~tab_widget () {}
|
|
};
|
|
|
|
int main()
|
|
{
|
|
tab_widget tw;
|
|
}
|