Hi,
I need to change, the QProgressDialog default title, i.e
I need to change the "Import Contacts", how to do it? In my case it shows my project name.
Hi,
I need to change, the QProgressDialog default title, i.e
I need to change the "Import Contacts", how to do it? In my case it shows my project name.
hi
To change title of you can use setwindowtitle(), as in our poroject we are using progressbar and change title as follows
QMainWindow *ProgressDialogClass
ProgressDialogClass->setWindowTitle(QApplication::translate("ProgressDialogClass", "MainWindow", 0, QApplication::UnicodeUTF8));
"MainWindow "is the title we are providing to progressbar in our application. you can change something else and check it