This commit is contained in:
doitux
2007-12-09 14:00:11 +00:00
parent 5aa2647ade
commit f3be7f204a
3 changed files with 10 additions and 15 deletions
+2 -7
View File
@@ -26,14 +26,13 @@
class Session;
class ConfigFile;
class SDLPlayer;
class ChatTools : public QObject
{
Q_OBJECT
public:
ChatTools(QLineEdit* l, ConfigFile *c, int notifyMode = 0, QTextBrowser *b = NULL, QTreeWidget *t = NULL, SDLPlayer *s = NULL, QDialog *p = NULL );
ChatTools(QLineEdit* l, ConfigFile *c, int notifyMode = 0, QTextBrowser *b = NULL, QTreeWidget *t = NULL);
~ChatTools();
@@ -68,11 +67,7 @@ private:
Session *mySession;
int myNotifyMode; // 0 == no notification, 1 == bold notification, 2 == yellow notification
ConfigFile *myConfig;
SDLPlayer *mySDLPlayer;
QDialog *myParentDialog; //needed for visible check for audio-nick-notification
// friend class GuiWrapper;
};
#endif