Advertisement
InAndOutLand

Mainwindow.cpp -- InAndOutLand

Mar 15th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include "mainwindow.h"
  2. #include "ui_mainwindow.h"
  3.  
  4. MainWindow::MainWindow(QWidget *parent) :
  5.     QMainWindow(parent),
  6.     ui(new Ui::MainWindow)
  7. {
  8.     ui->setupUi(this);
  9.     signal newWindow(string url);
  10.     load(utils.urlFromUserInput(addressLine.text));
  11. }
  12.  
  13. MainWindow::~MainWindow()
  14. {
  15.     delete ui;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement