2017-01-15 16:38:30 +01:00
|
|
|
#include "windows.h"
|
|
|
|
|
2017-01-18 04:33:30 +01:00
|
|
|
QMutex Windows::windowMutex;
|
2017-01-15 16:38:30 +01:00
|
|
|
|
2017-01-18 04:33:30 +01:00
|
|
|
MainWindow *Windows::mainWindow(NULL);
|
2017-01-15 16:38:30 +01:00
|
|
|
|
|
|
|
void
|
2017-01-16 15:06:12 +01:00
|
|
|
Windows::layoutVisibleChatWidgets(Channel *channel)
|
2017-01-15 16:38:30 +01:00
|
|
|
{
|
2017-01-18 04:33:30 +01:00
|
|
|
Windows::mainWindow->layoutVisibleChatWidgets(channel);
|
2017-01-16 03:15:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 15:06:12 +01:00
|
|
|
Windows::repaintVisibleChatWidgets(Channel *channel)
|
2017-01-16 03:15:07 +01:00
|
|
|
{
|
2017-01-18 04:33:30 +01:00
|
|
|
Windows::mainWindow->repaintVisibleChatWidgets(channel);
|
2017-01-15 16:38:30 +01:00
|
|
|
}
|