I have designed a simple gui app for my nokia x6 using Qt.But when i run it, it gives me SystemError(-1) message. plz help me! i have installed all the QT files on my cell!!
i am using this code!!!
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow:n_pushButton_clicked()
{
ui->listWidget->addItem(ui->lineEdit->text());
ui->textEdit->setText("Hello");
}



