File: mainWindow.cpp

package info (click to toggle)
qbble 1.2-5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 108 kB
  • ctags: 146
  • sloc: cpp: 732; ansic: 138; makefile: 51
file content (16 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "mainWindow.h"

mainWindow::mainWindow()
	: QMainWindow( 0, "Qbble", WDestructiveClose )
{
	m_dialog = new playlistDialog(this, "Dialog");
	m_dialog->setFocus();
	setCentralWidget(m_dialog);
	resize(600, 600);
}


mainWindow::~mainWindow()
{

}