Playlist "works"

This commit is contained in:
Tobias Rundstrom 2006-02-26 02:36:20 -03:00
parent 4c0bffeb6f
commit 65c1011b8a
14 changed files with 710 additions and 19 deletions

View file

@ -36,13 +36,6 @@ MainWindow::MainWindow (QWidget *parent) : QMainWindow (parent)
*/
m_isshaded = false;
/*
* Now that everything is initialized
* open the skin and send the
* SkinChanged signal that will cause
* all widgets to get their pixmaps
*/
skin->setSkin ("./CleanAMP/");
}
@ -90,8 +83,18 @@ int main (int argc, char **argv)
QApplication app(argc, argv);
MainWindow *mw = new MainWindow (NULL);
mw->show();
mw->show ();
QMainWindow *playlistwin = new PlaylistWindow (NULL, mw->getSkin ());
playlistwin->show ();
/*
* Now that everything is initialized
* open the skin and send the
* SkinChanged signal that will cause
* all widgets to get their pixmaps
*/
mw->getSkin ()->setSkin ("./CleanAMP/");
return app.exec();
}