Hello!
With Qt4, is there a way to make sure, that this toolBar
setObjectName
(QString::fromUtf8("toolBarKunden"));
addToolBar(Qt::TopToolBarArea, toolBarKunden);
toolBarKunden = new QToolBar(this);
setObjectName(QString::fromUtf8("toolBarKunden"));
addToolBar(Qt::TopToolBarArea, toolBarKunden);
setWindowTitle(QApplication::translate("Erpel", "toolBarKunden", 0, QApplication::UnicodeUTF8));
To copy to clipboard, switch view to plain text mode
will be created only once?
Something like
if (!toolBarKunden)
{
// createToolBar ...
}
if (!toolBarKunden)
{
// createToolBar ...
}
To copy to clipboard, switch view to plain text mode
Thanks in advance,
Guenther
Bookmarks