Commit ca6801463d0acd4cd9759dbcb0b6e22f9775392c

Authored by Imanol-Mikel Barba Sabariego
1 parent 1ed92128

git-svn-id: svn://imanolbarba.net/PAD@54 c2ee353e-ed0d-4329-bf56-03aec153487f

QChatClient/chatroom.cpp
@@ -234,15 +234,17 @@ void Chatroom::relayMsg(string msg) @@ -234,15 +234,17 @@ void Chatroom::relayMsg(string msg)
234 void Chatroom::newChat(QString peerNick) 234 void Chatroom::newChat(QString peerNick)
235 { 235 {
236 cout << "add chat" << endl; 236 cout << "add chat" << endl;
237 - freeChats(false); 237 + chatMutex.lock();
238 ChatWindow* newchat = new ChatWindow(peerNick,this); 238 ChatWindow* newchat = new ChatWindow(peerNick,this);
239 activeChats.insert(std::pair<string,ChatWindow*>(peerNick.toStdString(),newchat)); 239 activeChats.insert(std::pair<string,ChatWindow*>(peerNick.toStdString(),newchat));
240 newchat->show(); 240 newchat->show();
  241 + chatMutex.unlock();
241 chatCreated.notify_all(); 242 chatCreated.notify_all();
242 } 243 }
243 244
244 void Chatroom::removeChat(QString &nickname) 245 void Chatroom::removeChat(QString &nickname)
245 { 246 {
  247 + freeChats(false);
246 cout << "move to inactive" << endl; 248 cout << "move to inactive" << endl;
247 chatMutex.lock(); 249 chatMutex.lock();
248 ChatWindow* chat = (ChatWindow*) activeChats.find(nickname.toStdString())->second; 250 ChatWindow* chat = (ChatWindow*) activeChats.find(nickname.toStdString())->second;
build-QChatClient-Desktop-Debug/Makefile
1 ############################################################################# 1 #############################################################################
2 # Makefile for building: QChatClient 2 # Makefile for building: QChatClient
3 -# Generated by qmake (3.0) (Qt 5.0.1) on: mar ene 7 05:02:24 2014 3 +# Generated by qmake (3.0) (Qt 5.0.2) on: mar ene 7 06:18:50 2014
4 # Project: ../QChatClient/QChatClient.pro 4 # Project: ../QChatClient/QChatClient.pro
5 # Template: app 5 # Template: app
6 -# Command: /usr/lib/i386-linux-gnu/qt5/bin/qmake -spec linux-g++ CONFIG+=debug CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile ../QChatClient/QChatClient.pro 6 +# Command: /usr/lib/x86_64-linux-gnu/qt5/bin/qmake -spec linux-g++-64 CONFIG+=debug CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile ../QChatClient/QChatClient.pro
7 ############################################################################# 7 #############################################################################
8 8
9 MAKEFILE = Makefile 9 MAKEFILE = Makefile
@@ -13,15 +13,15 @@ MAKEFILE = Makefile @@ -13,15 +13,15 @@ MAKEFILE = Makefile
13 CC = gcc 13 CC = gcc
14 CXX = g++ 14 CXX = g++
15 DEFINES = -DQT_QML_DEBUG -DQT_DECLARATIVE_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB 15 DEFINES = -DQT_QML_DEBUG -DQT_DECLARATIVE_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB
16 -CFLAGS = -pipe -g -Wall -W -D_REENTRANT -fPIE $(DEFINES)  
17 -CXXFLAGS = -pipe -std=c++11 -g -Wall -W -D_REENTRANT -fPIE $(DEFINES)  
18 -INCPATH = -I/usr/share/qt5/mkspecs/linux-g++ -I../QChatClient -I/usr/include/qt5 -I/usr/include/qt5/QtWidgets -I/usr/include/qt5/QtGui -I/usr/include/qt5/QtCore -I. -I. -I. 16 +CFLAGS = -m64 -pipe -g -Wall -W -D_REENTRANT -fPIE $(DEFINES)
  17 +CXXFLAGS = -m64 -pipe -std=c++11 -g -Wall -W -D_REENTRANT -fPIE $(DEFINES)
  18 +INCPATH = -I/usr/share/qt5/mkspecs/linux-g++-64 -I../QChatClient -I/usr/include/qt5 -I/usr/include/qt5/QtWidgets -I/usr/include/qt5/QtGui -I/usr/include/qt5/QtCore -I. -I. -I.
19 LINK = g++ 19 LINK = g++
20 -LFLAGS =  
21 -LIBS = $(SUBLIBS) -lQt5Widgets -L/usr/lib/i386-linux-gnu -lQt5Gui -lQt5Core -lGL -lpthread 20 +LFLAGS = -m64
  21 +LIBS = $(SUBLIBS) -L/usr/X11R6/lib64 -lQt5Widgets -L/usr/lib/x86_64-linux-gnu -lQt5Gui -lQt5Core -lGL -lpthread
22 AR = ar cqs 22 AR = ar cqs
23 RANLIB = 23 RANLIB =
24 -QMAKE = /usr/lib/i386-linux-gnu/qt5/bin/qmake 24 +QMAKE = /usr/lib/x86_64-linux-gnu/qt5/bin/qmake
25 TAR = tar -cf 25 TAR = tar -cf
26 COMPRESS = gzip -9f 26 COMPRESS = gzip -9f
27 COPY = cp -f 27 COPY = cp -f
@@ -93,18 +93,18 @@ DIST = /usr/share/qt5/mkspecs/features/spec_pre.prf \ @@ -93,18 +93,18 @@ DIST = /usr/share/qt5/mkspecs/features/spec_pre.prf \
93 /usr/share/qt5/mkspecs/modules/qt_lib_quickparticles.pri \ 93 /usr/share/qt5/mkspecs/modules/qt_lib_quickparticles.pri \
94 /usr/share/qt5/mkspecs/modules/qt_lib_sql.pri \ 94 /usr/share/qt5/mkspecs/modules/qt_lib_sql.pri \
95 /usr/share/qt5/mkspecs/modules/qt_lib_testlib.pri \ 95 /usr/share/qt5/mkspecs/modules/qt_lib_testlib.pri \
  96 + /usr/share/qt5/mkspecs/modules/qt_lib_v8.pri \
96 /usr/share/qt5/mkspecs/modules/qt_lib_widgets.pri \ 97 /usr/share/qt5/mkspecs/modules/qt_lib_widgets.pri \
97 /usr/share/qt5/mkspecs/modules/qt_lib_xml.pri \ 98 /usr/share/qt5/mkspecs/modules/qt_lib_xml.pri \
98 /usr/share/qt5/mkspecs/features/qt_functions.prf \ 99 /usr/share/qt5/mkspecs/features/qt_functions.prf \
99 /usr/share/qt5/mkspecs/features/qt_config.prf \ 100 /usr/share/qt5/mkspecs/features/qt_config.prf \
100 - /usr/share/qt5/mkspecs/linux-g++/qmake.conf \ 101 + /usr/share/qt5/mkspecs/linux-g++-64/qmake.conf \
101 /usr/share/qt5/mkspecs/features/spec_post.prf \ 102 /usr/share/qt5/mkspecs/features/spec_post.prf \
102 /usr/share/qt5/mkspecs/features/exclusive_builds.prf \ 103 /usr/share/qt5/mkspecs/features/exclusive_builds.prf \
103 /usr/share/qt5/mkspecs/features/default_pre.prf \ 104 /usr/share/qt5/mkspecs/features/default_pre.prf \
104 /usr/share/qt5/mkspecs/features/unix/default_pre.prf \ 105 /usr/share/qt5/mkspecs/features/unix/default_pre.prf \
105 - /usr/share/qt5/mkspecs/features/debug.prf \ 106 + /usr/share/qt5/mkspecs/features/resolve_config.prf \
106 /usr/share/qt5/mkspecs/features/default_post.prf \ 107 /usr/share/qt5/mkspecs/features/default_post.prf \
107 - /usr/share/qt5/mkspecs/features/shared.prf \  
108 /usr/share/qt5/mkspecs/features/qml_debug.prf \ 108 /usr/share/qt5/mkspecs/features/qml_debug.prf \
109 /usr/share/qt5/mkspecs/features/declarative_debug.prf \ 109 /usr/share/qt5/mkspecs/features/declarative_debug.prf \
110 /usr/share/qt5/mkspecs/features/unix/gdb_dwarf_index.prf \ 110 /usr/share/qt5/mkspecs/features/unix/gdb_dwarf_index.prf \
@@ -155,7 +155,7 @@ $(TARGET): ui_chatwindow.h ui_loginscreen.h ui_chatroom.h $(OBJECTS) @@ -155,7 +155,7 @@ $(TARGET): ui_chatwindow.h ui_loginscreen.h ui_chatroom.h $(OBJECTS)
155 $(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS) 155 $(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
156 { test -n "$(DESTDIR)" && DESTDIR="$(DESTDIR)" || DESTDIR=.; } && test $$(gdb --version | sed -e 's,[^0-9]\+\([0-9]\)\.\([0-9]\).*,\1\2,;q') -gt 72 && gdb --nx --batch --quiet -ex 'set confirm off' -ex "save gdb-index $$DESTDIR" -ex quit '$(TARGET)' && test -f $(TARGET).gdb-index && objcopy --add-section '.gdb_index=$(TARGET).gdb-index' --set-section-flags '.gdb_index=readonly' '$(TARGET)' '$(TARGET)' && rm -f $(TARGET).gdb-index || true 156 { test -n "$(DESTDIR)" && DESTDIR="$(DESTDIR)" || DESTDIR=.; } && test $$(gdb --version | sed -e 's,[^0-9]\+\([0-9]\)\.\([0-9]\).*,\1\2,;q') -gt 72 && gdb --nx --batch --quiet -ex 'set confirm off' -ex "save gdb-index $$DESTDIR" -ex quit '$(TARGET)' && test -f $(TARGET).gdb-index && objcopy --add-section '.gdb_index=$(TARGET).gdb-index' --set-section-flags '.gdb_index=readonly' '$(TARGET)' '$(TARGET)' && rm -f $(TARGET).gdb-index || true
157 157
158 -Makefile: ../QChatClient/QChatClient.pro /usr/share/qt5/mkspecs/linux-g++/qmake.conf /usr/share/qt5/mkspecs/features/spec_pre.prf \ 158 +Makefile: ../QChatClient/QChatClient.pro /usr/share/qt5/mkspecs/linux-g++-64/qmake.conf /usr/share/qt5/mkspecs/features/spec_pre.prf \
159 /usr/share/qt5/mkspecs/common/shell-unix.conf \ 159 /usr/share/qt5/mkspecs/common/shell-unix.conf \
160 /usr/share/qt5/mkspecs/common/unix.conf \ 160 /usr/share/qt5/mkspecs/common/unix.conf \
161 /usr/share/qt5/mkspecs/common/linux.conf \ 161 /usr/share/qt5/mkspecs/common/linux.conf \
@@ -180,18 +180,18 @@ Makefile: ../QChatClient/QChatClient.pro /usr/share/qt5/mkspecs/linux-g++/qmake. @@ -180,18 +180,18 @@ Makefile: ../QChatClient/QChatClient.pro /usr/share/qt5/mkspecs/linux-g++/qmake.
180 /usr/share/qt5/mkspecs/modules/qt_lib_quickparticles.pri \ 180 /usr/share/qt5/mkspecs/modules/qt_lib_quickparticles.pri \
181 /usr/share/qt5/mkspecs/modules/qt_lib_sql.pri \ 181 /usr/share/qt5/mkspecs/modules/qt_lib_sql.pri \
182 /usr/share/qt5/mkspecs/modules/qt_lib_testlib.pri \ 182 /usr/share/qt5/mkspecs/modules/qt_lib_testlib.pri \
  183 + /usr/share/qt5/mkspecs/modules/qt_lib_v8.pri \
183 /usr/share/qt5/mkspecs/modules/qt_lib_widgets.pri \ 184 /usr/share/qt5/mkspecs/modules/qt_lib_widgets.pri \
184 /usr/share/qt5/mkspecs/modules/qt_lib_xml.pri \ 185 /usr/share/qt5/mkspecs/modules/qt_lib_xml.pri \
185 /usr/share/qt5/mkspecs/features/qt_functions.prf \ 186 /usr/share/qt5/mkspecs/features/qt_functions.prf \
186 /usr/share/qt5/mkspecs/features/qt_config.prf \ 187 /usr/share/qt5/mkspecs/features/qt_config.prf \
187 - /usr/share/qt5/mkspecs/linux-g++/qmake.conf \ 188 + /usr/share/qt5/mkspecs/linux-g++-64/qmake.conf \
188 /usr/share/qt5/mkspecs/features/spec_post.prf \ 189 /usr/share/qt5/mkspecs/features/spec_post.prf \
189 /usr/share/qt5/mkspecs/features/exclusive_builds.prf \ 190 /usr/share/qt5/mkspecs/features/exclusive_builds.prf \
190 /usr/share/qt5/mkspecs/features/default_pre.prf \ 191 /usr/share/qt5/mkspecs/features/default_pre.prf \
191 /usr/share/qt5/mkspecs/features/unix/default_pre.prf \ 192 /usr/share/qt5/mkspecs/features/unix/default_pre.prf \
192 - /usr/share/qt5/mkspecs/features/debug.prf \ 193 + /usr/share/qt5/mkspecs/features/resolve_config.prf \
193 /usr/share/qt5/mkspecs/features/default_post.prf \ 194 /usr/share/qt5/mkspecs/features/default_post.prf \
194 - /usr/share/qt5/mkspecs/features/shared.prf \  
195 /usr/share/qt5/mkspecs/features/qml_debug.prf \ 195 /usr/share/qt5/mkspecs/features/qml_debug.prf \
196 /usr/share/qt5/mkspecs/features/declarative_debug.prf \ 196 /usr/share/qt5/mkspecs/features/declarative_debug.prf \
197 /usr/share/qt5/mkspecs/features/unix/gdb_dwarf_index.prf \ 197 /usr/share/qt5/mkspecs/features/unix/gdb_dwarf_index.prf \
@@ -208,10 +208,10 @@ Makefile: ../QChatClient/QChatClient.pro /usr/share/qt5/mkspecs/linux-g++/qmake. @@ -208,10 +208,10 @@ Makefile: ../QChatClient/QChatClient.pro /usr/share/qt5/mkspecs/linux-g++/qmake.
208 /usr/share/qt5/mkspecs/features/yacc.prf \ 208 /usr/share/qt5/mkspecs/features/yacc.prf \
209 /usr/share/qt5/mkspecs/features/lex.prf \ 209 /usr/share/qt5/mkspecs/features/lex.prf \
210 ../QChatClient/QChatClient.pro \ 210 ../QChatClient/QChatClient.pro \
211 - /usr/lib/i386-linux-gnu/libQt5Widgets.prl \  
212 - /usr/lib/i386-linux-gnu/libQt5Gui.prl \  
213 - /usr/lib/i386-linux-gnu/libQt5Core.prl  
214 - $(QMAKE) -spec linux-g++ CONFIG+=debug CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile ../QChatClient/QChatClient.pro 211 + /usr/lib/x86_64-linux-gnu/libQt5Widgets.prl \
  212 + /usr/lib/x86_64-linux-gnu/libQt5Gui.prl \
  213 + /usr/lib/x86_64-linux-gnu/libQt5Core.prl
  214 + $(QMAKE) -spec linux-g++-64 CONFIG+=debug CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile ../QChatClient/QChatClient.pro
215 /usr/share/qt5/mkspecs/features/spec_pre.prf: 215 /usr/share/qt5/mkspecs/features/spec_pre.prf:
216 /usr/share/qt5/mkspecs/common/shell-unix.conf: 216 /usr/share/qt5/mkspecs/common/shell-unix.conf:
217 /usr/share/qt5/mkspecs/common/unix.conf: 217 /usr/share/qt5/mkspecs/common/unix.conf:
@@ -237,18 +237,18 @@ Makefile: ../QChatClient/QChatClient.pro /usr/share/qt5/mkspecs/linux-g++/qmake. @@ -237,18 +237,18 @@ Makefile: ../QChatClient/QChatClient.pro /usr/share/qt5/mkspecs/linux-g++/qmake.
237 /usr/share/qt5/mkspecs/modules/qt_lib_quickparticles.pri: 237 /usr/share/qt5/mkspecs/modules/qt_lib_quickparticles.pri:
238 /usr/share/qt5/mkspecs/modules/qt_lib_sql.pri: 238 /usr/share/qt5/mkspecs/modules/qt_lib_sql.pri:
239 /usr/share/qt5/mkspecs/modules/qt_lib_testlib.pri: 239 /usr/share/qt5/mkspecs/modules/qt_lib_testlib.pri:
  240 +/usr/share/qt5/mkspecs/modules/qt_lib_v8.pri:
240 /usr/share/qt5/mkspecs/modules/qt_lib_widgets.pri: 241 /usr/share/qt5/mkspecs/modules/qt_lib_widgets.pri:
241 /usr/share/qt5/mkspecs/modules/qt_lib_xml.pri: 242 /usr/share/qt5/mkspecs/modules/qt_lib_xml.pri:
242 /usr/share/qt5/mkspecs/features/qt_functions.prf: 243 /usr/share/qt5/mkspecs/features/qt_functions.prf:
243 /usr/share/qt5/mkspecs/features/qt_config.prf: 244 /usr/share/qt5/mkspecs/features/qt_config.prf:
244 -/usr/share/qt5/mkspecs/linux-g++/qmake.conf: 245 +/usr/share/qt5/mkspecs/linux-g++-64/qmake.conf:
245 /usr/share/qt5/mkspecs/features/spec_post.prf: 246 /usr/share/qt5/mkspecs/features/spec_post.prf:
246 /usr/share/qt5/mkspecs/features/exclusive_builds.prf: 247 /usr/share/qt5/mkspecs/features/exclusive_builds.prf:
247 /usr/share/qt5/mkspecs/features/default_pre.prf: 248 /usr/share/qt5/mkspecs/features/default_pre.prf:
248 /usr/share/qt5/mkspecs/features/unix/default_pre.prf: 249 /usr/share/qt5/mkspecs/features/unix/default_pre.prf:
249 -/usr/share/qt5/mkspecs/features/debug.prf: 250 +/usr/share/qt5/mkspecs/features/resolve_config.prf:
250 /usr/share/qt5/mkspecs/features/default_post.prf: 251 /usr/share/qt5/mkspecs/features/default_post.prf:
251 -/usr/share/qt5/mkspecs/features/shared.prf:  
252 /usr/share/qt5/mkspecs/features/qml_debug.prf: 252 /usr/share/qt5/mkspecs/features/qml_debug.prf:
253 /usr/share/qt5/mkspecs/features/declarative_debug.prf: 253 /usr/share/qt5/mkspecs/features/declarative_debug.prf:
254 /usr/share/qt5/mkspecs/features/unix/gdb_dwarf_index.prf: 254 /usr/share/qt5/mkspecs/features/unix/gdb_dwarf_index.prf:
@@ -265,16 +265,16 @@ Makefile: ../QChatClient/QChatClient.pro /usr/share/qt5/mkspecs/linux-g++/qmake. @@ -265,16 +265,16 @@ Makefile: ../QChatClient/QChatClient.pro /usr/share/qt5/mkspecs/linux-g++/qmake.
265 /usr/share/qt5/mkspecs/features/yacc.prf: 265 /usr/share/qt5/mkspecs/features/yacc.prf:
266 /usr/share/qt5/mkspecs/features/lex.prf: 266 /usr/share/qt5/mkspecs/features/lex.prf:
267 ../QChatClient/QChatClient.pro: 267 ../QChatClient/QChatClient.pro:
268 -/usr/lib/i386-linux-gnu/libQt5Widgets.prl:  
269 -/usr/lib/i386-linux-gnu/libQt5Gui.prl:  
270 -/usr/lib/i386-linux-gnu/libQt5Core.prl: 268 +/usr/lib/x86_64-linux-gnu/libQt5Widgets.prl:
  269 +/usr/lib/x86_64-linux-gnu/libQt5Gui.prl:
  270 +/usr/lib/x86_64-linux-gnu/libQt5Core.prl:
271 qmake: FORCE 271 qmake: FORCE
272 - @$(QMAKE) -spec linux-g++ CONFIG+=debug CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile ../QChatClient/QChatClient.pro 272 + @$(QMAKE) -spec linux-g++-64 CONFIG+=debug CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile ../QChatClient/QChatClient.pro
273 273
274 qmake_all: FORCE 274 qmake_all: FORCE
275 275
276 dist: 276 dist:
277 - @test -d .tmp/QChatClient1.0.0 || $(MKDIR) .tmp/QChatClient1.0.0 277 + @test -d .tmp/QChatClient1.0.0 || mkdir -p .tmp/QChatClient1.0.0
278 $(COPY_FILE) --parents $(SOURCES) $(DIST) .tmp/QChatClient1.0.0/ && $(COPY_FILE) --parents ../QChatClient/loginscreen.h ../QChatClient/chatroom.h ../QChatClient/SocketException.h ../QChatClient/Socket.h ../QChatClient/chatwidget.h ../QChatClient/chatwindow.h ../QChatClient/chatinputtext.h .tmp/QChatClient1.0.0/ && $(COPY_FILE) --parents ../QChatClient/main.cpp ../QChatClient/loginscreen.cpp ../QChatClient/chatroom.cpp ../QChatClient/Socket.cpp ../QChatClient/chatwidget.cpp ../QChatClient/chatwindow.cpp ../QChatClient/chatinputtext.cpp .tmp/QChatClient1.0.0/ && $(COPY_FILE) --parents ../QChatClient/chatwindow.ui ../QChatClient/loginscreen.ui ../QChatClient/chatroom.ui .tmp/QChatClient1.0.0/ && (cd `dirname .tmp/QChatClient1.0.0` && $(TAR) QChatClient1.0.0.tar QChatClient1.0.0 && $(COMPRESS) QChatClient1.0.0.tar) && $(MOVE) `dirname .tmp/QChatClient1.0.0`/QChatClient1.0.0.tar.gz . && $(DEL_FILE) -r .tmp/QChatClient1.0.0 278 $(COPY_FILE) --parents $(SOURCES) $(DIST) .tmp/QChatClient1.0.0/ && $(COPY_FILE) --parents ../QChatClient/loginscreen.h ../QChatClient/chatroom.h ../QChatClient/SocketException.h ../QChatClient/Socket.h ../QChatClient/chatwidget.h ../QChatClient/chatwindow.h ../QChatClient/chatinputtext.h .tmp/QChatClient1.0.0/ && $(COPY_FILE) --parents ../QChatClient/main.cpp ../QChatClient/loginscreen.cpp ../QChatClient/chatroom.cpp ../QChatClient/Socket.cpp ../QChatClient/chatwidget.cpp ../QChatClient/chatwindow.cpp ../QChatClient/chatinputtext.cpp .tmp/QChatClient1.0.0/ && $(COPY_FILE) --parents ../QChatClient/chatwindow.ui ../QChatClient/loginscreen.ui ../QChatClient/chatroom.ui .tmp/QChatClient1.0.0/ && (cd `dirname .tmp/QChatClient1.0.0` && $(TAR) QChatClient1.0.0.tar QChatClient1.0.0 && $(COMPRESS) QChatClient1.0.0.tar) && $(MOVE) `dirname .tmp/QChatClient1.0.0`/QChatClient1.0.0.tar.gz . && $(DEL_FILE) -r .tmp/QChatClient1.0.0
279 279
280 280
@@ -338,6 +338,7 @@ moc_loginscreen.cpp: /usr/include/qt5/QtWidgets/QDialog \ @@ -338,6 +338,7 @@ moc_loginscreen.cpp: /usr/include/qt5/QtWidgets/QDialog \
338 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 338 /usr/include/qt5/QtCore/qoldbasicatomic.h \
339 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 339 /usr/include/qt5/QtCore/qatomic_vxworks.h \
340 /usr/include/qt5/QtCore/qatomic_power.h \ 340 /usr/include/qt5/QtCore/qatomic_power.h \
  341 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
341 /usr/include/qt5/QtCore/qatomic_alpha.h \ 342 /usr/include/qt5/QtCore/qatomic_alpha.h \
342 /usr/include/qt5/QtCore/qatomic_armv7.h \ 343 /usr/include/qt5/QtCore/qatomic_armv7.h \
343 /usr/include/qt5/QtCore/qatomic_armv6.h \ 344 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -425,7 +426,7 @@ moc_loginscreen.cpp: /usr/include/qt5/QtWidgets/QDialog \ @@ -425,7 +426,7 @@ moc_loginscreen.cpp: /usr/include/qt5/QtWidgets/QDialog \
425 ../QChatClient/SocketException.h \ 426 ../QChatClient/SocketException.h \
426 ../QChatClient/chatwindow.h \ 427 ../QChatClient/chatwindow.h \
427 ../QChatClient/loginscreen.h 428 ../QChatClient/loginscreen.h
428 - /usr/lib/i386-linux-gnu/qt5/bin/moc $(DEFINES) $(INCPATH) ../QChatClient/loginscreen.h -o moc_loginscreen.cpp 429 + /usr/lib/x86_64-linux-gnu/qt5/bin/moc $(DEFINES) $(INCPATH) ../QChatClient/loginscreen.h -o moc_loginscreen.cpp
429 430
430 moc_chatroom.cpp: /usr/include/qt5/QtWidgets/QMainWindow \ 431 moc_chatroom.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
431 /usr/include/qt5/QtWidgets/qmainwindow.h \ 432 /usr/include/qt5/QtWidgets/qmainwindow.h \
@@ -460,6 +461,7 @@ moc_chatroom.cpp: /usr/include/qt5/QtWidgets/QMainWindow \ @@ -460,6 +461,7 @@ moc_chatroom.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
460 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 461 /usr/include/qt5/QtCore/qoldbasicatomic.h \
461 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 462 /usr/include/qt5/QtCore/qatomic_vxworks.h \
462 /usr/include/qt5/QtCore/qatomic_power.h \ 463 /usr/include/qt5/QtCore/qatomic_power.h \
  464 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
463 /usr/include/qt5/QtCore/qatomic_alpha.h \ 465 /usr/include/qt5/QtCore/qatomic_alpha.h \
464 /usr/include/qt5/QtCore/qatomic_armv7.h \ 466 /usr/include/qt5/QtCore/qatomic_armv7.h \
465 /usr/include/qt5/QtCore/qatomic_armv6.h \ 467 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -547,7 +549,7 @@ moc_chatroom.cpp: /usr/include/qt5/QtWidgets/QMainWindow \ @@ -547,7 +549,7 @@ moc_chatroom.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
547 ../QChatClient/Socket.h \ 549 ../QChatClient/Socket.h \
548 ../QChatClient/SocketException.h \ 550 ../QChatClient/SocketException.h \
549 ../QChatClient/chatroom.h 551 ../QChatClient/chatroom.h
550 - /usr/lib/i386-linux-gnu/qt5/bin/moc $(DEFINES) $(INCPATH) ../QChatClient/chatroom.h -o moc_chatroom.cpp 552 + /usr/lib/x86_64-linux-gnu/qt5/bin/moc $(DEFINES) $(INCPATH) ../QChatClient/chatroom.h -o moc_chatroom.cpp
551 553
552 moc_chatwidget.cpp: /usr/include/qt5/QtWidgets/QTextEdit \ 554 moc_chatwidget.cpp: /usr/include/qt5/QtWidgets/QTextEdit \
553 /usr/include/qt5/QtWidgets/qtextedit.h \ 555 /usr/include/qt5/QtWidgets/qtextedit.h \
@@ -584,6 +586,7 @@ moc_chatwidget.cpp: /usr/include/qt5/QtWidgets/QTextEdit \ @@ -584,6 +586,7 @@ moc_chatwidget.cpp: /usr/include/qt5/QtWidgets/QTextEdit \
584 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 586 /usr/include/qt5/QtCore/qoldbasicatomic.h \
585 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 587 /usr/include/qt5/QtCore/qatomic_vxworks.h \
586 /usr/include/qt5/QtCore/qatomic_power.h \ 588 /usr/include/qt5/QtCore/qatomic_power.h \
  589 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
587 /usr/include/qt5/QtCore/qatomic_alpha.h \ 590 /usr/include/qt5/QtCore/qatomic_alpha.h \
588 /usr/include/qt5/QtCore/qatomic_armv7.h \ 591 /usr/include/qt5/QtCore/qatomic_armv7.h \
589 /usr/include/qt5/QtCore/qatomic_armv6.h \ 592 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -671,7 +674,7 @@ moc_chatwidget.cpp: /usr/include/qt5/QtWidgets/QTextEdit \ @@ -671,7 +674,7 @@ moc_chatwidget.cpp: /usr/include/qt5/QtWidgets/QTextEdit \
671 /usr/include/qt5/QtCore/QFile \ 674 /usr/include/qt5/QtCore/QFile \
672 /usr/include/qt5/QtCore/QTextStream \ 675 /usr/include/qt5/QtCore/QTextStream \
673 ../QChatClient/chatwidget.h 676 ../QChatClient/chatwidget.h
674 - /usr/lib/i386-linux-gnu/qt5/bin/moc $(DEFINES) $(INCPATH) ../QChatClient/chatwidget.h -o moc_chatwidget.cpp 677 + /usr/lib/x86_64-linux-gnu/qt5/bin/moc $(DEFINES) $(INCPATH) ../QChatClient/chatwidget.h -o moc_chatwidget.cpp
675 678
676 moc_chatwindow.cpp: /usr/include/qt5/QtWidgets/QMainWindow \ 679 moc_chatwindow.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
677 /usr/include/qt5/QtWidgets/qmainwindow.h \ 680 /usr/include/qt5/QtWidgets/qmainwindow.h \
@@ -706,6 +709,7 @@ moc_chatwindow.cpp: /usr/include/qt5/QtWidgets/QMainWindow \ @@ -706,6 +709,7 @@ moc_chatwindow.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
706 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 709 /usr/include/qt5/QtCore/qoldbasicatomic.h \
707 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 710 /usr/include/qt5/QtCore/qatomic_vxworks.h \
708 /usr/include/qt5/QtCore/qatomic_power.h \ 711 /usr/include/qt5/QtCore/qatomic_power.h \
  712 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
709 /usr/include/qt5/QtCore/qatomic_alpha.h \ 713 /usr/include/qt5/QtCore/qatomic_alpha.h \
710 /usr/include/qt5/QtCore/qatomic_armv7.h \ 714 /usr/include/qt5/QtCore/qatomic_armv7.h \
711 /usr/include/qt5/QtCore/qatomic_armv6.h \ 715 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -793,7 +797,7 @@ moc_chatwindow.cpp: /usr/include/qt5/QtWidgets/QMainWindow \ @@ -793,7 +797,7 @@ moc_chatwindow.cpp: /usr/include/qt5/QtWidgets/QMainWindow \
793 ../QChatClient/SocketException.h \ 797 ../QChatClient/SocketException.h \
794 ../QChatClient/chatwindow.h \ 798 ../QChatClient/chatwindow.h \
795 ../QChatClient/chatwindow.h 799 ../QChatClient/chatwindow.h
796 - /usr/lib/i386-linux-gnu/qt5/bin/moc $(DEFINES) $(INCPATH) ../QChatClient/chatwindow.h -o moc_chatwindow.cpp 800 + /usr/lib/x86_64-linux-gnu/qt5/bin/moc $(DEFINES) $(INCPATH) ../QChatClient/chatwindow.h -o moc_chatwindow.cpp
797 801
798 moc_chatinputtext.cpp: /usr/include/qt5/QtWidgets/QTextEdit \ 802 moc_chatinputtext.cpp: /usr/include/qt5/QtWidgets/QTextEdit \
799 /usr/include/qt5/QtWidgets/qtextedit.h \ 803 /usr/include/qt5/QtWidgets/qtextedit.h \
@@ -830,6 +834,7 @@ moc_chatinputtext.cpp: /usr/include/qt5/QtWidgets/QTextEdit \ @@ -830,6 +834,7 @@ moc_chatinputtext.cpp: /usr/include/qt5/QtWidgets/QTextEdit \
830 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 834 /usr/include/qt5/QtCore/qoldbasicatomic.h \
831 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 835 /usr/include/qt5/QtCore/qatomic_vxworks.h \
832 /usr/include/qt5/QtCore/qatomic_power.h \ 836 /usr/include/qt5/QtCore/qatomic_power.h \
  837 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
833 /usr/include/qt5/QtCore/qatomic_alpha.h \ 838 /usr/include/qt5/QtCore/qatomic_alpha.h \
834 /usr/include/qt5/QtCore/qatomic_armv7.h \ 839 /usr/include/qt5/QtCore/qatomic_armv7.h \
835 /usr/include/qt5/QtCore/qatomic_armv6.h \ 840 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -911,7 +916,7 @@ moc_chatinputtext.cpp: /usr/include/qt5/QtWidgets/QTextEdit \ @@ -911,7 +916,7 @@ moc_chatinputtext.cpp: /usr/include/qt5/QtWidgets/QTextEdit \
911 /usr/include/qt5/QtGui/qpen.h \ 916 /usr/include/qt5/QtGui/qpen.h \
912 /usr/include/qt5/QtGui/QKeyEvent \ 917 /usr/include/qt5/QtGui/QKeyEvent \
913 ../QChatClient/chatinputtext.h 918 ../QChatClient/chatinputtext.h
914 - /usr/lib/i386-linux-gnu/qt5/bin/moc $(DEFINES) $(INCPATH) ../QChatClient/chatinputtext.h -o moc_chatinputtext.cpp 919 + /usr/lib/x86_64-linux-gnu/qt5/bin/moc $(DEFINES) $(INCPATH) ../QChatClient/chatinputtext.h -o moc_chatinputtext.cpp
915 920
916 compiler_wayland-code_make_all: 921 compiler_wayland-code_make_all:
917 compiler_wayland-code_clean: 922 compiler_wayland-code_clean:
@@ -958,6 +963,7 @@ ui_chatwindow.h: ../QChatClient/chatwindow.ui \ @@ -958,6 +963,7 @@ ui_chatwindow.h: ../QChatClient/chatwindow.ui \
958 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 963 /usr/include/qt5/QtCore/qoldbasicatomic.h \
959 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 964 /usr/include/qt5/QtCore/qatomic_vxworks.h \
960 /usr/include/qt5/QtCore/qatomic_power.h \ 965 /usr/include/qt5/QtCore/qatomic_power.h \
  966 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
961 /usr/include/qt5/QtCore/qatomic_alpha.h \ 967 /usr/include/qt5/QtCore/qatomic_alpha.h \
962 /usr/include/qt5/QtCore/qatomic_armv7.h \ 968 /usr/include/qt5/QtCore/qatomic_armv7.h \
963 /usr/include/qt5/QtCore/qatomic_armv6.h \ 969 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -1079,6 +1085,7 @@ ui_chatwindow.h: ../QChatClient/chatwindow.ui \ @@ -1079,6 +1085,7 @@ ui_chatwindow.h: ../QChatClient/chatwindow.ui \
1079 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 1085 /usr/include/qt5/QtCore/qoldbasicatomic.h \
1080 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 1086 /usr/include/qt5/QtCore/qatomic_vxworks.h \
1081 /usr/include/qt5/QtCore/qatomic_power.h \ 1087 /usr/include/qt5/QtCore/qatomic_power.h \
  1088 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
1082 /usr/include/qt5/QtCore/qatomic_alpha.h \ 1089 /usr/include/qt5/QtCore/qatomic_alpha.h \
1083 /usr/include/qt5/QtCore/qatomic_armv7.h \ 1090 /usr/include/qt5/QtCore/qatomic_armv7.h \
1084 /usr/include/qt5/QtCore/qatomic_armv6.h \ 1091 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -1159,10 +1166,10 @@ ui_chatwindow.h: ../QChatClient/chatwindow.ui \ @@ -1159,10 +1166,10 @@ ui_chatwindow.h: ../QChatClient/chatwindow.ui \
1159 /usr/include/qt5/QtGui/qtextformat.h \ 1166 /usr/include/qt5/QtGui/qtextformat.h \
1160 /usr/include/qt5/QtGui/qpen.h \ 1167 /usr/include/qt5/QtGui/qpen.h \
1161 /usr/include/qt5/QtGui/QKeyEvent 1168 /usr/include/qt5/QtGui/QKeyEvent
1162 - /usr/lib/i386-linux-gnu/qt5/bin/uic ../QChatClient/chatwindow.ui -o ui_chatwindow.h 1169 + /usr/lib/x86_64-linux-gnu/qt5/bin/uic ../QChatClient/chatwindow.ui -o ui_chatwindow.h
1163 1170
1164 ui_loginscreen.h: ../QChatClient/loginscreen.ui 1171 ui_loginscreen.h: ../QChatClient/loginscreen.ui
1165 - /usr/lib/i386-linux-gnu/qt5/bin/uic ../QChatClient/loginscreen.ui -o ui_loginscreen.h 1172 + /usr/lib/x86_64-linux-gnu/qt5/bin/uic ../QChatClient/loginscreen.ui -o ui_loginscreen.h
1166 1173
1167 ui_chatroom.h: ../QChatClient/chatroom.ui \ 1174 ui_chatroom.h: ../QChatClient/chatroom.ui \
1168 ../QChatClient/chatwidget.h \ 1175 ../QChatClient/chatwidget.h \
@@ -1202,6 +1209,7 @@ ui_chatroom.h: ../QChatClient/chatroom.ui \ @@ -1202,6 +1209,7 @@ ui_chatroom.h: ../QChatClient/chatroom.ui \
1202 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 1209 /usr/include/qt5/QtCore/qoldbasicatomic.h \
1203 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 1210 /usr/include/qt5/QtCore/qatomic_vxworks.h \
1204 /usr/include/qt5/QtCore/qatomic_power.h \ 1211 /usr/include/qt5/QtCore/qatomic_power.h \
  1212 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
1205 /usr/include/qt5/QtCore/qatomic_alpha.h \ 1213 /usr/include/qt5/QtCore/qatomic_alpha.h \
1206 /usr/include/qt5/QtCore/qatomic_armv7.h \ 1214 /usr/include/qt5/QtCore/qatomic_armv7.h \
1207 /usr/include/qt5/QtCore/qatomic_armv6.h \ 1215 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -1323,6 +1331,7 @@ ui_chatroom.h: ../QChatClient/chatroom.ui \ @@ -1323,6 +1331,7 @@ ui_chatroom.h: ../QChatClient/chatroom.ui \
1323 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 1331 /usr/include/qt5/QtCore/qoldbasicatomic.h \
1324 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 1332 /usr/include/qt5/QtCore/qatomic_vxworks.h \
1325 /usr/include/qt5/QtCore/qatomic_power.h \ 1333 /usr/include/qt5/QtCore/qatomic_power.h \
  1334 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
1326 /usr/include/qt5/QtCore/qatomic_alpha.h \ 1335 /usr/include/qt5/QtCore/qatomic_alpha.h \
1327 /usr/include/qt5/QtCore/qatomic_armv7.h \ 1336 /usr/include/qt5/QtCore/qatomic_armv7.h \
1328 /usr/include/qt5/QtCore/qatomic_armv6.h \ 1337 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -1403,7 +1412,7 @@ ui_chatroom.h: ../QChatClient/chatroom.ui \ @@ -1403,7 +1412,7 @@ ui_chatroom.h: ../QChatClient/chatroom.ui \
1403 /usr/include/qt5/QtGui/qtextformat.h \ 1412 /usr/include/qt5/QtGui/qtextformat.h \
1404 /usr/include/qt5/QtGui/qpen.h \ 1413 /usr/include/qt5/QtGui/qpen.h \
1405 /usr/include/qt5/QtGui/QKeyEvent 1414 /usr/include/qt5/QtGui/QKeyEvent
1406 - /usr/lib/i386-linux-gnu/qt5/bin/uic ../QChatClient/chatroom.ui -o ui_chatroom.h 1415 + /usr/lib/x86_64-linux-gnu/qt5/bin/uic ../QChatClient/chatroom.ui -o ui_chatroom.h
1407 1416
1408 compiler_yacc_decl_make_all: 1417 compiler_yacc_decl_make_all:
1409 compiler_yacc_decl_clean: 1418 compiler_yacc_decl_clean:
@@ -1449,6 +1458,7 @@ main.o: ../QChatClient/main.cpp ../QChatClient/loginscreen.h \ @@ -1449,6 +1458,7 @@ main.o: ../QChatClient/main.cpp ../QChatClient/loginscreen.h \
1449 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 1458 /usr/include/qt5/QtCore/qoldbasicatomic.h \
1450 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 1459 /usr/include/qt5/QtCore/qatomic_vxworks.h \
1451 /usr/include/qt5/QtCore/qatomic_power.h \ 1460 /usr/include/qt5/QtCore/qatomic_power.h \
  1461 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
1452 /usr/include/qt5/QtCore/qatomic_alpha.h \ 1462 /usr/include/qt5/QtCore/qatomic_alpha.h \
1453 /usr/include/qt5/QtCore/qatomic_armv7.h \ 1463 /usr/include/qt5/QtCore/qatomic_armv7.h \
1454 /usr/include/qt5/QtCore/qatomic_armv6.h \ 1464 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -1577,6 +1587,7 @@ loginscreen.o: ../QChatClient/loginscreen.cpp ../QChatClient/loginscreen.h \ @@ -1577,6 +1587,7 @@ loginscreen.o: ../QChatClient/loginscreen.cpp ../QChatClient/loginscreen.h \
1577 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 1587 /usr/include/qt5/QtCore/qoldbasicatomic.h \
1578 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 1588 /usr/include/qt5/QtCore/qatomic_vxworks.h \
1579 /usr/include/qt5/QtCore/qatomic_power.h \ 1589 /usr/include/qt5/QtCore/qatomic_power.h \
  1590 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
1580 /usr/include/qt5/QtCore/qatomic_alpha.h \ 1591 /usr/include/qt5/QtCore/qatomic_alpha.h \
1581 /usr/include/qt5/QtCore/qatomic_armv7.h \ 1592 /usr/include/qt5/QtCore/qatomic_armv7.h \
1582 /usr/include/qt5/QtCore/qatomic_armv6.h \ 1593 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -1662,7 +1673,53 @@ loginscreen.o: ../QChatClient/loginscreen.cpp ../QChatClient/loginscreen.h \ @@ -1662,7 +1673,53 @@ loginscreen.o: ../QChatClient/loginscreen.cpp ../QChatClient/loginscreen.h \
1662 ../QChatClient/chatwindow.h \ 1673 ../QChatClient/chatwindow.h \
1663 ../QChatClient/Socket.h \ 1674 ../QChatClient/Socket.h \
1664 ../QChatClient/SocketException.h \ 1675 ../QChatClient/SocketException.h \
1665 - ui_loginscreen.h 1676 + ui_loginscreen.h \
  1677 + /usr/include/qt5/QtCore/QVariant \
  1678 + /usr/include/qt5/QtWidgets/QAction \
  1679 + /usr/include/qt5/QtWidgets/qaction.h \
  1680 + /usr/include/qt5/QtWidgets/qactiongroup.h \
  1681 + /usr/include/qt5/QtWidgets/QApplication \
  1682 + /usr/include/qt5/QtWidgets/qapplication.h \
  1683 + /usr/include/qt5/QtCore/qcoreapplication.h \
  1684 + /usr/include/qt5/QtCore/qeventloop.h \
  1685 + /usr/include/qt5/QtWidgets/qdesktopwidget.h \
  1686 + /usr/include/qt5/QtGui/qguiapplication.h \
  1687 + /usr/include/qt5/QtGui/qinputmethod.h \
  1688 + /usr/include/qt5/QtWidgets/QButtonGroup \
  1689 + /usr/include/qt5/QtWidgets/qbuttongroup.h \
  1690 + /usr/include/qt5/QtWidgets/QGridLayout \
  1691 + /usr/include/qt5/QtWidgets/qgridlayout.h \
  1692 + /usr/include/qt5/QtWidgets/qlayout.h \
  1693 + /usr/include/qt5/QtWidgets/qlayoutitem.h \
  1694 + /usr/include/qt5/QtWidgets/qboxlayout.h \
  1695 + /usr/include/qt5/QtWidgets/QHeaderView \
  1696 + /usr/include/qt5/QtWidgets/qheaderview.h \
  1697 + /usr/include/qt5/QtWidgets/qabstractitemview.h \
  1698 + /usr/include/qt5/QtWidgets/qabstractscrollarea.h \
  1699 + /usr/include/qt5/QtWidgets/qframe.h \
  1700 + /usr/include/qt5/QtCore/qitemselectionmodel.h \
  1701 + /usr/include/qt5/QtWidgets/qabstractitemdelegate.h \
  1702 + /usr/include/qt5/QtWidgets/qstyleoption.h \
  1703 + /usr/include/qt5/QtWidgets/qabstractspinbox.h \
  1704 + /usr/include/qt5/QtGui/qvalidator.h \
  1705 + /usr/include/qt5/QtWidgets/qslider.h \
  1706 + /usr/include/qt5/QtWidgets/qabstractslider.h \
  1707 + /usr/include/qt5/QtWidgets/qstyle.h \
  1708 + /usr/include/qt5/QtWidgets/qtabbar.h \
  1709 + /usr/include/qt5/QtWidgets/qrubberband.h \
  1710 + /usr/include/qt5/QtWidgets/QLabel \
  1711 + /usr/include/qt5/QtWidgets/qlabel.h \
  1712 + /usr/include/qt5/QtWidgets/QLineEdit \
  1713 + /usr/include/qt5/QtWidgets/qlineedit.h \
  1714 + /usr/include/qt5/QtGui/qtextcursor.h \
  1715 + /usr/include/qt5/QtGui/qtextformat.h \
  1716 + /usr/include/qt5/QtGui/qpen.h \
  1717 + /usr/include/qt5/QtGui/qtextoption.h \
  1718 + /usr/include/qt5/QtWidgets/QPushButton \
  1719 + /usr/include/qt5/QtWidgets/qpushbutton.h \
  1720 + /usr/include/qt5/QtWidgets/qabstractbutton.h \
  1721 + /usr/include/qt5/QtWidgets/QSpacerItem \
  1722 + /usr/include/qt5/QtWidgets/QWidget
1666 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o loginscreen.o ../QChatClient/loginscreen.cpp 1723 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o loginscreen.o ../QChatClient/loginscreen.cpp
1667 1724
1668 chatroom.o: ../QChatClient/chatroom.cpp ../QChatClient/chatroom.h \ 1725 chatroom.o: ../QChatClient/chatroom.cpp ../QChatClient/chatroom.h \
@@ -1699,6 +1756,7 @@ chatroom.o: ../QChatClient/chatroom.cpp ../QChatClient/chatroom.h \ @@ -1699,6 +1756,7 @@ chatroom.o: ../QChatClient/chatroom.cpp ../QChatClient/chatroom.h \
1699 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 1756 /usr/include/qt5/QtCore/qoldbasicatomic.h \
1700 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 1757 /usr/include/qt5/QtCore/qatomic_vxworks.h \
1701 /usr/include/qt5/QtCore/qatomic_power.h \ 1758 /usr/include/qt5/QtCore/qatomic_power.h \
  1759 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
1702 /usr/include/qt5/QtCore/qatomic_alpha.h \ 1760 /usr/include/qt5/QtCore/qatomic_alpha.h \
1703 /usr/include/qt5/QtCore/qatomic_armv7.h \ 1761 /usr/include/qt5/QtCore/qatomic_armv7.h \
1704 /usr/include/qt5/QtCore/qatomic_armv6.h \ 1762 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -1784,7 +1842,69 @@ chatroom.o: ../QChatClient/chatroom.cpp ../QChatClient/chatroom.h \ @@ -1784,7 +1842,69 @@ chatroom.o: ../QChatClient/chatroom.cpp ../QChatClient/chatroom.h \
1784 ../QChatClient/Socket.h \ 1842 ../QChatClient/Socket.h \
1785 ../QChatClient/SocketException.h \ 1843 ../QChatClient/SocketException.h \
1786 ../QChatClient/chatwindow.h \ 1844 ../QChatClient/chatwindow.h \
1787 - ui_chatroom.h 1845 + ui_chatroom.h \
  1846 + /usr/include/qt5/QtCore/QVariant \
  1847 + /usr/include/qt5/QtWidgets/QAction \
  1848 + /usr/include/qt5/QtWidgets/qaction.h \
  1849 + /usr/include/qt5/QtWidgets/qactiongroup.h \
  1850 + /usr/include/qt5/QtWidgets/QApplication \
  1851 + /usr/include/qt5/QtWidgets/qapplication.h \
  1852 + /usr/include/qt5/QtCore/qcoreapplication.h \
  1853 + /usr/include/qt5/QtCore/qeventloop.h \
  1854 + /usr/include/qt5/QtWidgets/qdesktopwidget.h \
  1855 + /usr/include/qt5/QtGui/qguiapplication.h \
  1856 + /usr/include/qt5/QtGui/qinputmethod.h \
  1857 + /usr/include/qt5/QtWidgets/QButtonGroup \
  1858 + /usr/include/qt5/QtWidgets/qbuttongroup.h \
  1859 + /usr/include/qt5/QtWidgets/QGridLayout \
  1860 + /usr/include/qt5/QtWidgets/qgridlayout.h \
  1861 + /usr/include/qt5/QtWidgets/qlayout.h \
  1862 + /usr/include/qt5/QtWidgets/qlayoutitem.h \
  1863 + /usr/include/qt5/QtWidgets/qboxlayout.h \
  1864 + /usr/include/qt5/QtWidgets/QHeaderView \
  1865 + /usr/include/qt5/QtWidgets/qheaderview.h \
  1866 + /usr/include/qt5/QtWidgets/qabstractitemview.h \
  1867 + /usr/include/qt5/QtWidgets/qabstractscrollarea.h \
  1868 + /usr/include/qt5/QtWidgets/qframe.h \
  1869 + /usr/include/qt5/QtCore/qitemselectionmodel.h \
  1870 + /usr/include/qt5/QtWidgets/qabstractitemdelegate.h \
  1871 + /usr/include/qt5/QtWidgets/qstyleoption.h \
  1872 + /usr/include/qt5/QtWidgets/qabstractspinbox.h \
  1873 + /usr/include/qt5/QtGui/qvalidator.h \
  1874 + /usr/include/qt5/QtWidgets/qslider.h \
  1875 + /usr/include/qt5/QtWidgets/qabstractslider.h \
  1876 + /usr/include/qt5/QtWidgets/qstyle.h \
  1877 + /usr/include/qt5/QtWidgets/qtabbar.h \
  1878 + /usr/include/qt5/QtWidgets/qrubberband.h \
  1879 + /usr/include/qt5/QtWidgets/QListWidget \
  1880 + /usr/include/qt5/QtWidgets/qlistwidget.h \
  1881 + /usr/include/qt5/QtWidgets/qlistview.h \
  1882 + /usr/include/qt5/QtWidgets/QMenu \
  1883 + /usr/include/qt5/QtWidgets/qmenu.h \
  1884 + /usr/include/qt5/QtWidgets/QMenuBar \
  1885 + /usr/include/qt5/QtWidgets/qmenubar.h \
  1886 + /usr/include/qt5/QtWidgets/QPushButton \
  1887 + /usr/include/qt5/QtWidgets/qpushbutton.h \
  1888 + /usr/include/qt5/QtWidgets/qabstractbutton.h \
  1889 + /usr/include/qt5/QtWidgets/QSplitter \
  1890 + /usr/include/qt5/QtWidgets/qsplitter.h \
  1891 + /usr/include/qt5/QtWidgets/QWidget \
  1892 + ../QChatClient/chatinputtext.h \
  1893 + /usr/include/qt5/QtWidgets/QTextEdit \
  1894 + /usr/include/qt5/QtWidgets/qtextedit.h \
  1895 + /usr/include/qt5/QtGui/qtextdocument.h \
  1896 + /usr/include/qt5/QtGui/qtextoption.h \
  1897 + /usr/include/qt5/QtGui/qtextcursor.h \
  1898 + /usr/include/qt5/QtGui/qtextformat.h \
  1899 + /usr/include/qt5/QtGui/qpen.h \
  1900 + /usr/include/qt5/QtGui/QKeyEvent \
  1901 + ../QChatClient/chatwidget.h \
  1902 + /usr/include/qt5/QtWidgets/QFileDialog \
  1903 + /usr/include/qt5/QtWidgets/qfiledialog.h \
  1904 + /usr/include/qt5/QtCore/qdir.h \
  1905 + /usr/include/qt5/QtCore/qfileinfo.h \
  1906 + /usr/include/qt5/QtCore/QFile \
  1907 + /usr/include/qt5/QtCore/QTextStream
1788 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o chatroom.o ../QChatClient/chatroom.cpp 1908 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o chatroom.o ../QChatClient/chatroom.cpp
1789 1909
1790 Socket.o: ../QChatClient/Socket.cpp ../QChatClient/Socket.h \ 1910 Socket.o: ../QChatClient/Socket.cpp ../QChatClient/Socket.h \
@@ -1827,6 +1947,7 @@ chatwidget.o: ../QChatClient/chatwidget.cpp ../QChatClient/chatwidget.h \ @@ -1827,6 +1947,7 @@ chatwidget.o: ../QChatClient/chatwidget.cpp ../QChatClient/chatwidget.h \
1827 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 1947 /usr/include/qt5/QtCore/qoldbasicatomic.h \
1828 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 1948 /usr/include/qt5/QtCore/qatomic_vxworks.h \
1829 /usr/include/qt5/QtCore/qatomic_power.h \ 1949 /usr/include/qt5/QtCore/qatomic_power.h \
  1950 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
1830 /usr/include/qt5/QtCore/qatomic_alpha.h \ 1951 /usr/include/qt5/QtCore/qatomic_alpha.h \
1831 /usr/include/qt5/QtCore/qatomic_armv7.h \ 1952 /usr/include/qt5/QtCore/qatomic_armv7.h \
1832 /usr/include/qt5/QtCore/qatomic_armv6.h \ 1953 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -1949,6 +2070,7 @@ chatwindow.o: ../QChatClient/chatwindow.cpp ../QChatClient/chatwindow.h \ @@ -1949,6 +2070,7 @@ chatwindow.o: ../QChatClient/chatwindow.cpp ../QChatClient/chatwindow.h \
1949 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 2070 /usr/include/qt5/QtCore/qoldbasicatomic.h \
1950 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 2071 /usr/include/qt5/QtCore/qatomic_vxworks.h \
1951 /usr/include/qt5/QtCore/qatomic_power.h \ 2072 /usr/include/qt5/QtCore/qatomic_power.h \
  2073 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
1952 /usr/include/qt5/QtCore/qatomic_alpha.h \ 2074 /usr/include/qt5/QtCore/qatomic_alpha.h \
1953 /usr/include/qt5/QtCore/qatomic_armv7.h \ 2075 /usr/include/qt5/QtCore/qatomic_armv7.h \
1954 /usr/include/qt5/QtCore/qatomic_armv6.h \ 2076 /usr/include/qt5/QtCore/qatomic_armv6.h \
@@ -2034,7 +2156,67 @@ chatwindow.o: ../QChatClient/chatwindow.cpp ../QChatClient/chatwindow.h \ @@ -2034,7 +2156,67 @@ chatwindow.o: ../QChatClient/chatwindow.cpp ../QChatClient/chatwindow.h \
2034 /usr/include/qt5/QtCore/QRegExp \ 2156 /usr/include/qt5/QtCore/QRegExp \
2035 ../QChatClient/Socket.h \ 2157 ../QChatClient/Socket.h \
2036 ../QChatClient/SocketException.h \ 2158 ../QChatClient/SocketException.h \
2037 - ui_chatwindow.h 2159 + ui_chatwindow.h \
  2160 + /usr/include/qt5/QtCore/QVariant \
  2161 + /usr/include/qt5/QtWidgets/QAction \
  2162 + /usr/include/qt5/QtWidgets/qaction.h \
  2163 + /usr/include/qt5/QtWidgets/qactiongroup.h \
  2164 + /usr/include/qt5/QtWidgets/QApplication \
  2165 + /usr/include/qt5/QtWidgets/qapplication.h \
  2166 + /usr/include/qt5/QtCore/qcoreapplication.h \
  2167 + /usr/include/qt5/QtCore/qeventloop.h \
  2168 + /usr/include/qt5/QtWidgets/qdesktopwidget.h \
  2169 + /usr/include/qt5/QtGui/qguiapplication.h \
  2170 + /usr/include/qt5/QtGui/qinputmethod.h \
  2171 + /usr/include/qt5/QtWidgets/QButtonGroup \
  2172 + /usr/include/qt5/QtWidgets/qbuttongroup.h \
  2173 + /usr/include/qt5/QtWidgets/QGridLayout \
  2174 + /usr/include/qt5/QtWidgets/qgridlayout.h \
  2175 + /usr/include/qt5/QtWidgets/qlayout.h \
  2176 + /usr/include/qt5/QtWidgets/qlayoutitem.h \
  2177 + /usr/include/qt5/QtWidgets/qboxlayout.h \
  2178 + /usr/include/qt5/QtWidgets/QHeaderView \
  2179 + /usr/include/qt5/QtWidgets/qheaderview.h \
  2180 + /usr/include/qt5/QtWidgets/qabstractitemview.h \
  2181 + /usr/include/qt5/QtWidgets/qabstractscrollarea.h \
  2182 + /usr/include/qt5/QtWidgets/qframe.h \
  2183 + /usr/include/qt5/QtCore/qitemselectionmodel.h \
  2184 + /usr/include/qt5/QtWidgets/qabstractitemdelegate.h \
  2185 + /usr/include/qt5/QtWidgets/qstyleoption.h \
  2186 + /usr/include/qt5/QtWidgets/qabstractspinbox.h \
  2187 + /usr/include/qt5/QtGui/qvalidator.h \
  2188 + /usr/include/qt5/QtWidgets/qslider.h \
  2189 + /usr/include/qt5/QtWidgets/qabstractslider.h \
  2190 + /usr/include/qt5/QtWidgets/qstyle.h \
  2191 + /usr/include/qt5/QtWidgets/qtabbar.h \
  2192 + /usr/include/qt5/QtWidgets/qrubberband.h \
  2193 + /usr/include/qt5/QtWidgets/QMenu \
  2194 + /usr/include/qt5/QtWidgets/qmenu.h \
  2195 + /usr/include/qt5/QtWidgets/QMenuBar \
  2196 + /usr/include/qt5/QtWidgets/qmenubar.h \
  2197 + /usr/include/qt5/QtWidgets/QPushButton \
  2198 + /usr/include/qt5/QtWidgets/qpushbutton.h \
  2199 + /usr/include/qt5/QtWidgets/qabstractbutton.h \
  2200 + /usr/include/qt5/QtWidgets/QSpacerItem \
  2201 + /usr/include/qt5/QtWidgets/QSplitter \
  2202 + /usr/include/qt5/QtWidgets/qsplitter.h \
  2203 + /usr/include/qt5/QtWidgets/QWidget \
  2204 + ../QChatClient/chatinputtext.h \
  2205 + /usr/include/qt5/QtWidgets/QTextEdit \
  2206 + /usr/include/qt5/QtWidgets/qtextedit.h \
  2207 + /usr/include/qt5/QtGui/qtextdocument.h \
  2208 + /usr/include/qt5/QtGui/qtextoption.h \
  2209 + /usr/include/qt5/QtGui/qtextcursor.h \
  2210 + /usr/include/qt5/QtGui/qtextformat.h \
  2211 + /usr/include/qt5/QtGui/qpen.h \
  2212 + /usr/include/qt5/QtGui/QKeyEvent \
  2213 + ../QChatClient/chatwidget.h \
  2214 + /usr/include/qt5/QtWidgets/QFileDialog \
  2215 + /usr/include/qt5/QtWidgets/qfiledialog.h \
  2216 + /usr/include/qt5/QtCore/qdir.h \
  2217 + /usr/include/qt5/QtCore/qfileinfo.h \
  2218 + /usr/include/qt5/QtCore/QFile \
  2219 + /usr/include/qt5/QtCore/QTextStream
2038 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o chatwindow.o ../QChatClient/chatwindow.cpp 2220 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o chatwindow.o ../QChatClient/chatwindow.cpp
2039 2221
2040 chatinputtext.o: ../QChatClient/chatinputtext.cpp ../QChatClient/chatinputtext.h \ 2222 chatinputtext.o: ../QChatClient/chatinputtext.cpp ../QChatClient/chatinputtext.h \
@@ -2073,6 +2255,7 @@ chatinputtext.o: ../QChatClient/chatinputtext.cpp ../QChatClient/chatinputtext.h @@ -2073,6 +2255,7 @@ chatinputtext.o: ../QChatClient/chatinputtext.cpp ../QChatClient/chatinputtext.h
2073 /usr/include/qt5/QtCore/qoldbasicatomic.h \ 2255 /usr/include/qt5/QtCore/qoldbasicatomic.h \
2074 /usr/include/qt5/QtCore/qatomic_vxworks.h \ 2256 /usr/include/qt5/QtCore/qatomic_vxworks.h \
2075 /usr/include/qt5/QtCore/qatomic_power.h \ 2257 /usr/include/qt5/QtCore/qatomic_power.h \
  2258 + /usr/include/qt5/QtCore/qatomic_aarch64.h \
2076 /usr/include/qt5/QtCore/qatomic_alpha.h \ 2259 /usr/include/qt5/QtCore/qatomic_alpha.h \
2077 /usr/include/qt5/QtCore/qatomic_armv7.h \ 2260 /usr/include/qt5/QtCore/qatomic_armv7.h \
2078 /usr/include/qt5/QtCore/qatomic_armv6.h \ 2261 /usr/include/qt5/QtCore/qatomic_armv6.h \
build-QChatClient-Desktop-Debug/QChatClient
No preview for this file type
build-QChatClient-Desktop-Debug/Socket.o
No preview for this file type
build-QChatClient-Desktop-Debug/chatwidget.o
No preview for this file type
build-QChatClient-Desktop-Debug/chatwindow.o
No preview for this file type
build-QChatClient-Desktop-Debug/loginscreen.o
No preview for this file type
build-QChatClient-Desktop-Debug/main.o
No preview for this file type
build-QChatClient-Desktop-Debug/moc_chatinputtext.cpp
1 /**************************************************************************** 1 /****************************************************************************
2 ** Meta object code from reading C++ file 'chatinputtext.h' 2 ** Meta object code from reading C++ file 'chatinputtext.h'
3 ** 3 **
4 -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.1) 4 +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.2)
5 ** 5 **
6 ** WARNING! All changes made in this file will be lost! 6 ** WARNING! All changes made in this file will be lost!
7 *****************************************************************************/ 7 *****************************************************************************/
@@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
12 #if !defined(Q_MOC_OUTPUT_REVISION) 12 #if !defined(Q_MOC_OUTPUT_REVISION)
13 #error "The header file 'chatinputtext.h' doesn't include <QObject>." 13 #error "The header file 'chatinputtext.h' doesn't include <QObject>."
14 #elif Q_MOC_OUTPUT_REVISION != 67 14 #elif Q_MOC_OUTPUT_REVISION != 67
15 -#error "This file was generated using the moc from 5.0.1. It" 15 +#error "This file was generated using the moc from 5.0.2. It"
16 #error "cannot be used with the include files from this version of Qt." 16 #error "cannot be used with the include files from this version of Qt."
17 #error "(The moc has changed too much.)" 17 #error "(The moc has changed too much.)"
18 #endif 18 #endif
build-QChatClient-Desktop-Debug/moc_chatroom.cpp
1 /**************************************************************************** 1 /****************************************************************************
2 ** Meta object code from reading C++ file 'chatroom.h' 2 ** Meta object code from reading C++ file 'chatroom.h'
3 ** 3 **
4 -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.1) 4 +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.2)
5 ** 5 **
6 ** WARNING! All changes made in this file will be lost! 6 ** WARNING! All changes made in this file will be lost!
7 *****************************************************************************/ 7 *****************************************************************************/
@@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
12 #if !defined(Q_MOC_OUTPUT_REVISION) 12 #if !defined(Q_MOC_OUTPUT_REVISION)
13 #error "The header file 'chatroom.h' doesn't include <QObject>." 13 #error "The header file 'chatroom.h' doesn't include <QObject>."
14 #elif Q_MOC_OUTPUT_REVISION != 67 14 #elif Q_MOC_OUTPUT_REVISION != 67
15 -#error "This file was generated using the moc from 5.0.1. It" 15 +#error "This file was generated using the moc from 5.0.2. It"
16 #error "cannot be used with the include files from this version of Qt." 16 #error "cannot be used with the include files from this version of Qt."
17 #error "(The moc has changed too much.)" 17 #error "(The moc has changed too much.)"
18 #endif 18 #endif
build-QChatClient-Desktop-Debug/moc_chatroom.o
No preview for this file type
build-QChatClient-Desktop-Debug/moc_chatwidget.cpp
1 /**************************************************************************** 1 /****************************************************************************
2 ** Meta object code from reading C++ file 'chatwidget.h' 2 ** Meta object code from reading C++ file 'chatwidget.h'
3 ** 3 **
4 -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.1) 4 +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.2)
5 ** 5 **
6 ** WARNING! All changes made in this file will be lost! 6 ** WARNING! All changes made in this file will be lost!
7 *****************************************************************************/ 7 *****************************************************************************/
@@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
12 #if !defined(Q_MOC_OUTPUT_REVISION) 12 #if !defined(Q_MOC_OUTPUT_REVISION)
13 #error "The header file 'chatwidget.h' doesn't include <QObject>." 13 #error "The header file 'chatwidget.h' doesn't include <QObject>."
14 #elif Q_MOC_OUTPUT_REVISION != 67 14 #elif Q_MOC_OUTPUT_REVISION != 67
15 -#error "This file was generated using the moc from 5.0.1. It" 15 +#error "This file was generated using the moc from 5.0.2. It"
16 #error "cannot be used with the include files from this version of Qt." 16 #error "cannot be used with the include files from this version of Qt."
17 #error "(The moc has changed too much.)" 17 #error "(The moc has changed too much.)"
18 #endif 18 #endif
build-QChatClient-Desktop-Debug/moc_chatwidget.o
No preview for this file type
build-QChatClient-Desktop-Debug/moc_chatwindow.cpp
1 /**************************************************************************** 1 /****************************************************************************
2 ** Meta object code from reading C++ file 'chatwindow.h' 2 ** Meta object code from reading C++ file 'chatwindow.h'
3 ** 3 **
4 -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.1) 4 +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.2)
5 ** 5 **
6 ** WARNING! All changes made in this file will be lost! 6 ** WARNING! All changes made in this file will be lost!
7 *****************************************************************************/ 7 *****************************************************************************/
@@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
12 #if !defined(Q_MOC_OUTPUT_REVISION) 12 #if !defined(Q_MOC_OUTPUT_REVISION)
13 #error "The header file 'chatwindow.h' doesn't include <QObject>." 13 #error "The header file 'chatwindow.h' doesn't include <QObject>."
14 #elif Q_MOC_OUTPUT_REVISION != 67 14 #elif Q_MOC_OUTPUT_REVISION != 67
15 -#error "This file was generated using the moc from 5.0.1. It" 15 +#error "This file was generated using the moc from 5.0.2. It"
16 #error "cannot be used with the include files from this version of Qt." 16 #error "cannot be used with the include files from this version of Qt."
17 #error "(The moc has changed too much.)" 17 #error "(The moc has changed too much.)"
18 #endif 18 #endif
build-QChatClient-Desktop-Debug/moc_chatwindow.o
No preview for this file type
build-QChatClient-Desktop-Debug/moc_loginscreen.cpp
1 /**************************************************************************** 1 /****************************************************************************
2 ** Meta object code from reading C++ file 'loginscreen.h' 2 ** Meta object code from reading C++ file 'loginscreen.h'
3 ** 3 **
4 -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.1) 4 +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.2)
5 ** 5 **
6 ** WARNING! All changes made in this file will be lost! 6 ** WARNING! All changes made in this file will be lost!
7 *****************************************************************************/ 7 *****************************************************************************/
@@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
12 #if !defined(Q_MOC_OUTPUT_REVISION) 12 #if !defined(Q_MOC_OUTPUT_REVISION)
13 #error "The header file 'loginscreen.h' doesn't include <QObject>." 13 #error "The header file 'loginscreen.h' doesn't include <QObject>."
14 #elif Q_MOC_OUTPUT_REVISION != 67 14 #elif Q_MOC_OUTPUT_REVISION != 67
15 -#error "This file was generated using the moc from 5.0.1. It" 15 +#error "This file was generated using the moc from 5.0.2. It"
16 #error "cannot be used with the include files from this version of Qt." 16 #error "cannot be used with the include files from this version of Qt."
17 #error "(The moc has changed too much.)" 17 #error "(The moc has changed too much.)"
18 #endif 18 #endif
build-QChatClient-Desktop-Debug/moc_loginscreen.o
No preview for this file type
build-QChatClient-Desktop-Debug/ui_chatroom.h
1 /******************************************************************************** 1 /********************************************************************************
2 ** Form generated from reading UI file 'chatroom.ui' 2 ** Form generated from reading UI file 'chatroom.ui'
3 ** 3 **
4 -** Created by: Qt User Interface Compiler version 5.0.1 4 +** Created by: Qt User Interface Compiler version 5.0.2
5 ** 5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file! 6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/ 7 ********************************************************************************/
build-QChatClient-Desktop-Debug/ui_chatwindow.h
1 /******************************************************************************** 1 /********************************************************************************
2 ** Form generated from reading UI file 'chatwindow.ui' 2 ** Form generated from reading UI file 'chatwindow.ui'
3 ** 3 **
4 -** Created by: Qt User Interface Compiler version 5.0.1 4 +** Created by: Qt User Interface Compiler version 5.0.2
5 ** 5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file! 6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/ 7 ********************************************************************************/
build-QChatClient-Desktop-Debug/ui_loginscreen.h
1 /******************************************************************************** 1 /********************************************************************************
2 ** Form generated from reading UI file 'loginscreen.ui' 2 ** Form generated from reading UI file 'loginscreen.ui'
3 ** 3 **
4 -** Created by: Qt User Interface Compiler version 5.0.1 4 +** Created by: Qt User Interface Compiler version 5.0.2
5 ** 5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file! 6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/ 7 ********************************************************************************/