mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
25 lines
479 B
C++
25 lines
479 B
C++
#include "windows.h"
|
|
|
|
namespace chatterino {
|
|
|
|
QMutex Windows::windowMutex;
|
|
|
|
widgets::MainWindow *Windows::mainWindow(nullptr);
|
|
|
|
void
|
|
Windows::layoutVisibleChatWidgets(Channel *channel)
|
|
{
|
|
if (Windows::mainWindow != nullptr) {
|
|
Windows::mainWindow->layoutVisibleChatWidgets(channel);
|
|
}
|
|
}
|
|
|
|
void
|
|
Windows::repaintVisibleChatWidgets(Channel *channel)
|
|
{
|
|
if (Windows::mainWindow != nullptr) {
|
|
Windows::mainWindow->repaintVisibleChatWidgets(channel);
|
|
}
|
|
}
|
|
}
|