OTHER: Some Header cleanups

This commit is contained in:
Thomas Frauendorfer 2008-05-14 17:18:26 +02:00
parent 345f5d930e
commit 38431358ae
5 changed files with 15 additions and 5 deletions

9
README
View file

@ -15,11 +15,18 @@ Compiling:
5) ????
6) profit
Compilation Errors:
Compilation problems:
- Errormessage "WARNING: Found potential symbol conflict of <somefile>"
-> make sure you use uic from Qt4 (uic -version)
(on debian systems it's sufficant if uic-qt4 exists)
- Errormessage "error: xmmsclient/xmmsclient++.h: No such file or directory"
followed by a bunch of other errors
-> You don't have the xmms2-c++ header files installed
(package libxmmsclient++-dev on debian)
After installing the headerfiles run 'make distclean' and start again
from 'Compiling 1)'
Reporting Bugs:
preferred way to report bugs is through xmms2's bugtracker at
'http://bugs.xmms2.xmms.se/' at project 'Client - Promoe'

View file

@ -18,9 +18,11 @@
#include "SkinChooser.h"
#include <QDir>
#include <QIcon>
#include <QFile>
#include <QIcon>
#include <QLabel>
#include <QSettings>
#include <QVBoxLayout>
SkinChooser::SkinChooser (QWidget *parent) : QMainWindow (parent)
{

View file

@ -15,9 +15,9 @@
#include <QListWidget>
#include <QLabel>
#include <QVBoxLayout>
#include <QMainWindow>
class QLabel;
class QVBoxLayout;
class MainWindow;

View file

@ -16,6 +16,8 @@
#include "SmallNumberDisplay.h"
#include "Skin.h"
#include <QPainter>
SmallNumberDisplay::SmallNumberDisplay (QWidget *parent, int w) : PixWidget (parent)
{
m_w = w;

View file

@ -17,7 +17,6 @@
#define __SMALLNUMBERDISPLAY_H__
#include "PixWidget.h"
#include <QPainter>
class SmallNumberDisplay : public PixWidget