mirror-chatterino2/windows.cpp

18 lines
337 B
C++
Raw Normal View History

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
Windows::layoutVisibleChatWidgets(Channel *channel)
2017-01-15 16:38:30 +01:00
{
2017-01-18 04:33:30 +01:00
Windows::mainWindow->layoutVisibleChatWidgets(channel);
}
void
Windows::repaintVisibleChatWidgets(Channel *channel)
{
2017-01-18 04:33:30 +01:00
Windows::mainWindow->repaintVisibleChatWidgets(channel);
2017-01-15 16:38:30 +01:00
}