diff --git a/CMakeLists.txt b/CMakeLists.txt index bee2583601..64754847e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2117,7 +2117,7 @@ if(BUILD_wireshark AND QT_FOUND) ${WIN_VERSION_LIBRARY} ) - add_executable(wireshark WIN32 MACOSX_BUNDLE wireshark-qt.cpp ${wireshark_FILES} ${EXTRA_BUNDLE_FILES}) + add_executable(wireshark WIN32 MACOSX_BUNDLE ${wireshark_FILES} ${EXTRA_BUNDLE_FILES}) add_dependencies(wireshark version) set(PROGLIST ${PROGLIST} wireshark) if(CMAKE_VERSION VERSION_LESS "2.8.12" diff --git a/docbook/wsdg_src/WSDG_chapter_userinterface.asciidoc b/docbook/wsdg_src/WSDG_chapter_userinterface.asciidoc index 9abc369d91..dd6ee31f65 100644 --- a/docbook/wsdg_src/WSDG_chapter_userinterface.asciidoc +++ b/docbook/wsdg_src/WSDG_chapter_userinterface.asciidoc @@ -88,7 +88,7 @@ prompt you to re-run CMake. ==== Source Code Overview -Wireshark’s `main` entry point is in _wireshark-qt.cpp_. Command-line arguments +Wireshark’s `main` entry point is in _ui/qt/main.cpp_. Command-line arguments are processed there and the main application class (`WiresharkApplication`) instance is created there along with the main window. diff --git a/image/wireshark.exe.manifest.in b/image/wireshark.exe.manifest.in index 805c2d9603..b75cb55fb4 100644 --- a/image/wireshark.exe.manifest.in +++ b/image/wireshark.exe.manifest.in @@ -50,7 +50,7 @@ MSDN recommends setting our DPI awareness to PerMonitorV2 instead of PerMonitor. Unfortunately that causes layout issues with Qt 5.6 and 5.9. For now enable PerMonitor DPI awareness by enabling - Qt::AA_EnableHighDpiScaling in wireshark-qt.cpp. + Qt::AA_EnableHighDpiScaling in ui/qt/main.cpp. -->