changed notation

This commit is contained in:
fourtf
2017-01-18 04:33:30 +01:00
parent 552e4c957a
commit 10e4a0f785
61 changed files with 1214 additions and 1051 deletions
+4 -4
View File
@@ -1,17 +1,17 @@
#include "windows.h"
QMutex Windows::m_windowMutex;
QMutex Windows::windowMutex;
MainWindow *Windows::m_mainWindow(NULL);
MainWindow *Windows::mainWindow(NULL);
void
Windows::layoutVisibleChatWidgets(Channel *channel)
{
m_mainWindow->layoutVisibleChatWidgets(channel);
Windows::mainWindow->layoutVisibleChatWidgets(channel);
}
void
Windows::repaintVisibleChatWidgets(Channel *channel)
{
m_mainWindow->repaintVisibleChatWidgets(channel);
Windows::mainWindow->repaintVisibleChatWidgets(channel);
}