Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. CaesarGraphic git:(master) qmake
  2. ➜ CaesarGraphic git:(master) ✗ make
  3. clang++ -c -pipe -stdlib=libc++ -mmacosx-version-min=10.7 -O2 -arch x86_64 -Wall -W -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Cellar/qt/4.8.6/mkspecs/unsupported/macx-clang-libc++ -I. -I/usr/local/Cellar/qt/4.8.6/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/include -I. -I. -F/usr/local/Cellar/qt/4.8.6/lib -o main.o main.cpp
  4. clang++ -c -pipe -stdlib=libc++ -mmacosx-version-min=10.7 -O2 -arch x86_64 -Wall -W -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Cellar/qt/4.8.6/mkspecs/unsupported/macx-clang-libc++ -I. -I/usr/local/Cellar/qt/4.8.6/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/include -I. -I. -F/usr/local/Cellar/qt/4.8.6/lib -o mainwindow.o mainwindow.cpp
  5. mainwindow.cpp:35:24: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [-Wsign-compare]
  6. for (int i = 0; i < s.length(); i++)
  7. ~ ^ ~~~~~~~~~~
  8. mainwindow.cpp:76:27: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [-Wsign-compare]
  9. for (int i = 0; i < s.length(); i++)
  10. ~ ^ ~~~~~~~~~~
  11. 2 warnings generated.
  12. clang++ -c -pipe -stdlib=libc++ -mmacosx-version-min=10.7 -O2 -arch x86_64 -Wall -W -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Cellar/qt/4.8.6/mkspecs/unsupported/macx-clang-libc++ -I. -I/usr/local/Cellar/qt/4.8.6/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.6/include -I. -I. -F/usr/local/Cellar/qt/4.8.6/lib -o moc_mainwindow.o moc_mainwindow.cpp
  13. moc_mainwindow.cpp:57:21: error: no member named 'on_lineEditInputFile_editingFinished' in 'MainWindow'; did you mean 'on_lineEditKeyFile_editingFinished'?
  14. case 2: _t->on_lineEditInputFile_editingFinished(); break;
  15. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  16. on_lineEditKeyFile_editingFinished
  17. ./mainwindow.h:21:10: note: 'on_lineEditKeyFile_editingFinished' declared here
  18. void on_lineEditKeyFile_editingFinished();
  19. ^
  20. 1 error generated.
  21. make: *** [moc_mainwindow.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement