Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Code Block



p, li { white-space: pre-wrap; }

TEMPLATE      = app

SOURCES       = main.cpp

FORMS         = gotocelldialog.ui


Automaattisesti generoitu xml tiedosto dialogista

Code Block


p, li { white-space: pre-wrap; }

#include <QApplication>

#include <QDialog>



#include "ui_gotocelldialog.h"



int main(int argc, char *argv[])

{

    QApplication app(argc, argv);



    Ui::GoToCellDialog ui;

    QDialog *dialog = new QDialog;

    ui.setupUi(dialog);

    dialog->show();



    return app.exec();

}