2
Come posso creare un indicatore funzionante con Qt / C ++?
Sto usando Qt IDE per creare la mia applicazione in modo da partecipare al concorso Ubuntu Showdown. Nella mia domanda, ho fatto quanto segue: void show_app(MainWindow *data) { //this works fine: app_indicator_set_status(appindicator, APP_INDICATOR_STATUS_PASSIVE); //this crashes the application: data->show(); } void MainWindow::make_indicator() { if(appindicator){ //appindicator has already been created return; } …