diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index b5f3f61126f4..64f88bd4f7f9 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -31,6 +31,9 @@ db31a0161503c6ea4cc461f4e10b67830b7d6b52 # Fix comment typos in sources, 2021-10-02 668a2186cd89fd4576bed224df3624811eebeca1 +# Wrap variable initializations after '=' consistently, 2019-11-22 +2bc6e50eded2a14099655ce0b4c7df582b87c93a + # Remove all trailing spaces, 2019-01-30 8fbca5cb70c8b647d5bd2cacb1e0a2a00358f351 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0127f43c85e8..95d3d2a66b9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,10 +115,10 @@ jobs: skip_samples: true use_asan: true use_xvfb: true - - name: Ubuntu 22.04 wxGTK UTF-8 C++20 + - name: Ubuntu 22.04 wxGTK with UBSAN runner: ubuntu-22.04 - configure_flags: --with-cxx=20 --enable-utf8 --enable-utf8only - use_asan: true + configure_flags: --with-cxx=20 + use_ubsan: true use_xvfb: true build_out_of_tree_samples: true - name: Ubuntu 18.04 wxX11 @@ -286,11 +286,18 @@ jobs: fi if [ ${{ matrix.use_asan }} ]; then - wxASAN_CFLAGS="-fsanitize=address -fno-omit-frame-pointer" - wxASAN_CXXFLAGS=$wxASAN_CFLAGS - wxASAN_LDFLAGS="-fsanitize=address" + wxSANITIZER_FLAGS='-fsanitize=address' + + echo 'ASAN_OPTIONS=fast_unwind_on_malloc=0' >> $GITHUB_ENV + elif [ ${{ matrix.use_ubsan }} ]; then + wxSANITIZER_FLAGS='-fsanitize=undefined' + fi - ./configure $wxCONFIGURE_OPTIONS --enable-debug "CFLAGS=$wxASAN_CFLAGS" "CXXFLAGS=$wxASAN_CXXFLAGS" "LDFLAGS=$wxASAN_LDFLAGS" || rc=$? + if [ -n "$wxSANITIZER_FLAGS" ]; then + ./configure $wxCONFIGURE_OPTIONS --enable-debug \ + "CFLAGS=$wxSANITIZER_FLAGS -fno-omit-frame-pointer" \ + "CXXFLAGS=$wxSANITIZER_FLAGS -fno-omit-frame-pointer" \ + "LDFLAGS=$wxSANITIZER_FLAGS" || rc=$? else ./configure $wxCONFIGURE_OPTIONS --disable-debug_info || rc=$? fi @@ -349,7 +356,11 @@ jobs: httpbin_launch - export ASAN_OPTIONS=fast_unwind_on_malloc=0 + if [ ${{ matrix.use_ubsan }} ]; then + # First run wiht UBSAN: halt on first error to make sure we fail if + # any UB is detected. + export UBSAN_OPTIONS=halt_on_error=1 + fi # Explicitly use bash because /bin/sh doesn't have pipefail option /bin/bash -o pipefail -c './test 2>&1 | tee test.out' || rc=$? @@ -363,6 +374,15 @@ jobs: fi fi + if [ ${{ matrix.use_ubsan }} ]; then + if grep -qF ': runtime error: ' test.out; then + export UBSAN_OPTIONS=print_stacktrace=1 + echo '+++ UB detected, rerunning the tests to show all occurrences +++' + ./test + # Leave rc set to non-zero value to indicate failure. + fi + fi + if [ -n "$rc" ]; then httpbin_show_log exit $rc @@ -384,9 +404,8 @@ jobs: if [ -f wx_dbgsym_available ]; then export LSAN_OPTIONS=suppressions=$(pwd)/misc/suppressions/lsan else - ASAN_OPTIONS=detect_leaks=0 + ASAN_OPTIONS="$ASAN_OPTIONS detect_leaks=0" fi - export ASAN_OPTIONS="$ASAN_OPTIONS fast_unwind_on_malloc=0" # Running all tests at once fails, apparently due to running out of # memory when using ASAN, work around this problem by excluding @@ -394,6 +413,12 @@ jobs: wx_tests_selection='~[.] ~RichTextCtrlTestCase' fi + if [ ${{ matrix.use_ubsan }} ]; then + # First run with UBSAN: halt on first error to make sure we fail if + # any UB is detected. + export UBSAN_OPTIONS=halt_on_error=1 + fi + # The tests only work reliably with native windows export QT_USE_NATIVE_WINDOWS=1 @@ -413,6 +438,17 @@ jobs: xvfb-run -a -s '-screen 0 1600x1200x24' ./test_gui -c Title WebView >/dev/null 2>&1 || echo 'First wxWebView test failure ignored.' /bin/bash -o pipefail -c "xvfb-run -a -s '-screen 0 1600x1200x24' ./test_gui -d 1 $wx_tests_selection 2>&1 | tee -a test_gui.out" || rc=$? + + if [ ${{ matrix.use_ubsan }} ]; then + if grep -qF ': runtime error: ' test_gui.out; then + echo "\n\n+++ UB detected, rerunning the tests to show all occurrences +++\n" + export UBSAN_OPTIONS=print_stacktrace=1 + xvfb-run -a -s '-screen 0 1600x1200x24' ./test_gui $wx_tests_selection + # rc should be already set to non-zero value, but make sure of it. + rc=1 + fi + fi + if [ -n "$rc" ]; then if grep -qF '(core dumped)' test_gui.out; then echo '*** Test crashed, trying to get more information ***' @@ -421,6 +457,7 @@ jobs: exit $rc fi + - name: Building samples if: matrix.skip_samples != true run: | diff --git a/.github/workflows/ci_cmake.yml b/.github/workflows/ci_cmake.yml index f9b567d42d71..0b43873557ff 100644 --- a/.github/workflows/ci_cmake.yml +++ b/.github/workflows/ci_cmake.yml @@ -66,11 +66,11 @@ jobs: runner: ubuntu-22.04 cmake_generator: Unix Makefiles cmake_samples: ALL - - name: macOS 12 wxOSX - runner: macos-12 + - name: macOS 14 wxOSX + runner: macos-14 cmake_generator: Xcode - - name: macOS 12 wxIOS - runner: macos-12 + - name: macOS 14 wxIOS + runner: macos-14 cmake_generator: Xcode cmake_defines: -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_FIND_ROOT_PATH=/usr/local -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_ALLOWED=NO cmake_samples: OFF diff --git a/.github/workflows/ci_mac.yml b/.github/workflows/ci_mac.yml index 239d0274bbdd..1d7c33946e3f 100644 --- a/.github/workflows/ci_mac.yml +++ b/.github/workflows/ci_mac.yml @@ -94,12 +94,12 @@ jobs: runner: self-hosted arch: arm64 configure_flags: --with-cxx=14 --enable-universal_binary=arm64,x86_64 --disable-shared --disable-debug --enable-optimise - - name: wxMac macOS 12 - runner: macos-12 + - name: wxMac macOS 14 + runner: macos-14 arch: x86_64 configure_flags: --disable-sys-libs - name: wxiOS - runner: macos-12 + runner: macos-14 arch: x86_64 configure_flags: --with-osx_iphone --enable-monolithic --disable-sys-libs --host=i686-apple-darwin_sim --build=x86_64-apple-darwin17.7.0 configure_env: PKG_CONFIG_LIBDIR=/dev/null diff --git a/.mailmap b/.mailmap index 27de185848ae..58e4311af14f 100644 --- a/.mailmap +++ b/.mailmap @@ -44,6 +44,7 @@ Martin Ettl Mathew Maidment Micha Ahrweiler ousnius +Paul Cornett Paul Kulchenko Pavel O. Pavel O. diff --git a/Makefile.in b/Makefile.in index 383cde57e282..ed54fd16dad6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1936,6 +1936,7 @@ XRCDLL_OBJECTS = \ xrcdll_xh_tree.o \ xrcdll_xh_treebk.o \ xrcdll_xh_unkwn.o \ + xrcdll_xh_vlistbox.o \ xrcdll_xh_wizrd.o \ xrcdll_xmlres.o \ xrcdll_xmlrsall.o \ @@ -2012,6 +2013,7 @@ XRCLIB_OBJECTS = \ xrclib_xh_tree.o \ xrclib_xh_treebk.o \ xrclib_xh_unkwn.o \ + xrclib_xh_vlistbox.o \ xrclib_xh_wizrd.o \ xrclib_xmlres.o \ xrclib_xmlrsall.o \ @@ -2277,7 +2279,8 @@ WEBKIT2_EXT_CXXFLAGS = $(WX_CPPFLAGS) -DWXUSINGDLL -DwxUSE_GUI=0 $(PIC_FLAG) \ $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS) WEBKIT2_EXT_OBJECTS = \ webkit2_ext_webview_webkit2_extension.o -LOCALE_LINGUAS = ca cs da de el es fi fr hu id it ja nl pl ru sl sv tr uk zh zh_CN zh_TW +LOCALE_LINGUAS = af an ar ca ca@valencia co cs da de el es eu fa_IR fi fr gl_ES hi hr hu id it ja \ + ka ko_KR lt lv ms nb ne nl pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_TW ### Conditionally set variables: ### @@ -4005,6 +4008,7 @@ COND_USE_GUI_1_ALL_GUI_HEADERS = \ wx/xrc/xh_tree.h \ wx/xrc/xh_treebk.h \ wx/xrc/xh_unkwn.h \ + wx/xrc/xh_vlistbox.h \ wx/xrc/xh_wizrd.h \ wx/xrc/xmlres.h \ wx/xrc/xh_bookctrlbase.h \ @@ -4018,6 +4022,7 @@ COND_USE_GUI_1_ALL_GUI_HEADERS = \ wx/aui/tabart.h \ wx/xrc/xh_aui.h \ wx/xrc/xh_auitoolb.h \ + wx/aui/serializer.h \ $(AUI_GTK_HDR) \ $(AUI_PLATFORM_HDR) \ wx/propgrid/advprops.h \ @@ -4328,6 +4333,7 @@ COND_USE_GUI_1___MONOLIB_GUI_SRC_OBJECTS = \ monodll_xh_tree.o \ monodll_xh_treebk.o \ monodll_xh_unkwn.o \ + monodll_xh_vlistbox.o \ monodll_xh_wizrd.o \ monodll_xmlres.o \ monodll_xmlrsall.o \ @@ -4853,7 +4859,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS = \ monodll_fontmgrcmn.o \ monodll_generic_caret.o \ monodll_generic_colour.o \ - monodll_generic_icon.o \ monodll_mask.o \ monodll_generic_textmeasure.o \ monodll_dfb_app.o \ @@ -4880,7 +4885,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS = \ @COND_TOOLKIT_DFB@__LOWLEVEL_SRC_OBJECTS = $(COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS) COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS = \ $(__GTK_PLATFORM_SRC_OBJECTS) \ - monodll_generic_icon.o \ monodll_paletteg.o \ monodll_gtk_app.o \ monodll_assertdlg_gtk.o \ @@ -4922,7 +4926,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__LOWLEVEL_SRC_OBJECTS = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS) COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS = \ $(__GTK_PLATFORM_SRC_OBJECTS) \ - monodll_generic_icon.o \ monodll_paletteg.o \ monodll_gtk_app.o \ monodll_assertdlg_gtk.o \ @@ -4961,7 +4964,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_3@__LOWLEVEL_SRC_OBJECTS = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS) COND_TOOLKIT_GTK_TOOLKIT_VERSION_4___LOWLEVEL_SRC_OBJECTS = \ $(__GTK_PLATFORM_SRC_OBJECTS) \ - monodll_generic_icon.o \ monodll_paletteg.o \ monodll_gtk_app.o \ monodll_assertdlg_gtk.o \ @@ -5022,7 +5024,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS = \ monodll_msw_fontutil.o \ monodll_gdiimage.o \ monodll_msw_graphics.o \ - monodll_msw_icon.o \ + monodll_icon.o \ monodll_msw_minifram.o \ monodll_msw_nonownedwnd.o \ monodll_comimpl.o \ @@ -5083,7 +5085,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS = \ monodll_unix_sound.o \ monodll_taskbarcmn.o \ monodll_unix_joystick.o \ - monodll_generic_icon.o \ monodll_generic_textmeasure.o \ monodll_generic_timer.o \ monodll_x11_app.o \ @@ -5474,7 +5475,6 @@ COND_TOOLKIT_QT___GUI_SRC_OBJECTS = \ monodll_generic_fdrepdlg.o \ monodll_filepickerg.o \ monodll_fontpickerg.o \ - monodll_generic_icon.o \ monodll_generic_imaglist.o \ monodll_prntdlgg.o \ monodll_generic_textmeasure.o \ @@ -5586,7 +5586,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_1 = \ monodll_fontmgrcmn.o \ monodll_generic_caret.o \ monodll_generic_colour.o \ - monodll_generic_icon.o \ monodll_mask.o \ monodll_generic_textmeasure.o \ monodll_dfb_app.o \ @@ -5613,7 +5612,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_1 = \ @COND_TOOLKIT_DFB@__LOWLEVEL_SRC_OBJECTS_1 = $(COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_1) COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_1 = \ $(__GTK_PLATFORM_SRC_OBJECTS) \ - monodll_generic_icon.o \ monodll_paletteg.o \ monodll_gtk_app.o \ monodll_assertdlg_gtk.o \ @@ -5655,7 +5653,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_1 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__LOWLEVEL_SRC_OBJECTS_1 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_1) COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_1 = \ $(__GTK_PLATFORM_SRC_OBJECTS) \ - monodll_generic_icon.o \ monodll_paletteg.o \ monodll_gtk_app.o \ monodll_assertdlg_gtk.o \ @@ -5694,7 +5691,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_1 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_3@__LOWLEVEL_SRC_OBJECTS_1 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_1) COND_TOOLKIT_GTK_TOOLKIT_VERSION_4___LOWLEVEL_SRC_OBJECTS_1 = \ $(__GTK_PLATFORM_SRC_OBJECTS) \ - monodll_generic_icon.o \ monodll_paletteg.o \ monodll_gtk_app.o \ monodll_assertdlg_gtk.o \ @@ -5755,7 +5751,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_1 = \ monodll_msw_fontutil.o \ monodll_gdiimage.o \ monodll_msw_graphics.o \ - monodll_msw_icon.o \ + monodll_icon.o \ monodll_msw_minifram.o \ monodll_msw_nonownedwnd.o \ monodll_comimpl.o \ @@ -5816,7 +5812,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_1 = \ monodll_unix_sound.o \ monodll_taskbarcmn.o \ monodll_unix_joystick.o \ - monodll_generic_icon.o \ monodll_generic_textmeasure.o \ monodll_generic_timer.o \ monodll_x11_app.o \ @@ -6094,6 +6089,7 @@ COND_USE_GUI_1___MONOLIB_GUI_SRC_OBJECTS_1 = \ monolib_xh_tree.o \ monolib_xh_treebk.o \ monolib_xh_unkwn.o \ + monolib_xh_vlistbox.o \ monolib_xh_wizrd.o \ monolib_xmlres.o \ monolib_xmlrsall.o \ @@ -6619,7 +6615,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_2 = \ monolib_fontmgrcmn.o \ monolib_generic_caret.o \ monolib_generic_colour.o \ - monolib_generic_icon.o \ monolib_mask.o \ monolib_generic_textmeasure.o \ monolib_dfb_app.o \ @@ -6646,7 +6641,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_2 = \ @COND_TOOLKIT_DFB@__LOWLEVEL_SRC_OBJECTS_2 = $(COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_2) COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_2 = \ $(__GTK_PLATFORM_SRC_OBJECTS_27) \ - monolib_generic_icon.o \ monolib_paletteg.o \ monolib_gtk_app.o \ monolib_assertdlg_gtk.o \ @@ -6688,7 +6682,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_2 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__LOWLEVEL_SRC_OBJECTS_2 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_2) COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_2 = \ $(__GTK_PLATFORM_SRC_OBJECTS_27) \ - monolib_generic_icon.o \ monolib_paletteg.o \ monolib_gtk_app.o \ monolib_assertdlg_gtk.o \ @@ -6727,7 +6720,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_2 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_3@__LOWLEVEL_SRC_OBJECTS_2 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_2) COND_TOOLKIT_GTK_TOOLKIT_VERSION_4___LOWLEVEL_SRC_OBJECTS_2 = \ $(__GTK_PLATFORM_SRC_OBJECTS_27) \ - monolib_generic_icon.o \ monolib_paletteg.o \ monolib_gtk_app.o \ monolib_assertdlg_gtk.o \ @@ -6788,7 +6780,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_2 = \ monolib_msw_fontutil.o \ monolib_gdiimage.o \ monolib_msw_graphics.o \ - monolib_msw_icon.o \ + monolib_icon.o \ monolib_msw_minifram.o \ monolib_msw_nonownedwnd.o \ monolib_comimpl.o \ @@ -6849,7 +6841,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_2 = \ monolib_unix_sound.o \ monolib_taskbarcmn.o \ monolib_unix_joystick.o \ - monolib_generic_icon.o \ monolib_generic_textmeasure.o \ monolib_generic_timer.o \ monolib_x11_app.o \ @@ -7240,7 +7231,6 @@ COND_TOOLKIT_QT___GUI_SRC_OBJECTS_1 = \ monolib_generic_fdrepdlg.o \ monolib_filepickerg.o \ monolib_fontpickerg.o \ - monolib_generic_icon.o \ monolib_generic_imaglist.o \ monolib_prntdlgg.o \ monolib_generic_textmeasure.o \ @@ -7352,7 +7342,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_3 = \ monolib_fontmgrcmn.o \ monolib_generic_caret.o \ monolib_generic_colour.o \ - monolib_generic_icon.o \ monolib_mask.o \ monolib_generic_textmeasure.o \ monolib_dfb_app.o \ @@ -7379,7 +7368,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_3 = \ @COND_TOOLKIT_DFB@__LOWLEVEL_SRC_OBJECTS_3 = $(COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_3) COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_3 = \ $(__GTK_PLATFORM_SRC_OBJECTS_27) \ - monolib_generic_icon.o \ monolib_paletteg.o \ monolib_gtk_app.o \ monolib_assertdlg_gtk.o \ @@ -7421,7 +7409,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_3 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__LOWLEVEL_SRC_OBJECTS_3 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_3) COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_3 = \ $(__GTK_PLATFORM_SRC_OBJECTS_27) \ - monolib_generic_icon.o \ monolib_paletteg.o \ monolib_gtk_app.o \ monolib_assertdlg_gtk.o \ @@ -7460,7 +7447,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_3 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_3@__LOWLEVEL_SRC_OBJECTS_3 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_3) COND_TOOLKIT_GTK_TOOLKIT_VERSION_4___LOWLEVEL_SRC_OBJECTS_3 = \ $(__GTK_PLATFORM_SRC_OBJECTS_27) \ - monolib_generic_icon.o \ monolib_paletteg.o \ monolib_gtk_app.o \ monolib_assertdlg_gtk.o \ @@ -7521,7 +7507,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_3 = \ monolib_msw_fontutil.o \ monolib_gdiimage.o \ monolib_msw_graphics.o \ - monolib_msw_icon.o \ + monolib_icon.o \ monolib_msw_minifram.o \ monolib_msw_nonownedwnd.o \ monolib_comimpl.o \ @@ -7582,7 +7568,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_3 = \ monolib_unix_sound.o \ monolib_taskbarcmn.o \ monolib_unix_joystick.o \ - monolib_generic_icon.o \ monolib_generic_textmeasure.o \ monolib_generic_timer.o \ monolib_x11_app.o \ @@ -8535,7 +8520,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_4 = \ coredll_fontmgrcmn.o \ coredll_generic_caret.o \ coredll_generic_colour.o \ - coredll_generic_icon.o \ coredll_mask.o \ coredll_generic_textmeasure.o \ coredll_dfb_app.o \ @@ -8562,7 +8546,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_4 = \ @COND_TOOLKIT_DFB@__LOWLEVEL_SRC_OBJECTS_4 = $(COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_4) COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_4 = \ $(__GTK_PLATFORM_SRC_OBJECTS_1_4) \ - coredll_generic_icon.o \ coredll_paletteg.o \ coredll_gtk_app.o \ coredll_assertdlg_gtk.o \ @@ -8604,7 +8587,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_4 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__LOWLEVEL_SRC_OBJECTS_4 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_4) COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_4 = \ $(__GTK_PLATFORM_SRC_OBJECTS_1_4) \ - coredll_generic_icon.o \ coredll_paletteg.o \ coredll_gtk_app.o \ coredll_assertdlg_gtk.o \ @@ -8643,7 +8625,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_4 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_3@__LOWLEVEL_SRC_OBJECTS_4 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_4) COND_TOOLKIT_GTK_TOOLKIT_VERSION_4___LOWLEVEL_SRC_OBJECTS_4 = \ $(__GTK_PLATFORM_SRC_OBJECTS_1_4) \ - coredll_generic_icon.o \ coredll_paletteg.o \ coredll_gtk_app.o \ coredll_assertdlg_gtk.o \ @@ -8704,7 +8685,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_4 = \ coredll_msw_fontutil.o \ coredll_gdiimage.o \ coredll_msw_graphics.o \ - coredll_msw_icon.o \ + coredll_icon.o \ coredll_msw_minifram.o \ coredll_msw_nonownedwnd.o \ coredll_comimpl.o \ @@ -8765,7 +8746,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_4 = \ coredll_unix_sound.o \ coredll_taskbarcmn.o \ coredll_unix_joystick.o \ - coredll_generic_icon.o \ coredll_generic_textmeasure.o \ coredll_generic_timer.o \ coredll_x11_app.o \ @@ -9156,7 +9136,6 @@ COND_TOOLKIT_QT___GUI_SRC_OBJECTS_2 = \ coredll_generic_fdrepdlg.o \ coredll_filepickerg.o \ coredll_fontpickerg.o \ - coredll_generic_icon.o \ coredll_generic_imaglist.o \ coredll_prntdlgg.o \ coredll_generic_textmeasure.o \ @@ -9268,7 +9247,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_5 = \ coredll_fontmgrcmn.o \ coredll_generic_caret.o \ coredll_generic_colour.o \ - coredll_generic_icon.o \ coredll_mask.o \ coredll_generic_textmeasure.o \ coredll_dfb_app.o \ @@ -9295,7 +9273,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_5 = \ @COND_TOOLKIT_DFB@__LOWLEVEL_SRC_OBJECTS_5 = $(COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_5) COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_5 = \ $(__GTK_PLATFORM_SRC_OBJECTS_1_4) \ - coredll_generic_icon.o \ coredll_paletteg.o \ coredll_gtk_app.o \ coredll_assertdlg_gtk.o \ @@ -9337,7 +9314,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_5 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__LOWLEVEL_SRC_OBJECTS_5 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_5) COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_5 = \ $(__GTK_PLATFORM_SRC_OBJECTS_1_4) \ - coredll_generic_icon.o \ coredll_paletteg.o \ coredll_gtk_app.o \ coredll_assertdlg_gtk.o \ @@ -9376,7 +9352,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_5 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_3@__LOWLEVEL_SRC_OBJECTS_5 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_5) COND_TOOLKIT_GTK_TOOLKIT_VERSION_4___LOWLEVEL_SRC_OBJECTS_5 = \ $(__GTK_PLATFORM_SRC_OBJECTS_1_4) \ - coredll_generic_icon.o \ coredll_paletteg.o \ coredll_gtk_app.o \ coredll_assertdlg_gtk.o \ @@ -9437,7 +9412,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_5 = \ coredll_msw_fontutil.o \ coredll_gdiimage.o \ coredll_msw_graphics.o \ - coredll_msw_icon.o \ + coredll_icon.o \ coredll_msw_minifram.o \ coredll_msw_nonownedwnd.o \ coredll_comimpl.o \ @@ -9498,7 +9473,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_5 = \ coredll_unix_sound.o \ coredll_taskbarcmn.o \ coredll_unix_joystick.o \ - coredll_generic_icon.o \ coredll_generic_textmeasure.o \ coredll_generic_timer.o \ coredll_x11_app.o \ @@ -10026,7 +10000,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_6 = \ corelib_fontmgrcmn.o \ corelib_generic_caret.o \ corelib_generic_colour.o \ - corelib_generic_icon.o \ corelib_mask.o \ corelib_generic_textmeasure.o \ corelib_dfb_app.o \ @@ -10053,7 +10026,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_6 = \ @COND_TOOLKIT_DFB@__LOWLEVEL_SRC_OBJECTS_6 = $(COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_6) COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_6 = \ $(__GTK_PLATFORM_SRC_OBJECTS_2_2) \ - corelib_generic_icon.o \ corelib_paletteg.o \ corelib_gtk_app.o \ corelib_assertdlg_gtk.o \ @@ -10095,7 +10067,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_6 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__LOWLEVEL_SRC_OBJECTS_6 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_6) COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_6 = \ $(__GTK_PLATFORM_SRC_OBJECTS_2_2) \ - corelib_generic_icon.o \ corelib_paletteg.o \ corelib_gtk_app.o \ corelib_assertdlg_gtk.o \ @@ -10134,7 +10105,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_6 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_3@__LOWLEVEL_SRC_OBJECTS_6 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_6) COND_TOOLKIT_GTK_TOOLKIT_VERSION_4___LOWLEVEL_SRC_OBJECTS_6 = \ $(__GTK_PLATFORM_SRC_OBJECTS_2_2) \ - corelib_generic_icon.o \ corelib_paletteg.o \ corelib_gtk_app.o \ corelib_assertdlg_gtk.o \ @@ -10195,7 +10165,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_6 = \ corelib_msw_fontutil.o \ corelib_gdiimage.o \ corelib_msw_graphics.o \ - corelib_msw_icon.o \ + corelib_icon.o \ corelib_msw_minifram.o \ corelib_msw_nonownedwnd.o \ corelib_comimpl.o \ @@ -10256,7 +10226,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_6 = \ corelib_unix_sound.o \ corelib_taskbarcmn.o \ corelib_unix_joystick.o \ - corelib_generic_icon.o \ corelib_generic_textmeasure.o \ corelib_generic_timer.o \ corelib_x11_app.o \ @@ -10647,7 +10616,6 @@ COND_TOOLKIT_QT___GUI_SRC_OBJECTS_3 = \ corelib_generic_fdrepdlg.o \ corelib_filepickerg.o \ corelib_fontpickerg.o \ - corelib_generic_icon.o \ corelib_generic_imaglist.o \ corelib_prntdlgg.o \ corelib_generic_textmeasure.o \ @@ -10759,7 +10727,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_7 = \ corelib_fontmgrcmn.o \ corelib_generic_caret.o \ corelib_generic_colour.o \ - corelib_generic_icon.o \ corelib_mask.o \ corelib_generic_textmeasure.o \ corelib_dfb_app.o \ @@ -10786,7 +10753,6 @@ COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_7 = \ @COND_TOOLKIT_DFB@__LOWLEVEL_SRC_OBJECTS_7 = $(COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_7) COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_7 = \ $(__GTK_PLATFORM_SRC_OBJECTS_2_2) \ - corelib_generic_icon.o \ corelib_paletteg.o \ corelib_gtk_app.o \ corelib_assertdlg_gtk.o \ @@ -10828,7 +10794,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_7 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__LOWLEVEL_SRC_OBJECTS_7 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___LOWLEVEL_SRC_OBJECTS_7) COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_7 = \ $(__GTK_PLATFORM_SRC_OBJECTS_2_2) \ - corelib_generic_icon.o \ corelib_paletteg.o \ corelib_gtk_app.o \ corelib_assertdlg_gtk.o \ @@ -10867,7 +10832,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_7 = \ @COND_TOOLKIT_GTK_TOOLKIT_VERSION_3@__LOWLEVEL_SRC_OBJECTS_7 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION_3___LOWLEVEL_SRC_OBJECTS_7) COND_TOOLKIT_GTK_TOOLKIT_VERSION_4___LOWLEVEL_SRC_OBJECTS_7 = \ $(__GTK_PLATFORM_SRC_OBJECTS_2_2) \ - corelib_generic_icon.o \ corelib_paletteg.o \ corelib_gtk_app.o \ corelib_assertdlg_gtk.o \ @@ -10928,7 +10892,7 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_7 = \ corelib_msw_fontutil.o \ corelib_gdiimage.o \ corelib_msw_graphics.o \ - corelib_msw_icon.o \ + corelib_icon.o \ corelib_msw_minifram.o \ corelib_msw_nonownedwnd.o \ corelib_comimpl.o \ @@ -10989,7 +10953,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_7 = \ corelib_unix_sound.o \ corelib_taskbarcmn.o \ corelib_unix_joystick.o \ - corelib_generic_icon.o \ corelib_generic_textmeasure.o \ corelib_generic_timer.o \ corelib_x11_app.o \ @@ -12308,7 +12271,6 @@ COND_PLATFORM_MACOSX_1___OSX_COMMON_SRC_OBJECTS = \ monodll_prntdlgg.o \ monodll_generic_statusbr.o \ monodll_generic_textmeasure.o \ - monodll_generic_icon.o \ monodll_statbmp_osx.o \ monodll_generic_imaglist.o @COND_PLATFORM_MACOSX_1@__OSX_COMMON_SRC_OBJECTS = $(COND_PLATFORM_MACOSX_1___OSX_COMMON_SRC_OBJECTS) @@ -12441,7 +12403,6 @@ COND_PLATFORM_MACOSX_1___OSX_COMMON_SRC_OBJECTS_0 = \ monolib_prntdlgg.o \ monolib_generic_statusbr.o \ monolib_generic_textmeasure.o \ - monolib_generic_icon.o \ monolib_statbmp_osx.o \ monolib_generic_imaglist.o @COND_PLATFORM_MACOSX_1@__OSX_COMMON_SRC_OBJECTS_0 = $(COND_PLATFORM_MACOSX_1___OSX_COMMON_SRC_OBJECTS_0) @@ -12573,7 +12534,6 @@ COND_PLATFORM_MACOSX_1___OSX_COMMON_SRC_OBJECTS_8 = \ coredll_prntdlgg.o \ coredll_generic_statusbr.o \ coredll_generic_textmeasure.o \ - coredll_generic_icon.o \ coredll_statbmp_osx.o \ coredll_generic_imaglist.o @COND_PLATFORM_MACOSX_1@__OSX_COMMON_SRC_OBJECTS_8 = $(COND_PLATFORM_MACOSX_1___OSX_COMMON_SRC_OBJECTS_8) @@ -12705,7 +12665,6 @@ COND_PLATFORM_MACOSX_1___OSX_COMMON_SRC_OBJECTS_9 = \ corelib_prntdlgg.o \ corelib_generic_statusbr.o \ corelib_generic_textmeasure.o \ - corelib_generic_icon.o \ corelib_statbmp_osx.o \ corelib_generic_imaglist.o @COND_PLATFORM_MACOSX_1@__OSX_COMMON_SRC_OBJECTS_9 = $(COND_PLATFORM_MACOSX_1___OSX_COMMON_SRC_OBJECTS_9) @@ -16322,6 +16281,9 @@ monodll_xh_treebk.o: $(srcdir)/src/xrc/xh_treebk.cpp $(MONODLL_ODEP) monodll_xh_unkwn.o: $(srcdir)/src/xrc/xh_unkwn.cpp $(MONODLL_ODEP) $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/xrc/xh_unkwn.cpp +monodll_xh_vlistbox.o: $(srcdir)/src/xrc/xh_vlistbox.cpp $(MONODLL_ODEP) + $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/xrc/xh_vlistbox.cpp + monodll_xh_wizrd.o: $(srcdir)/src/xrc/xh_wizrd.cpp $(MONODLL_ODEP) $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/xrc/xh_wizrd.cpp @@ -17003,30 +16965,6 @@ monodll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONODLL_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@monodll_msw_joystick.o: $(srcdir)/src/msw/joystick.cpp $(MONODLL_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/msw/joystick.cpp -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@monodll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONODLL_ODEP) -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@monodll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONODLL_ODEP) -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@monodll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONODLL_ODEP) -@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_4_USE_GUI_1@monodll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONODLL_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_4_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_3_USE_GUI_1@monodll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONODLL_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_3_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1@monodll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONODLL_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_X11_USE_GUI_1@monodll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONODLL_ODEP) -@COND_TOOLKIT_X11_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_DFB_USE_GUI_1@monodll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONODLL_ODEP) -@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - @COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@monodll_paletteg.o: $(srcdir)/src/generic/paletteg.cpp $(MONODLL_ODEP) @COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/paletteg.cpp @@ -17414,7 +17352,7 @@ monodll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONODLL_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@monodll_msw_graphics.o: $(srcdir)/src/msw/graphics.cpp $(MONODLL_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/msw/graphics.cpp -@COND_TOOLKIT_MSW_USE_GUI_1@monodll_msw_icon.o: $(srcdir)/src/msw/icon.cpp $(MONODLL_ODEP) +@COND_TOOLKIT_MSW_USE_GUI_1@monodll_icon.o: $(srcdir)/src/msw/icon.cpp $(MONODLL_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/msw/icon.cpp @COND_TOOLKIT_MSW_USE_GUI_1@monodll_msw_minifram.o: $(srcdir)/src/msw/minifram.cpp $(MONODLL_ODEP) @@ -21080,6 +21018,9 @@ monolib_xh_treebk.o: $(srcdir)/src/xrc/xh_treebk.cpp $(MONOLIB_ODEP) monolib_xh_unkwn.o: $(srcdir)/src/xrc/xh_unkwn.cpp $(MONOLIB_ODEP) $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/xrc/xh_unkwn.cpp +monolib_xh_vlistbox.o: $(srcdir)/src/xrc/xh_vlistbox.cpp $(MONOLIB_ODEP) + $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/xrc/xh_vlistbox.cpp + monolib_xh_wizrd.o: $(srcdir)/src/xrc/xh_wizrd.cpp $(MONOLIB_ODEP) $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/xrc/xh_wizrd.cpp @@ -21761,30 +21702,6 @@ monolib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONOLIB_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@monolib_msw_joystick.o: $(srcdir)/src/msw/joystick.cpp $(MONOLIB_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/msw/joystick.cpp -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@monolib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONOLIB_ODEP) -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@monolib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONOLIB_ODEP) -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@monolib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONOLIB_ODEP) -@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_4_USE_GUI_1@monolib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONOLIB_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_4_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_3_USE_GUI_1@monolib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONOLIB_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_3_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1@monolib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONOLIB_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_X11_USE_GUI_1@monolib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONOLIB_ODEP) -@COND_TOOLKIT_X11_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_DFB_USE_GUI_1@monolib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(MONOLIB_ODEP) -@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - @COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@monolib_paletteg.o: $(srcdir)/src/generic/paletteg.cpp $(MONOLIB_ODEP) @COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/paletteg.cpp @@ -22172,7 +22089,7 @@ monolib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONOLIB_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@monolib_msw_graphics.o: $(srcdir)/src/msw/graphics.cpp $(MONOLIB_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/msw/graphics.cpp -@COND_TOOLKIT_MSW_USE_GUI_1@monolib_msw_icon.o: $(srcdir)/src/msw/icon.cpp $(MONOLIB_ODEP) +@COND_TOOLKIT_MSW_USE_GUI_1@monolib_icon.o: $(srcdir)/src/msw/icon.cpp $(MONOLIB_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/msw/icon.cpp @COND_TOOLKIT_MSW_USE_GUI_1@monolib_msw_minifram.o: $(srcdir)/src/msw/minifram.cpp $(MONOLIB_ODEP) @@ -26609,30 +26526,6 @@ coredll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(COREDLL_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@coredll_msw_joystick.o: $(srcdir)/src/msw/joystick.cpp $(COREDLL_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/msw/joystick.cpp -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@coredll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(COREDLL_ODEP) -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@coredll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(COREDLL_ODEP) -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@coredll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(COREDLL_ODEP) -@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_4_USE_GUI_1@coredll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(COREDLL_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_4_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_3_USE_GUI_1@coredll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(COREDLL_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_3_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1@coredll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(COREDLL_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_X11_USE_GUI_1@coredll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(COREDLL_ODEP) -@COND_TOOLKIT_X11_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_DFB_USE_GUI_1@coredll_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(COREDLL_ODEP) -@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - @COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@coredll_paletteg.o: $(srcdir)/src/generic/paletteg.cpp $(COREDLL_ODEP) @COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/paletteg.cpp @@ -27020,7 +26913,7 @@ coredll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(COREDLL_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@coredll_msw_graphics.o: $(srcdir)/src/msw/graphics.cpp $(COREDLL_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/msw/graphics.cpp -@COND_TOOLKIT_MSW_USE_GUI_1@coredll_msw_icon.o: $(srcdir)/src/msw/icon.cpp $(COREDLL_ODEP) +@COND_TOOLKIT_MSW_USE_GUI_1@coredll_icon.o: $(srcdir)/src/msw/icon.cpp $(COREDLL_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/msw/icon.cpp @COND_TOOLKIT_MSW_USE_GUI_1@coredll_msw_minifram.o: $(srcdir)/src/msw/minifram.cpp $(COREDLL_ODEP) @@ -30329,30 +30222,6 @@ corelib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(CORELIB_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@corelib_msw_joystick.o: $(srcdir)/src/msw/joystick.cpp $(CORELIB_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/msw/joystick.cpp -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@corelib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(CORELIB_ODEP) -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@corelib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(CORELIB_ODEP) -@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@corelib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(CORELIB_ODEP) -@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_4_USE_GUI_1@corelib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(CORELIB_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_4_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_3_USE_GUI_1@corelib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(CORELIB_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_3_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1@corelib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(CORELIB_ODEP) -@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_X11_USE_GUI_1@corelib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(CORELIB_ODEP) -@COND_TOOLKIT_X11_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - -@COND_TOOLKIT_DFB_USE_GUI_1@corelib_generic_icon.o: $(srcdir)/src/generic/icon.cpp $(CORELIB_ODEP) -@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/icon.cpp - @COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@corelib_paletteg.o: $(srcdir)/src/generic/paletteg.cpp $(CORELIB_ODEP) @COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/paletteg.cpp @@ -30740,7 +30609,7 @@ corelib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(CORELIB_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@corelib_msw_graphics.o: $(srcdir)/src/msw/graphics.cpp $(CORELIB_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/msw/graphics.cpp -@COND_TOOLKIT_MSW_USE_GUI_1@corelib_msw_icon.o: $(srcdir)/src/msw/icon.cpp $(CORELIB_ODEP) +@COND_TOOLKIT_MSW_USE_GUI_1@corelib_icon.o: $(srcdir)/src/msw/icon.cpp $(CORELIB_ODEP) @COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/msw/icon.cpp @COND_TOOLKIT_MSW_USE_GUI_1@corelib_msw_minifram.o: $(srcdir)/src/msw/minifram.cpp $(CORELIB_ODEP) @@ -33368,6 +33237,9 @@ xrcdll_xh_treebk.o: $(srcdir)/src/xrc/xh_treebk.cpp $(XRCDLL_ODEP) xrcdll_xh_unkwn.o: $(srcdir)/src/xrc/xh_unkwn.cpp $(XRCDLL_ODEP) $(CXXC) -c -o $@ $(XRCDLL_CXXFLAGS) $(srcdir)/src/xrc/xh_unkwn.cpp +xrcdll_xh_vlistbox.o: $(srcdir)/src/xrc/xh_vlistbox.cpp $(XRCDLL_ODEP) + $(CXXC) -c -o $@ $(XRCDLL_CXXFLAGS) $(srcdir)/src/xrc/xh_vlistbox.cpp + xrcdll_xh_wizrd.o: $(srcdir)/src/xrc/xh_wizrd.cpp $(XRCDLL_ODEP) $(CXXC) -c -o $@ $(XRCDLL_CXXFLAGS) $(srcdir)/src/xrc/xh_wizrd.cpp @@ -33575,6 +33447,9 @@ xrclib_xh_treebk.o: $(srcdir)/src/xrc/xh_treebk.cpp $(XRCLIB_ODEP) xrclib_xh_unkwn.o: $(srcdir)/src/xrc/xh_unkwn.cpp $(XRCLIB_ODEP) $(CXXC) -c -o $@ $(XRCLIB_CXXFLAGS) $(srcdir)/src/xrc/xh_unkwn.cpp +xrclib_xh_vlistbox.o: $(srcdir)/src/xrc/xh_vlistbox.cpp $(XRCLIB_ODEP) + $(CXXC) -c -o $@ $(XRCLIB_CXXFLAGS) $(srcdir)/src/xrc/xh_vlistbox.cpp + xrclib_xh_wizrd.o: $(srcdir)/src/xrc/xh_wizrd.cpp $(XRCLIB_ODEP) $(CXXC) -c -o $@ $(XRCLIB_CXXFLAGS) $(srcdir)/src/xrc/xh_wizrd.cpp diff --git a/acinclude.m4 b/acinclude.m4 index 3bc5538e597e..8151b7964e5a 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -250,44 +250,6 @@ AC_DEFUN([WX_CHECK_FUNCS], done ]) -dnl --------------------------------------------------------------------------- -dnl a slightly better AC_C_BIGENDIAN macro which allows cross-compiling -dnl --------------------------------------------------------------------------- - -AC_DEFUN([WX_C_BIGENDIAN], -[AC_CACHE_CHECK([whether byte ordering is bigendian], ac_cv_c_bigendian, -[ac_cv_c_bigendian=unknown -# See if sys/param.h defines the BYTE_ORDER macro. -AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include -#include ], [ -#if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN - bogus endian macros -#endif])], [# It does; now see whether it defined to BIG_ENDIAN or not. -AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include -#include ], [ -#if BYTE_ORDER != BIG_ENDIAN - not big endian -#endif])], ac_cv_c_bigendian=yes, ac_cv_c_bigendian=no)]) -if test $ac_cv_c_bigendian = unknown; then -AC_RUN_IFELSE([AC_LANG_PROGRAM([[#include ]],[[ - /* Are we little or big endian? From Harbison&Steele. */ - union - { - long l; - char c[sizeof (long)]; - } u; - u.l = 1; - exit (u.c[sizeof (long) - 1] == 1); -]])], [ac_cv_c_bigendian=no], [ac_cv_c_bigendian=yes], [ac_cv_c_bigendian=unknown]) -fi]) -if test $ac_cv_c_bigendian = unknown; then - AC_MSG_WARN([Assuming little-endian target machine - this may be overridden by adding the line "ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}" to config.cache file]) -fi -if test $ac_cv_c_bigendian = yes; then - AC_DEFINE(WORDS_BIGENDIAN) -fi -]) - dnl --------------------------------------------------------------------------- dnl override AC_ARG_ENABLE/WITH to handle options defaults dnl --------------------------------------------------------------------------- diff --git a/build/aclocal/pkg.m4 b/build/aclocal/pkg.m4 index cbb46dbf832b..39b90df6a917 100644 --- a/build/aclocal/pkg.m4 +++ b/build/aclocal/pkg.m4 @@ -1,86 +1,123 @@ -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# -# Copyright © 2004 Scott James Remnant . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 12 (pkg-config-0.29.2) + +dnl Copyright © 2004 Scott James Remnant . +dnl Copyright © 2012-2015 Dan Nicholson +dnl +dnl This program is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU General Public License as published by +dnl the Free Software Foundation; either version 2 of the License, or +dnl (at your option) any later version. +dnl +dnl This program is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +dnl General Public License for more details. +dnl +dnl You should have received a copy of the GNU General Public License +dnl along with this program; if not, write to the Free Software +dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +dnl 02111-1307, USA. +dnl +dnl As a special exception to the GNU General Public License, if you +dnl distribute this file as part of a program that contains a +dnl configuration script generated by Autoconf, you may include it under +dnl the same distribution terms that you use for the rest of that +dnl program. + +dnl PKG_PREREQ(MIN-VERSION) +dnl ----------------------- +dnl Since: 0.29 +dnl +dnl Verify that the version of the pkg-config macros are at least +dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's +dnl installed version of pkg-config, this checks the developer's version +dnl of pkg.m4 when generating configure. +dnl +dnl To ensure that this macro is defined, also add: +dnl m4_ifndef([PKG_PREREQ], +dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) +dnl +dnl See the "Since" comment for each macro you use to see what version +dnl of the macros you require. +m4_defun([PKG_PREREQ], +[m4_define([PKG_MACROS_VERSION], [0.29.2]) +m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, + [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) +])dnl PKG_PREREQ + +dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) +dnl ---------------------------------- +dnl Since: 0.16 +dnl +dnl Search for the pkg-config tool and set the PKG_CONFIG variable to +dnl first found in the path. Checks that the version of pkg-config found +dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is +dnl used since that's the first version where most current features of +dnl pkg-config existed. AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) -AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl +m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) +m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) +AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) +AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) + AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then - _pkg_min_version=m4_default([$1], [0.9.0]) - AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - PKG_CONFIG="" - fi - + _pkg_min_version=m4_default([$1], [0.9.0]) + AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + PKG_CONFIG="" + fi fi[]dnl -])# PKG_PROG_PKG_CONFIG - -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# -# Similar to PKG_CHECK_MODULES, make sure that the first instance of -# this or PKG_CHECK_MODULES is called, or make sure to call -# PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- +])dnl PKG_PROG_PKG_CONFIG + +dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +dnl ------------------------------------------------------------------- +dnl Since: 0.18 +dnl +dnl Check to see whether a particular set of modules exists. Similar to +dnl PKG_CHECK_MODULES(), but does not set variables or print errors. +dnl +dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +dnl only at the first occurence in configure.ac, so if the first place +dnl it's called might be skipped (such as if it is within an "if", you +dnl have to call PKG_CHECK_EXISTS manually AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then - m4_ifval([$2], [$2], [:]) + m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) - -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- +dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +dnl --------------------------------------------- +dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting +dnl pkg_failed based on the result. m4_define([_PKG_CONFIG], -[if test -n "$PKG_CONFIG"; then - if test -n "$$1"; then - pkg_cv_[]$1="$$1" - else - PKG_CHECK_EXISTS([$3], - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], - [pkg_failed=yes]) - fi -else - pkg_failed=untried +[if test -n "$$1"; then + pkg_cv_[]$1="$$1" + elif test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes ], + [pkg_failed=yes]) + else + pkg_failed=untried fi[]dnl -])# _PKG_CONFIG +])dnl _PKG_CONFIG -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- +dnl _PKG_SHORT_ERRORS_SUPPORTED +dnl --------------------------- +dnl Internal check to see if pkg-config supports short errors. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then @@ -88,26 +125,24 @@ if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then else _pkg_short_errors_supported=no fi[]dnl -])# _PKG_SHORT_ERRORS_SUPPORTED - - -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- +])dnl _PKG_SHORT_ERRORS_SUPPORTED + + +dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +dnl [ACTION-IF-NOT-FOUND]) +dnl -------------------------------------------------------------- +dnl Since: 0.4.0 +dnl +dnl Note that if there is a possibility the first call to +dnl PKG_CHECK_MODULES might not happen, you should be sure to include an +dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no -AC_MSG_CHECKING([for $1]) +AC_MSG_CHECKING([for $2]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) @@ -117,16 +152,17 @@ and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then + AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` - else - $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` + else + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD + # Put the nasty error message in config.log where it belongs + echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD - ifelse([$4], , [AC_MSG_ERROR(dnl + m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS @@ -134,23 +170,106 @@ $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. -_PKG_TEXT -])], - [$4]) +_PKG_TEXT])[]dnl + ]) elif test $pkg_failed = untried; then - ifelse([$4], , [AC_MSG_FAILURE(dnl + AC_MSG_RESULT([no]) + m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT -To get pkg-config, see .])], - [$4]) +To get pkg-config, see .])[]dnl + ]) else - $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS - $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) - ifelse([$3], , :, [$3]) + $3 fi[]dnl -])# PKG_CHECK_MODULES +])dnl PKG_CHECK_MODULES + + +dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +dnl [ACTION-IF-NOT-FOUND]) +dnl --------------------------------------------------------------------- +dnl Since: 0.29 +dnl +dnl Checks for existence of MODULES and gathers its build flags with +dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags +dnl and VARIABLE-PREFIX_LIBS from --libs. +dnl +dnl Note that if there is a possibility the first call to +dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to +dnl include an explicit call to PKG_PROG_PKG_CONFIG in your +dnl configure.ac. +AC_DEFUN([PKG_CHECK_MODULES_STATIC], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +_save_PKG_CONFIG=$PKG_CONFIG +PKG_CONFIG="$PKG_CONFIG --static" +PKG_CHECK_MODULES($@) +PKG_CONFIG=$_save_PKG_CONFIG[]dnl +])dnl PKG_CHECK_MODULES_STATIC + + +dnl PKG_INSTALLDIR([DIRECTORY]) +dnl ------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable pkgconfigdir as the location where a module +dnl should install pkg-config .pc files. By default the directory is +dnl $libdir/pkgconfig, but the default can be changed by passing +dnl DIRECTORY. The user can override through the --with-pkgconfigdir +dnl parameter. +AC_DEFUN([PKG_INSTALLDIR], +[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) +m4_pushdef([pkg_description], + [pkg-config installation directory @<:@]pkg_default[@:>@]) +AC_ARG_WITH([pkgconfigdir], + [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, + [with_pkgconfigdir=]pkg_default) +AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) +m4_popdef([pkg_default]) +m4_popdef([pkg_description]) +])dnl PKG_INSTALLDIR + + +dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) +dnl -------------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable noarch_pkgconfigdir as the location where a +dnl module should install arch-independent pkg-config .pc files. By +dnl default the directory is $datadir/pkgconfig, but the default can be +dnl changed by passing DIRECTORY. The user can override through the +dnl --with-noarch-pkgconfigdir parameter. +AC_DEFUN([PKG_NOARCH_INSTALLDIR], +[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) +m4_pushdef([pkg_description], + [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) +AC_ARG_WITH([noarch-pkgconfigdir], + [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, + [with_noarch_pkgconfigdir=]pkg_default) +AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) +m4_popdef([pkg_default]) +m4_popdef([pkg_description]) +])dnl PKG_NOARCH_INSTALLDIR + + +dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, +dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +dnl ------------------------------------------- +dnl Since: 0.28 +dnl +dnl Retrieves the value of the pkg-config variable for the given module. +AC_DEFUN([PKG_CHECK_VAR], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl + +_PKG_CONFIG([$1], [variable="][$3]["], [$2]) +AS_VAR_COPY([$1], [pkg_cv_][$1]) + +AS_VAR_IF([$1], [""], [$5], [$4])dnl +])dnl PKG_CHECK_VAR diff --git a/build/bakefiles/files.bkl b/build/bakefiles/files.bkl index a3959c3df6b5..aad59df8ea20 100644 --- a/build/bakefiles/files.bkl +++ b/build/bakefiles/files.bkl @@ -386,7 +386,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! src/generic/fdrepdlg.cpp src/generic/filepickerg.cpp src/generic/fontpickerg.cpp - src/generic/icon.cpp src/generic/imaglist.cpp src/generic/prntdlgg.cpp src/generic/textmeasure.cpp @@ -1407,7 +1406,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! $(GTK_PLATFORM_SRC) - src/generic/icon.cpp src/generic/paletteg.cpp src/gtk/app.cpp src/gtk/assertdlg_gtk.cpp @@ -1629,7 +1627,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! $(XWIN_LOWLEVEL_SRC) - src/generic/icon.cpp src/generic/textmeasure.cpp src/generic/timer.cpp src/x11/app.cpp @@ -2020,7 +2017,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! src/common/fontmgrcmn.cpp src/generic/caret.cpp src/generic/colour.cpp - src/generic/icon.cpp src/generic/mask.cpp src/generic/textmeasure.cpp src/dfb/app.cpp @@ -2181,7 +2177,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! src/generic/prntdlgg.cpp src/generic/statusbr.cpp src/generic/textmeasure.cpp - src/generic/icon.cpp src/osx/statbmp_osx.cpp src/generic/imaglist.cpp @@ -2789,6 +2784,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! src/xrc/xh_tree.cpp src/xrc/xh_treebk.cpp src/xrc/xh_unkwn.cpp + src/xrc/xh_vlistbox.cpp src/xrc/xh_wizrd.cpp src/xrc/xmlres.cpp src/xrc/xmlrsall.cpp @@ -2861,6 +2857,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! wx/xrc/xh_tree.h wx/xrc/xh_treebk.h wx/xrc/xh_unkwn.h + wx/xrc/xh_vlistbox.h wx/xrc/xh_wizrd.h wx/xrc/xmlres.h wx/xrc/xh_bookctrlbase.h @@ -3006,6 +3003,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! wx/aui/tabart.h wx/xrc/xh_aui.h wx/xrc/xh_auitoolb.h + wx/aui/serializer.h $(AUI_CMN_HDR) diff --git a/build/bakefiles/wx.bkl b/build/bakefiles/wx.bkl index 1c27dea95431..63347f246dec 100644 --- a/build/bakefiles/wx.bkl +++ b/build/bakefiles/wx.bkl @@ -140,8 +140,9 @@ $(SRCDIR)/locale wxstd-$(WX_RELEASE) - ca cs da de el es fi fr hu id it ja nl pl ru sl sv tr uk - zh zh_CN zh_TW + af an ar ca ca@valencia co cs da de el es eu fa_IR fi fr + gl_ES hi hr hu id it ja ka ko_KR lt lv ms nb ne nl pl pt + pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_TW $(LOCALEDIR) diff --git a/build/cmake/files.cmake b/build/cmake/files.cmake index 035be3cdd8cf..391dea4b0635 100644 --- a/build/cmake/files.cmake +++ b/build/cmake/files.cmake @@ -336,7 +336,6 @@ set(QT_SRC src/generic/fontpickerg.cpp src/qt/frame.cpp src/qt/gauge.cpp - src/generic/icon.cpp src/generic/imaglist.cpp src/qt/listbox.cpp src/qt/listctrl.cpp @@ -1288,7 +1287,6 @@ set(GTK_WIN32_HDR set(GTK_LOWLEVEL_SRC ${GTK_PLATFORM_SRC} - src/generic/icon.cpp src/generic/paletteg.cpp src/gtk/app.cpp src/gtk/assertdlg_gtk.cpp @@ -1510,7 +1508,6 @@ set(GTK2_HDR set(X11_LOWLEVEL_SRC ${XWIN_LOWLEVEL_SRC} - src/generic/icon.cpp src/generic/textmeasure.cpp src/generic/timer.cpp src/x11/app.cpp @@ -1906,7 +1903,6 @@ set(DFB_LOWLEVEL_SRC src/common/fontmgrcmn.cpp src/generic/caret.cpp src/generic/colour.cpp - src/generic/icon.cpp src/generic/mask.cpp src/generic/textmeasure.cpp src/dfb/app.cpp @@ -2060,7 +2056,6 @@ set(OSX_COMMON_SRC src/generic/prntdlgg.cpp src/generic/statusbr.cpp src/generic/textmeasure.cpp - src/generic/icon.cpp #TODO: src/osx/statbmp_osx.cpp src/generic/imaglist.cpp @@ -2639,6 +2634,7 @@ set(XRC_SRC src/xrc/xh_tree.cpp src/xrc/xh_treebk.cpp src/xrc/xh_unkwn.cpp + src/xrc/xh_vlistbox.cpp src/xrc/xh_wizrd.cpp src/xrc/xmlres.cpp src/xrc/xmlrsall.cpp @@ -2712,6 +2708,7 @@ set(XRC_HDR wx/xrc/xh_tree.h wx/xrc/xh_treebk.h wx/xrc/xh_unkwn.h + wx/xrc/xh_vlistbox.h wx/xrc/xh_wizrd.h wx/xrc/xmlres.h wx/xrc/xh_dataview.h @@ -2793,6 +2790,7 @@ set(AUI_CMN_HDR wx/aui/tabart.h wx/xrc/xh_aui.h wx/xrc/xh_auitoolb.h + wx/aui/serializer.h ) set(AUI_MSW_HDR diff --git a/build/cmake/options.cmake b/build/cmake/options.cmake index f9136f69f67c..6f8e820483be 100644 --- a/build/cmake/options.cmake +++ b/build/cmake/options.cmake @@ -183,7 +183,6 @@ wx_option(wxUSE_FSVOLUME "use wxFSVolume class") wx_option(wxUSE_FSWATCHER "use wxFileSystemWatcher class") wx_option(wxUSE_GEOMETRY "use geometry class") wx_option(wxUSE_LOG "use logging system") -wx_option(wxUSE_LONGLONG "use wxLongLong class") wx_option(wxUSE_MIMETYPE "use wxMimeTypesManager") wx_option(wxUSE_PRINTF_POS_PARAMS "use wxVsnprintf() which supports positional parameters") wx_option(wxUSE_SECRETSTORE "use wxSecretStore class") diff --git a/build/cmake/samples/CMakeLists.txt b/build/cmake/samples/CMakeLists.txt index f2508e244dd8..77486f1c648a 100644 --- a/build/cmake/samples/CMakeLists.txt +++ b/build/cmake/samples/CMakeLists.txt @@ -11,7 +11,7 @@ wx_add_sample(access accesstest.cpp DEPENDS wxUSE_ACCESSIBILITY) wx_add_sample(animate anitest.cpp anitest.h DATA throbber.gif throbber_2x.gif hourglass.ani DEPENDS wxUSE_ANIMATIONCTRL) wx_add_sample(archive CONSOLE) wx_add_sample(artprov arttest.cpp artbrows.cpp artbrows.h) -wx_add_sample(aui auidemo.cpp LIBRARIES wxaui wxhtml NAME auidemo DEPENDS wxUSE_AUI) +wx_add_sample(aui auidemo.cpp LIBRARIES wxaui wxhtml wxxml NAME auidemo DEPENDS wxUSE_AUI) wx_add_sample(calendar DEPENDS wxUSE_CALENDARCTRL) wx_add_sample(caret DEPENDS wxUSE_CARET) wx_add_sample(collpane DEPENDS wxUSE_COLLPANE) diff --git a/build/cmake/setup.h.in b/build/cmake/setup.h.in index 8cb482c7fdf2..ac5e29276f5a 100644 --- a/build/cmake/setup.h.in +++ b/build/cmake/setup.h.in @@ -162,8 +162,6 @@ #cmakedefine01 wxUSE_STD_STRING_CONV_IN_WXSTRING -#cmakedefine01 wxUSE_LONGLONG - #cmakedefine01 wxUSE_BASE64 #cmakedefine01 wxUSE_CONSOLE_EVENTLOOP diff --git a/build/cmake/tests/gui/CMakeLists.txt b/build/cmake/tests/gui/CMakeLists.txt index cf685689ca12..8d2c87b26402 100644 --- a/build/cmake/tests/gui/CMakeLists.txt +++ b/build/cmake/tests/gui/CMakeLists.txt @@ -151,6 +151,7 @@ set(TEST_GUI_DATA image/bitfields-alpha.bmp image/8bpp-colorsused-large.bmp image/8bpp-colorsused-negative.bmp + image/32bpp_rgb.bmp image/rle4-delta-320x240.bmp image/rle8-delta-320x240-expected.bmp image/rle8-delta-320x240.bmp diff --git a/build/files b/build/files index 8fc9cede57fe..c95718e619c2 100644 --- a/build/files +++ b/build/files @@ -321,7 +321,6 @@ QT_SRC= src/generic/fdrepdlg.cpp src/generic/filepickerg.cpp src/generic/fontpickerg.cpp - src/generic/icon.cpp src/generic/imaglist.cpp src/generic/paletteg.cpp src/generic/prntdlgg.cpp @@ -1300,7 +1299,6 @@ GTK_WIN32_HDR = wx/unix/fontutil.h GTK_LOWLEVEL_SRC = $(GTK_PLATFORM_SRC) - src/generic/icon.cpp src/generic/paletteg.cpp src/gtk/app.cpp src/gtk/assertdlg_gtk.cpp @@ -1518,7 +1516,6 @@ X11_LOWLEVEL_SRC = $(XWIN_LOWLEVEL_SRC) src/unix/displayx11.cpp src/unix/taskbarx11.cpp - src/generic/icon.cpp src/generic/textmeasure.cpp src/generic/timer.cpp src/x11/app.cpp @@ -1896,7 +1893,6 @@ DFB_LOWLEVEL_SRC = src/common/fontmgrcmn.cpp src/generic/caret.cpp src/generic/colour.cpp - src/generic/icon.cpp src/generic/mask.cpp src/generic/textmeasure.cpp src/dfb/app.cpp @@ -2042,7 +2038,6 @@ OSX_COMMON_SRC = src/generic/filepickerg.cpp src/generic/fontdlgg.cpp src/generic/fontpickerg.cpp - src/generic/icon.cpp src/generic/imaglist.cpp src/generic/listctrl.cpp src/generic/prntdlgg.cpp @@ -2578,6 +2573,7 @@ XRC_SRC = src/xrc/xh_tree.cpp src/xrc/xh_treebk.cpp src/xrc/xh_unkwn.cpp + src/xrc/xh_vlistbox.cpp src/xrc/xh_wizrd.cpp src/xrc/xmlres.cpp src/xrc/xmlrsall.cpp @@ -2649,6 +2645,7 @@ XRC_HDR = wx/xrc/xh_tree.h wx/xrc/xh_treebk.h wx/xrc/xh_unkwn.h + wx/xrc/xh_vlistbox.h wx/xrc/xh_wizrd.h wx/xrc/xmlres.h @@ -2722,6 +2719,7 @@ AUI_CMN_HDR = wx/aui/auibar.h wx/aui/tabmdi.h wx/aui/aui.h + wx/aui/serializer.h wx/aui/tabart.h wx/xrc/xh_aui.h wx/xrc/xh_auitoolb.h diff --git a/build/msw/makefile.gcc b/build/msw/makefile.gcc index 9238c12c03b8..afd1023b02f8 100644 --- a/build/msw/makefile.gcc +++ b/build/msw/makefile.gcc @@ -1353,6 +1353,7 @@ XRCDLL_OBJECTS = \ $(OBJS)\xrcdll_xh_tree.o \ $(OBJS)\xrcdll_xh_treebk.o \ $(OBJS)\xrcdll_xh_unkwn.o \ + $(OBJS)\xrcdll_xh_vlistbox.o \ $(OBJS)\xrcdll_xh_wizrd.o \ $(OBJS)\xrcdll_xmlres.o \ $(OBJS)\xrcdll_xmlrsall.o \ @@ -1432,6 +1433,7 @@ XRCLIB_OBJECTS = \ $(OBJS)\xrclib_xh_tree.o \ $(OBJS)\xrclib_xh_treebk.o \ $(OBJS)\xrclib_xh_unkwn.o \ + $(OBJS)\xrclib_xh_vlistbox.o \ $(OBJS)\xrclib_xh_wizrd.o \ $(OBJS)\xrclib_xmlres.o \ $(OBJS)\xrclib_xmlrsall.o \ @@ -1836,6 +1838,7 @@ ____MONOLIB_GUI_SRC_FILENAMES_OBJECTS = \ $(OBJS)\monodll_xh_tree.o \ $(OBJS)\monodll_xh_treebk.o \ $(OBJS)\monodll_xh_unkwn.o \ + $(OBJS)\monodll_xh_vlistbox.o \ $(OBJS)\monodll_xh_wizrd.o \ $(OBJS)\monodll_xmlres.o \ $(OBJS)\monodll_xmlrsall.o \ @@ -2691,6 +2694,7 @@ ____MONOLIB_GUI_SRC_FILENAMES_1_OBJECTS = \ $(OBJS)\monolib_xh_tree.o \ $(OBJS)\monolib_xh_treebk.o \ $(OBJS)\monolib_xh_unkwn.o \ + $(OBJS)\monolib_xh_vlistbox.o \ $(OBJS)\monolib_xh_wizrd.o \ $(OBJS)\monolib_xmlres.o \ $(OBJS)\monolib_xmlrsall.o \ @@ -8051,6 +8055,9 @@ $(OBJS)\monodll_xh_treebk.o: ../../src/xrc/xh_treebk.cpp $(OBJS)\monodll_xh_unkwn.o: ../../src/xrc/xh_unkwn.cpp $(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $< +$(OBJS)\monodll_xh_vlistbox.o: ../../src/xrc/xh_vlistbox.cpp + $(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $< + $(OBJS)\monodll_xh_wizrd.o: ../../src/xrc/xh_wizrd.cpp $(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $< @@ -10646,6 +10653,9 @@ $(OBJS)\monolib_xh_treebk.o: ../../src/xrc/xh_treebk.cpp $(OBJS)\monolib_xh_unkwn.o: ../../src/xrc/xh_unkwn.cpp $(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $< +$(OBJS)\monolib_xh_vlistbox.o: ../../src/xrc/xh_vlistbox.cpp + $(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $< + $(OBJS)\monolib_xh_wizrd.o: ../../src/xrc/xh_wizrd.cpp $(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $< @@ -17003,6 +17013,9 @@ $(OBJS)\xrcdll_xh_treebk.o: ../../src/xrc/xh_treebk.cpp $(OBJS)\xrcdll_xh_unkwn.o: ../../src/xrc/xh_unkwn.cpp $(CXX) -c -o $@ $(XRCDLL_CXXFLAGS) $(CPPDEPS) $< +$(OBJS)\xrcdll_xh_vlistbox.o: ../../src/xrc/xh_vlistbox.cpp + $(CXX) -c -o $@ $(XRCDLL_CXXFLAGS) $(CPPDEPS) $< + $(OBJS)\xrcdll_xh_wizrd.o: ../../src/xrc/xh_wizrd.cpp $(CXX) -c -o $@ $(XRCDLL_CXXFLAGS) $(CPPDEPS) $< @@ -17213,6 +17226,9 @@ $(OBJS)\xrclib_xh_treebk.o: ../../src/xrc/xh_treebk.cpp $(OBJS)\xrclib_xh_unkwn.o: ../../src/xrc/xh_unkwn.cpp $(CXX) -c -o $@ $(XRCLIB_CXXFLAGS) $(CPPDEPS) $< +$(OBJS)\xrclib_xh_vlistbox.o: ../../src/xrc/xh_vlistbox.cpp + $(CXX) -c -o $@ $(XRCLIB_CXXFLAGS) $(CPPDEPS) $< + $(OBJS)\xrclib_xh_wizrd.o: ../../src/xrc/xh_wizrd.cpp $(CXX) -c -o $@ $(XRCLIB_CXXFLAGS) $(CPPDEPS) $< diff --git a/build/msw/makefile.vc b/build/msw/makefile.vc index 1f9742c9256f..5155936e7445 100644 --- a/build/msw/makefile.vc +++ b/build/msw/makefile.vc @@ -1497,6 +1497,7 @@ XRCDLL_OBJECTS = \ $(OBJS)\xrcdll_xh_tree.obj \ $(OBJS)\xrcdll_xh_treebk.obj \ $(OBJS)\xrcdll_xh_unkwn.obj \ + $(OBJS)\xrcdll_xh_vlistbox.obj \ $(OBJS)\xrcdll_xh_wizrd.obj \ $(OBJS)\xrcdll_xmlres.obj \ $(OBJS)\xrcdll_xmlrsall.obj \ @@ -1582,6 +1583,7 @@ XRCLIB_OBJECTS = \ $(OBJS)\xrclib_xh_tree.obj \ $(OBJS)\xrclib_xh_treebk.obj \ $(OBJS)\xrclib_xh_unkwn.obj \ + $(OBJS)\xrclib_xh_vlistbox.obj \ $(OBJS)\xrclib_xh_wizrd.obj \ $(OBJS)\xrclib_xmlres.obj \ $(OBJS)\xrclib_xmlrsall.obj \ @@ -2182,6 +2184,7 @@ ____MONOLIB_GUI_SRC_FILENAMES_OBJECTS = \ $(OBJS)\monodll_xh_tree.obj \ $(OBJS)\monodll_xh_treebk.obj \ $(OBJS)\monodll_xh_unkwn.obj \ + $(OBJS)\monodll_xh_vlistbox.obj \ $(OBJS)\monodll_xh_wizrd.obj \ $(OBJS)\monodll_xmlres.obj \ $(OBJS)\monodll_xmlrsall.obj \ @@ -3037,6 +3040,7 @@ ____MONOLIB_GUI_SRC_FILENAMES_1_OBJECTS = \ $(OBJS)\monolib_xh_tree.obj \ $(OBJS)\monolib_xh_treebk.obj \ $(OBJS)\monolib_xh_unkwn.obj \ + $(OBJS)\monolib_xh_vlistbox.obj \ $(OBJS)\monolib_xh_wizrd.obj \ $(OBJS)\monolib_xmlres.obj \ $(OBJS)\monolib_xmlrsall.obj \ @@ -8520,6 +8524,9 @@ $(OBJS)\monodll_xh_treebk.obj: ..\..\src\xrc\xh_treebk.cpp $(OBJS)\monodll_xh_unkwn.obj: ..\..\src\xrc\xh_unkwn.cpp $(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\xrc\xh_unkwn.cpp +$(OBJS)\monodll_xh_vlistbox.obj: ..\..\src\xrc\xh_vlistbox.cpp + $(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\xrc\xh_vlistbox.cpp + $(OBJS)\monodll_xh_wizrd.obj: ..\..\src\xrc\xh_wizrd.cpp $(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\xrc\xh_wizrd.cpp @@ -11115,6 +11122,9 @@ $(OBJS)\monolib_xh_treebk.obj: ..\..\src\xrc\xh_treebk.cpp $(OBJS)\monolib_xh_unkwn.obj: ..\..\src\xrc\xh_unkwn.cpp $(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\xrc\xh_unkwn.cpp +$(OBJS)\monolib_xh_vlistbox.obj: ..\..\src\xrc\xh_vlistbox.cpp + $(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\xrc\xh_vlistbox.cpp + $(OBJS)\monolib_xh_wizrd.obj: ..\..\src\xrc\xh_wizrd.cpp $(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\xrc\xh_wizrd.cpp @@ -17472,6 +17482,9 @@ $(OBJS)\xrcdll_xh_treebk.obj: ..\..\src\xrc\xh_treebk.cpp $(OBJS)\xrcdll_xh_unkwn.obj: ..\..\src\xrc\xh_unkwn.cpp $(CXX) /c /nologo /TP /Fo$@ $(XRCDLL_CXXFLAGS) ..\..\src\xrc\xh_unkwn.cpp +$(OBJS)\xrcdll_xh_vlistbox.obj: ..\..\src\xrc\xh_vlistbox.cpp + $(CXX) /c /nologo /TP /Fo$@ $(XRCDLL_CXXFLAGS) ..\..\src\xrc\xh_vlistbox.cpp + $(OBJS)\xrcdll_xh_wizrd.obj: ..\..\src\xrc\xh_wizrd.cpp $(CXX) /c /nologo /TP /Fo$@ $(XRCDLL_CXXFLAGS) ..\..\src\xrc\xh_wizrd.cpp @@ -17682,6 +17695,9 @@ $(OBJS)\xrclib_xh_treebk.obj: ..\..\src\xrc\xh_treebk.cpp $(OBJS)\xrclib_xh_unkwn.obj: ..\..\src\xrc\xh_unkwn.cpp $(CXX) /c /nologo /TP /Fo$@ $(XRCLIB_CXXFLAGS) ..\..\src\xrc\xh_unkwn.cpp +$(OBJS)\xrclib_xh_vlistbox.obj: ..\..\src\xrc\xh_vlistbox.cpp + $(CXX) /c /nologo /TP /Fo$@ $(XRCLIB_CXXFLAGS) ..\..\src\xrc\xh_vlistbox.cpp + $(OBJS)\xrclib_xh_wizrd.obj: ..\..\src\xrc\xh_wizrd.cpp $(CXX) /c /nologo /TP /Fo$@ $(XRCLIB_CXXFLAGS) ..\..\src\xrc\xh_wizrd.cpp diff --git a/build/msw/wx_aui.vcxproj b/build/msw/wx_aui.vcxproj index 8f5e4d92882b..448783fcab9b 100644 --- a/build/msw/wx_aui.vcxproj +++ b/build/msw/wx_aui.vcxproj @@ -931,6 +931,7 @@ + diff --git a/build/msw/wx_aui.vcxproj.filters b/build/msw/wx_aui.vcxproj.filters index e582bb6b1c6b..09323c60435c 100644 --- a/build/msw/wx_aui.vcxproj.filters +++ b/build/msw/wx_aui.vcxproj.filters @@ -86,6 +86,9 @@ Common Headers + + Common Headers + Common Headers diff --git a/build/msw/wx_xrc.vcxproj b/build/msw/wx_xrc.vcxproj index 1270edbf9630..e2009b51bed9 100644 --- a/build/msw/wx_xrc.vcxproj +++ b/build/msw/wx_xrc.vcxproj @@ -927,6 +927,7 @@ + @@ -1046,6 +1047,7 @@ + diff --git a/build/msw/wx_xrc.vcxproj.filters b/build/msw/wx_xrc.vcxproj.filters index 9ee1e1409589..74381fb790db 100644 --- a/build/msw/wx_xrc.vcxproj.filters +++ b/build/msw/wx_xrc.vcxproj.filters @@ -43,6 +43,9 @@ Source Files + + Source Files + Source Files @@ -220,6 +223,9 @@ Source Files + + Source Files + Source Files @@ -229,9 +235,6 @@ Source Files - - Source Files - @@ -260,6 +263,9 @@ Common Headers + + Common Headers + Common Headers @@ -437,13 +443,13 @@ Common Headers - + Common Headers - + Common Headers - + Common Headers diff --git a/build/osx/wxcocoa.xcodeproj/project.pbxproj b/build/osx/wxcocoa.xcodeproj/project.pbxproj index f3aff05037d7..4e5d7cf04bd1 100644 --- a/build/osx/wxcocoa.xcodeproj/project.pbxproj +++ b/build/osx/wxcocoa.xcodeproj/project.pbxproj @@ -44,2979 +44,2979 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - BEAC2449AFA7304989BA301E /* fontpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */; }; - 8C52B1985BAA371FA22CCEBB /* combobox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57C06D5DB5F733A4A235B206 /* combobox.mm */; }; - 4AEC67BF65B039D99F421666 /* statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C87B071E3593A889704F512 /* statbar.cpp */; }; - 9FA6C4275F0D3E1A884ED561 /* pcre2_auto_possess.c in Sources */ = {isa = PBXBuildFile; fileRef = C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */; }; - 4156FDB73D0A397A870E4302 /* overlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD8031E28A3C9CB7C45784 /* overlay.mm */; }; - 6138BCBC8E4438FA91E0EF9F /* xh_chckb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */; }; - 47F4FC8717AF3A848812DFCC /* xh_radbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */; }; - 131B879180AE3FB481F81CC7 /* fs_mem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A305CEC03B3085B159B617 /* fs_mem.cpp */; }; - A4F2426F36653C6D87EC18AE /* activityindicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5814208070CF3D899F132BA1 /* activityindicator.mm */; }; - 2386B575BC3931D2AF86CB33 /* fontdlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38CEA4A3579331EF808B8363 /* fontdlgosx.mm */; }; - D54A162E557834A48F4646A9 /* advprops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 326723AEB79A305F90D6B41D /* advprops.cpp */; }; - C5C60B22CE6A3BCB868F69E8 /* pcre2_find_bracket.c in Sources */ = {isa = PBXBuildFile; fileRef = 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */; }; - FE9A662A1F9B34D099C45C1D /* xh_cald.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 093B5233861B3F9B8C85762B /* xh_cald.cpp */; }; - A965348C7FA73CEC90C8FA25 /* filedlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */; }; - 056CA84179433AA48D55DA65 /* bar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FDDE855D9F83E4891362EB4 /* bar.cpp */; }; - 5C5D0983160A36189A770742 /* webviewarchivehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */; }; - A52A7D2FEB1434E29C64582C /* RESearch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E145FC31ED523B4AA5080A61 /* RESearch.cxx */; }; - E7921B0472B63E4091F4F517 /* xh_collpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */; }; - BFA6983551B4310DA7C8A404 /* jcdctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DBF3053414F3C448312165A /* jcdctmgr.c */; }; - 15735ED6556130F6A14F0BCD /* ScintillaBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */; }; - D4C87E227A28391891D89088 /* filename.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */; }; - FBE4DB30865D3177B3A9993B /* xh_animatctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */; }; - 4269B85FDC5639BEB76A8AEB /* nonownedwnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */; }; - DD1B139EA5AD3F6DB92C0FA8 /* EditModel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E685D81FB9FF3081B6C5C321 /* EditModel.cxx */; }; - 95AD56D602CF3C5085602AF8 /* geometry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC0A61629E635FAB4E09505 /* geometry.cpp */; }; - 1A70DDEDF9E13FF4BDA390E9 /* bmpbndl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */; }; - 44C6F11C7D1C399F99CF6BD4 /* xh_auitoolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */; }; - 3D22FC202D903007AEE3D164 /* fdiounix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */; }; - 3D762A0BBF1B39B88A769632 /* helpwnd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */; }; - 6F5A0D3C7763334396A3783D /* LexCmake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */; }; - 4BAFAE70A6B1313B96D86630 /* page.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59ED0C057D8F388A89DC7177 /* page.cpp */; }; - 800CFCEDBB7938338C65EEAC /* notifmsgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B233180893DB3328AF4847DA /* notifmsgcmn.cpp */; }; - AD7EEB418C7930CB828EAF87 /* dynlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D272910EC35531E5B4D6E05B /* dynlib.cpp */; }; - 1E2AB43075973AE59A8D89C1 /* fontdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */; }; - A486A28E216D320AB57452D3 /* lzmastream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */; }; - 9B3F9D04FB533D99B58BD519 /* jfdctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */; }; - 699D88EE2DAA3594B6606890 /* ViewStyle.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C133B838193A35ABBB803151 /* ViewStyle.cxx */; }; - 6F0605F3A4E83BF0BF4C8B7E /* cmdproc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */; }; - 1D7442C82B343F50A83B25B0 /* CharClassify.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */; }; - 2FA1A8FE3644325ABAD273A4 /* fmapbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832BBBFE664736D5978420C6 /* fmapbase.cpp */; }; - 8C6E2BD9C31A3AE18AD17D44 /* pcre2_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */; }; - E3AD8574E13B39BDB8D4E92E /* LexKVIrc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */; }; - 5DA146A9F7653F53BF5299E8 /* spinbutt.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C4A7A93CAFC3E22A2A5F7F3 /* spinbutt.mm */; }; - 3813146434693234965C4F31 /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D6B0D32537D35069C7E053F /* inftrees.c */; }; - C8C68927DB243AEAB51E11F2 /* pngwio.c in Sources */ = {isa = PBXBuildFile; fileRef = AF9EE701DD653E2299293E5F /* pngwio.c */; }; - B8FEEC2C94183AB69C963177 /* headercolcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */; }; - 25656617A56D342AA3D1BFE2 /* ctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */; }; - BCD81FD3D1EC305F801E1C1B /* sckipc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */; }; - 4666CDC48BA9301EA283BFFF /* choice_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */; }; - 512AB7B82D57387EBB7BEE27 /* LexFSharp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F8AD617806563DE394C15922 /* LexFSharp.cxx */; }; - 23965E313EDC3BBE9B2FA1C5 /* imagpng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24396D584D053948A3FF0DCD /* imagpng.cpp */; }; - FFF5BFBE600E35FAB7EA522C /* fileback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC12D557950A3B0D89D9F2F3 /* fileback.cpp */; }; - 50E89226E8D7390D9D21C809 /* debugrpt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */; }; - 0FA6E1E47F123FF4A902E4D2 /* xh_odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0080254545B9383ABDF2045C /* xh_odcombo.cpp */; }; - 27E2EABB117334CD89CFD2A4 /* mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B568A7364ECA30288820CCE7 /* mdi.cpp */; }; - 0C2CBD7246993527A829BD94 /* LexDataflex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */; }; - E46BEC5C8D643BD099AF1D56 /* LexSTTXT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 50859F0155753FDCB8C5222A /* LexSTTXT.cxx */; }; - A08165E5D38E3EF6962A7AE9 /* DefaultLexer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */; }; - F501AB044AAC39DCB8C0B3E1 /* editors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C7F740A55E39FD890B3C7F /* editors.cpp */; }; - CB078622E90F33BE9D131131 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28824 /* buttonbar.cpp */; }; - 72AD4417FF7C3094BB1FF62C /* xh_grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93B77251C0E0382D9A8E113D /* xh_grid.cpp */; }; - CB078622E90F33BE9D131132 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28824 /* buttonbar.cpp */; }; - ED8D23D79FF33ED380FE09EB /* scrlwing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */; }; - 9564A6968D66325DAEADEBA3 /* dcgraph.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */; }; - BFD4B8871B3934048B631419 /* languageinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67D76B026121359F9B22F8B0 /* languageinfo.cpp */; }; - 0E024D145DDD38ACAE68F462 /* toplevel_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */; }; - 6FA47EAACE613B039B6EC261 /* containr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3645350F572364BABF50238 /* containr.cpp */; }; - 31FEAB56919D372993CAD89C /* pngrio.c in Sources */ = {isa = PBXBuildFile; fileRef = A06AB1974DB93EE2999EC75C /* pngrio.c */; }; - F9C5EAC42CCF3267B4100BAE /* wakeuppipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */; }; - D51B3389209E370489078891 /* tif_dirread.c in Sources */ = {isa = PBXBuildFile; fileRef = F6EA240B3DB93D398A990FAD /* tif_dirread.c */; }; - 81244C52741332A8B92E5976 /* LexRaku.cxx in Sources */ = {isa = PBXBuildFile; fileRef = ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */; }; - 71CCB06E790C3C54BFF1199D /* LexSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */; }; - D8ADDD24BEAC3D94B3388D3E /* LexCOBOL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */; }; - 164010B26D363F5FA09785B6 /* listctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1B1FBB2BCC43BA7A45E9438 /* listctrlcmn.cpp */; }; - E53AFF04877D34C386D77380 /* wfstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C37866F41B0C31E295AA7FA6 /* wfstream.cpp */; }; - CEE0D7A7D5D8323B9957A780 /* notifmsgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */; }; - C32EF2EC1A103BC3A6254321 /* xh_spin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950D51915EF83B57B5E8306F /* xh_spin.cpp */; }; - 7D0E549020D33ED39751DFC8 /* LexTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */; }; - 4DA9DE940E043C58BEACBB56 /* UniqueString.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */; }; - F72020415D713C1BA41C17CF /* richmsgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */; }; + A9864F0104FA344BBE79D3BC /* rendcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96CED508FA3C3B6B9265099E /* rendcmn.cpp */; }; + AE660214E0CB375FBA508A36 /* uilocale.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1B794996B953D00AC7BC2AE /* uilocale.mm */; }; + 324B2BAC54553D45B3C56BFD /* LexOScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */; }; + B559E894684A38238CAAA115 /* dirctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E110907DDC13305E88B90086 /* dirctrlcmn.cpp */; }; + 98F52D5224B438DFA8887E06 /* timectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741578B590AF3F2CABE615EB /* timectrlg.cpp */; }; + 27759C2FBB0E35FDA847B2B5 /* LexForth.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B181F564935730E89AB00D92 /* LexForth.cxx */; }; + B1E30CF6CFA932F5A3DBA94F /* docview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB634FD597793A74B3B3AA7F /* docview.cpp */; }; 0F8C79010EF0316AA1B7392D /* LexTACL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E5C91072D533919A78D8ED2 /* LexTACL.cxx */; }; - 76A83A293C9F33BCB7DFDE26 /* jdatadst.c in Sources */ = {isa = PBXBuildFile; fileRef = 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */; }; - C40AA245D5773351979A2850 /* filedlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = DC8A52CA69053B27B09F1037 /* filedlg.mm */; }; - 1A70DDEDF9E13FF4BDA390EA /* bmpbndl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */; }; - FF50EC0EC5F23DF890C6E95F /* colour.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D1F14339D1C331087650931 /* colour.cpp */; }; - 7EB83F6375BF3E73ABE56C40 /* jcarith.c in Sources */ = {isa = PBXBuildFile; fileRef = AA234ACC79743DA797601AA6 /* jcarith.c */; }; - C5C60B22CE6A3BCB868F69E9 /* pcre2_find_bracket.c in Sources */ = {isa = PBXBuildFile; fileRef = 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */; }; - EB206A0264AD3CAA9F68B8FC /* pcre2_convert.c in Sources */ = {isa = PBXBuildFile; fileRef = BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */; }; - 5F6B4F226B473AACB7AC8DF5 /* xh_slidr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */; }; + CFA91122523B31B9A07A3826 /* pngmem.c in Sources */ = {isa = PBXBuildFile; fileRef = C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */; }; 2F35A207C3993DE08E4FE0B0 /* timerunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */; }; - B640A8A74D973A8FBEF63916 /* LexConf.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 04082EC1C91334379425802D /* LexConf.cxx */; }; - 3C5E1A45A57B3169A4C073D9 /* LexVerilog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */; }; + 9FA6C4275F0D3E1A884ED561 /* pcre2_auto_possess.c in Sources */ = {isa = PBXBuildFile; fileRef = C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */; }; + AF1E3338E892336E924AF631 /* pickerbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */; }; + 6E1FD7D3DEF03748AEE3A29D /* listbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = D324650313003AAD96E12962 /* listbox.mm */; }; + E62F8E49FD5035D8BC71BB49 /* LexGAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */; }; + B97C178B47173E6AB0CE577B /* CaseConvert.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 274A156457C63EC5801029C2 /* CaseConvert.cxx */; }; + 68AC8860B0943C1FAF76D96B /* list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 552757A901E732CAA8E3F16D /* list.cpp */; }; + EC3A1C620D323B5590AABF02 /* module.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DB43FAB1E563B02ACEFF647 /* module.cpp */; }; + 2F50DBC14FE538A49823925A /* calctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 496674699F173A5385EAFF07 /* calctrlg.cpp */; }; + 61A2B54FD2E33C759CF5A5E8 /* pngrutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 358D0A3AC73F322EA732D020 /* pngrutil.c */; }; + 03035C5CE4BC3288A5A18424 /* choicdgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */; }; + 25656617A56D342AA3D1BFE2 /* ctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */; }; + A1A7B833061C35B4AABD093C /* preferencesg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */; }; + 9836B3D336963795928FE5A1 /* m_dflist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52FE1599218730CC99A3F801 /* m_dflist.cpp */; }; + 36EB5D19429D3BD1A01001D5 /* framemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26632A254717372BAA4D514D /* framemanager.cpp */; }; + DFEB8DA3D42734949CB1E1AA /* clipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 239D386E9D7D39C5A1E859C6 /* clipcmn.cpp */; }; + 1A4F9F18BBEB3515AC7C7CC6 /* LexMetapost.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */; }; + 1E2AB43075973AE59A8D89C1 /* fontdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */; }; + E49F0D43B5A63EF1A57A7112 /* fswatcherg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */; }; + F6288F388B8C33FD85E9A155 /* LexerNoExceptions.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */; }; + BFA6983551B4310DA7C8A404 /* jcdctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DBF3053414F3C448312165A /* jcdctmgr.c */; }; + 5557AA36FBCC3ED9A5F5751A /* editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D90D14874FD38079835AF0B /* editlbox.cpp */; }; + 131B879180AE3FB481F81CC7 /* fs_mem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A305CEC03B3085B159B617 /* fs_mem.cpp */; }; A336FD218BE63B19991CA513 /* ipcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C090A76B6F23E6481A27282 /* ipcbase.cpp */; }; - 0718E7524134312090541D6E /* LexPascal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */; }; - 502D7B786EAE383B9546F31F /* LexRust.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 24BD2EF635673E819B8406CB /* LexRust.cxx */; }; - AE660214E0CB375FBA508A36 /* uilocale.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1B794996B953D00AC7BC2AE /* uilocale.mm */; }; - BA57708D2D563967A0D1F003 /* LexTxt2tags.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */; }; - AA54EDC7C94730D1A31F059E /* LexCharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */; }; - 5700B7F9166A37FDAA72E9DB /* dnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E53493CB84A30AE8C1CD721 /* dnd.mm */; }; - 12B1DEF410AB34999AB210DB /* LexBatch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 853C2741D98438DA90B87D90 /* LexBatch.cxx */; }; - 02E8F1195B653D26AAA89462 /* listbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */; }; - 57AE7FCF768F3965BD39B47A /* m_span.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 727F25F832AD32D4B12D8E39 /* m_span.cpp */; }; - A1AF8FF873D6383996995ECF /* statusbr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 071FEABEA61E3B559A47A7DB /* statusbr.cpp */; }; - 3357BD0518F538E9A949F886 /* xh_tree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */; }; - A92439BAFD3A30A29DD93131 /* apptraits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A23A8BC7373D4BBD72851D /* apptraits.cpp */; }; - AAC2AC9C49F1366D8BD20F5E /* LexECL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1AD9605C9385374C87FAC9BC /* LexECL.cxx */; }; - 0F2FD12272023C869CE86008 /* filter_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */; }; - 9241AAE354C53190BF3D5BA3 /* radiobut.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99E5B6DD00273D978C241BCA /* radiobut.mm */; }; - 1FB1622D59593932B25C55BA /* LexPowerShell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */; }; - 47F4FC8717AF3A848812DFCD /* xh_radbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */; }; - 13A71672A59233D3A9B2D5E9 /* CharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B883F991159731DCB2717A21 /* CharacterSet.cxx */; }; - 86B0D280A43C308CAC14BE24 /* CaseFolder.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F52DCBC0442233738B39138E /* CaseFolder.cxx */; }; - D98FABF75BCE3AF18C91B42D /* LexHex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */; }; - 319EA32592DA3C74B86DDDFF /* wxcrt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FC98E2305230E2990471E3 /* wxcrt.cpp */; }; - 923F4797A73A3BDD87BBD1E1 /* LineMarker.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AF3DF03795153E039B8F1F87 /* LineMarker.cxx */; }; - 80665EEAE8613DF8A93A7984 /* utilscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4188821BBA833CCAA678B234 /* utilscmn.cpp */; }; - 36DB80FD5B153E9099DB6912 /* imaggif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */; }; - 01D4C5F2147F3942A7CE91AA /* icon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5DAF1F49F0F3F41A427A21D /* icon.cpp */; }; - 800CFCEDBB7938338C65EEAD /* notifmsgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B233180893DB3328AF4847DA /* notifmsgcmn.cpp */; }; - EAE02BA934B43EEE92C496C7 /* dcpsg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEA0945B20913754A54D0FD9 /* dcpsg.cpp */; }; - C2CF6B59914A3183ADE84028 /* tif_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 48F1439BF6C3361296F05A33 /* tif_error.c */; }; - D6CF7416CA6A3CFF8FDFD49B /* nativewin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9BC8BFDE41F93504B7A51D08 /* nativewin.mm */; }; - 91EA325FCE3A3A6A8D1D21A5 /* srchctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */; }; - 32988828498D32B2B3F8A982 /* bmpsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741E9B48274638CD9DD73698 /* bmpsvg.cpp */; }; - 048986FB629E313EA670CD0C /* webviewfshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */; }; - A336FD218BE63B19991CA514 /* ipcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C090A76B6F23E6481A27282 /* ipcbase.cpp */; }; - 10B5C2A72C713A678458CD9D /* pcre2_ord2utf.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */; }; - A7692B4D8658347BA16EEB83 /* jmemnobs.c in Sources */ = {isa = PBXBuildFile; fileRef = 374E341C8703367686DEDE93 /* jmemnobs.c */; }; - 296692A7A3783E3A83D005C6 /* brush.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 302A13BC64C238A297F4399F /* brush.cpp */; }; - 9058997222493A7A859A4D4C /* richtextxml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C69E48C06BD23C178F650E42 /* richtextxml.cpp */; }; - 0C9A379D97B133FA831175A7 /* printdlg_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */; }; - 17F0494F87533196904F5313 /* xh_toolbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */; }; - 4301AFBA0A193A7EB392EB92 /* LexMake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3D5F00FC91343C35AF99F708 /* LexMake.cxx */; }; - 4442EA28B0B3373B9A2D0862 /* collheaderctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */; }; - 26E4813A97DE323E88119163 /* xh_choicbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */; }; - 4C31B77B28343F20B4973366 /* LexJulia.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */; }; - 0EB6AB38A68D3845AC384A23 /* xh_text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */; }; - 7A7439BE66AA3771B4A89048 /* regex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB46BC22F6B23909A938C561 /* regex.cpp */; }; - 11818B68C5263EB68D708845 /* jdtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 4549845C0751356A907C23E0 /* jdtrans.c */; }; - 95826E8528CC32D8934C36EC /* xh_frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */; }; + 45FE206BBAD13DDCA1EA41CF /* treebase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BA6ADD758693BD180D3275B /* treebase.cpp */; }; + E9EDB5C92D5D3B529E8D73B0 /* valgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7440859617F3B47AF4D3817 /* valgen.cpp */; }; + 86003C8EB906304F9025F788 /* jcinit.c in Sources */ = {isa = PBXBuildFile; fileRef = AA6C6739C3BD3EFA9CF71102 /* jcinit.c */; }; + 7569F0BC3C603EB19168088F /* collpaneg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84758329F2163F00A9C005DF /* collpaneg.cpp */; }; AC6AC589EFB233C7B65A3224 /* overlaycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 303ACF199BE431BD891C9301 /* overlaycmn.cpp */; }; - 3DA70DE666D838A59642A4E6 /* LexAsciidoc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */; }; - 8DE45CEAF2DD3C22AA019F74 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CF73F49AEC238C99CE89845 /* deflate.c */; }; - 14DEBD7C01FC358B917FDAF2 /* aboutdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 207F0F88390138B6B41183EB /* aboutdlg.mm */; }; - D088E7DDE38C31DC9C9B3417 /* dcclient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17772732159304AA7312D72 /* dcclient.cpp */; }; - A3586433C4B1398FB1C361D6 /* m_image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 548906E4E72935E48CE4AF87 /* m_image.cpp */; }; - 652CFDD9A1C1366E99B5D6BC /* socketiohandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */; }; - AEB9099819B33F4A8AAB9F54 /* radiocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */; }; - 049052C49B0B3810BE0179C9 /* dataview.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB6963739198360DB3DBCC6C /* dataview.mm */; }; - 7B4DA2F5F25B3E188CBAFE38 /* hyperlnkcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */; }; - B0E94A59C83637C09FAAE71C /* app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 757B31FCCA1F381C95B30DF8 /* app.cpp */; }; - 62F1DC80D631335B892610A8 /* splitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C125FA3837C631A9BE0ED5E7 /* splitter.cpp */; }; + 2047544E505C3BA38F0144E6 /* pcre2_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = B60497805D37375EBFCF3D98 /* pcre2_tables.c */; }; + 0742292656623EC481B34369 /* paper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87D973CA8D673267BD0844D3 /* paper.cpp */; }; + CEC6430AEB6E3200BFA75D07 /* jfdctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */; }; + 1D726139C977341A97D0C931 /* datetimefmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 864438709B363773B8C3382D /* datetimefmt.cpp */; }; + E7F35B834A163C67B65176C6 /* tif_dirwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */; }; + 20BEEFFA08F3396791596870 /* dlunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA2D9F325F833C408657E7B7 /* dlunix.cpp */; }; + 55D893FDD00633FEA82ABD81 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */; }; 6AC347D2DCC730149A0A83D8 /* button_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF4F4F5211933057824B5621 /* button_osx.cpp */; }; - AE5286C71D1130EAA368A1C4 /* radiobtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 724927B0045F3CC0884878BB /* radiobtncmn.cpp */; }; - 90BC965B1A1F35A3B2C9D1C9 /* Decoration.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BF1C44D726E63B18A98006EC /* Decoration.cxx */; }; - E3A4615870B139D29FE727C1 /* menucmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F175D6E8E5723FC797701275 /* menucmn.cpp */; }; - 23965E313EDC3BBE9B2FA1C6 /* imagpng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24396D584D053948A3FF0DCD /* imagpng.cpp */; }; - 664A54F914443110B7BB6928 /* tglbtn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */; }; - A874AF0B203D3DC99C27469A /* LexNimrod.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */; }; - 0B792C3F31713850818EEFEA /* LexDMAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AC62806DE67F33E18C386D4F /* LexDMAP.cxx */; }; - 64F11C549E3035DF85691060 /* tif_ojpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */; }; - B8A98F209934399DA45C2386 /* fs_data.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */; }; + 23E9AF567E873B948EFEA180 /* gauge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 98A7F0605AAC3D28A8C9F253 /* gauge.mm */; }; + CA85901B9E2538CFB7E44216 /* process.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B35DA585CFDD32468868E892 /* process.cpp */; }; + 60296753A32B39EB8BD0CB44 /* pcre2_study.c in Sources */ = {isa = PBXBuildFile; fileRef = 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */; }; + 335DD610974A33D4B6581E2A /* colourdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */; }; + CFDBB80A4C9A3BA092273936 /* animatecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */; }; + C3A63D7091913CD39094AE0B /* btncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A7A3B499503ECABC6A838F /* btncmn.cpp */; }; + 9A83D365AD1F37FA9C7030C2 /* matrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF330EAACFA53877BE289896 /* matrix.cpp */; }; + C3AC94EA13C1352790BF5FF7 /* listctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9016355F66D3125919E017D /* listctrl.cpp */; }; + 283C3ABE42433244983C27C1 /* stattext_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CF5C09D9A1230EEB42713E1 /* stattext_osx.cpp */; }; + FECC98B53C0F3106AB04E69E /* tif_fax3.c in Sources */ = {isa = PBXBuildFile; fileRef = 30FD1048328234E59D319863 /* tif_fax3.c */; }; + 697FC496816F33568E1FB5A5 /* LexTCMD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1CABAEA3B48333CB88B40F08 /* LexTCMD.cxx */; }; + F910C74E48823E0BA7F7885D /* graphicc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BACAA6CE4A0934459F26B27C /* graphicc.cpp */; }; + 048986FB629E313EA670CD0C /* webviewfshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */; }; + C2CF6B59914A3183ADE84028 /* tif_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 48F1439BF6C3361296F05A33 /* tif_error.c */; }; + E5D698D2606A304DA743AF92 /* grideditors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66426B63AA3E3A279936C034 /* grideditors.cpp */; }; + 335DD610974A33D4B6581E2B /* colourdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */; }; + 427E6AF88CF73D799206E37D /* checkboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FC2F076657431458896115A /* checkboxcmn.cpp */; }; + 1569BB4728693B6285623A23 /* pngerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A0650754DC2358CA5933B28 /* pngerror.c */; }; + E7AF3BF2B3473AD9BE66D1A1 /* xh_clrpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */; }; + 65AD3B31319C35F1AC9EC625 /* anybutton.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4020D790AE7363CB29F1C2F /* anybutton.mm */; }; + C3AC94EA13C1352790BF5FF8 /* listctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9016355F66D3125919E017D /* listctrl.cpp */; }; + 7B372FEA276438C186F7E340 /* RunStyles.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */; }; + D54D3CA9E73336A08DB20705 /* LexBaan.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */; }; + E0E40333B61C33B58787078E /* LexMarkdown.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */; }; 205520440CD13C0AB9E89159 /* anidecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE959EC7BFDD3A628E856404 /* anidecod.cpp */; }; - 784F7C50882F320FA76537B5 /* LexAU3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C76222F466E831F896A89269 /* LexAU3.cxx */; }; - 68AC8860B0943C1FAF76D96B /* list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 552757A901E732CAA8E3F16D /* list.cpp */; }; - A3321FE2A87D3BD69E0BB009 /* notebook_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5248A45AB113341EAC361910 /* notebook_osx.cpp */; }; - EB52C6A915943813932944FE /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04B /* control.cpp */; }; - 849B89D1F6AB3DDEAA2D53AD /* xh_styledtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */; }; - DFEB8DA3D42734949CB1E1AA /* clipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 239D386E9D7D39C5A1E859C6 /* clipcmn.cpp */; }; - FE2DBCCC1D0B36A3BE4493C0 /* fs_arc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88F2BA2F0598342186A484B5 /* fs_arc.cpp */; }; - D95C5F467D37339AB8DF2354 /* tif_color.c in Sources */ = {isa = PBXBuildFile; fileRef = 149D299A0EDB3D998118EC93 /* tif_color.c */; }; - 62F1DC80D631335B892610A9 /* splitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C125FA3837C631A9BE0ED5E7 /* splitter.cpp */; }; - A39B0D7EB43137F7BA50A35C /* xh_simplebook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */; }; - A36B5107860E32659194073F /* LexPython.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CC2713393AB132AA8E337AE1 /* LexPython.cxx */; }; - 2DBF5F96CCC63F7481C26A43 /* webview_webkit.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FEECFD764E037288CE94FEB /* webview_webkit.mm */; }; - 3D3EA1BAAD1833B1B48E9C86 /* xh_stbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */; }; - 9E0B67E34B683412978BA82D /* filtall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */; }; - 3DE2CD678CEB39C2B1E09ACA /* power.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60DFD5962DE3379F801AF78F /* power.mm */; }; - 85F9828B80B03178A274BD17 /* selstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ED2105A5A033E3384EBC4ED /* selstore.cpp */; }; - 5116CE330E333724A66982E3 /* rearrangectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972BC9B2B0D438EFB12BCE1E /* rearrangectrl.cpp */; }; - 060E095718B03EF98C754799 /* treelist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5190E3E110443FD29F2474FC /* treelist.cpp */; }; - 16A382A265DE32FABC318F6F /* fontdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB170BF78EFE39D692E11985 /* fontdlgg.cpp */; }; - DE26572475EE336B8EEA5D92 /* jerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 108517BCD39230E7A89BC943 /* jerror.c */; }; - 5A459FC1180130C5B705AEDA /* xh_ribbon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */; }; - 0723C4E8B52C39FDBC2158B6 /* dataview_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E53DC332DA23DF4B9BFCDE3 /* dataview_osx.cpp */; }; - DEB35F871F8E3B90AD207AEE /* printps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF76670146413EEFA005206A /* printps.cpp */; }; - D772334837693C9D88069D98 /* tif_webp.c in Sources */ = {isa = PBXBuildFile; fileRef = 3716DA7B0C79360CBA26A71E /* tif_webp.c */; }; - 444D3B969B4336E8AD5CCFBF /* LexStata.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B61D36546E97371FAC5D4565 /* LexStata.cxx */; }; - CB46C7E531903700ADFB11C8 /* tif_jbig.c in Sources */ = {isa = PBXBuildFile; fileRef = F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */; }; - F1E4D7CA634E33808AE3B522 /* fontenumcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 373242CD08F330208A7CF438 /* fontenumcmn.cpp */; }; - B1775EF7C72233408044034B /* radiobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 773D91F8280434519BD167EA /* radiobox_osx.cpp */; }; - C2B07E2ECDDC3833BDC9B28C /* arcall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75D0C937F2A03ADA8581A2BB /* arcall.cpp */; }; - 675B4E6CBA8632E89B4AC26D /* textctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4E16323A43E36DC8024EDF1 /* textctrl.mm */; }; - C6DF6F29407B34F29ED1B66D /* jcmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E3043D7BE9C33B59E900CCE /* jcmaster.c */; }; - 2047544E505C3BA38F0144E6 /* pcre2_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = B60497805D37375EBFCF3D98 /* pcre2_tables.c */; }; - 159E4248CB1333AD841D9F03 /* LexYAML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9CC7C6FFD67233788EEDFC5E /* LexYAML.cxx */; }; - 02E8F1195B653D26AAA89463 /* listbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */; }; - 6E68759BC2E63CA59C12FDC0 /* popupcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D922063B2F2536629EEEAAF0 /* popupcmn.cpp */; }; 7625D908B2CD34C78243BA8F /* settcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABE3DC4AA47D39ACA83F27C0 /* settcmn.cpp */; }; - D7F14BDFFB7F369B842AFC13 /* pcre2_config.c in Sources */ = {isa = PBXBuildFile; fileRef = FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */; }; - 55D893FDD00633FEA82ABD81 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */; }; - DD1B139EA5AD3F6DB92C0FA9 /* EditModel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E685D81FB9FF3081B6C5C321 /* EditModel.cxx */; }; - 33BA7D6B9DC3378B820DEB87 /* notebook.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E8036758CEC3296B555E4DF /* notebook.mm */; }; - 028257C52CAE3038AA862C35 /* stdstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE16011AD6323AAC8616F973 /* stdstream.cpp */; }; - 0E92CEF677AA32C9A8CDA0A7 /* checkbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */; }; - 8B9C9FCB954F3596A4CED9A5 /* jdapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 86884BC843F6337EABF744BB /* jdapimin.c */; }; - 795613831EC8332A83FF26E7 /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7E99B35A98D30818120B002 /* string.cpp */; }; - BBAABF3C693E37D3B0FF2502 /* colrdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */; }; - 6463C9BE78C0394CB7B451FA /* pcre2_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = BDADEB1DA6433E52972C8934 /* pcre2_compile.c */; }; - 901F659891613419B8643952 /* calctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */; }; - 14C024EB327435A2A571DA2C /* LexKix.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B303230368143F37B2409DE6 /* LexKix.cxx */; }; - 2A79B68D20FE3C9B98A15534 /* menu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D799486AD7F336BB1F33DDC /* menu.mm */; }; - 37715483D08335B790FFE058 /* filectrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */; }; - FD38B04026F930CC80BC9480 /* m_pre.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61658C3EABB4341AA38C691E /* m_pre.cpp */; }; - 88E1AE56FD393C8BA5CF8545 /* stringops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F1E724EA70AB35DDB130F84F /* stringops.cpp */; }; - 07412469921A3E488A2F9BA6 /* checklst_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */; }; - 9678C2B19D293818AA8E9E0D /* LexSpice.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4592464D4868329897F3864D /* LexSpice.cxx */; }; - 27759C2FBB0E35FDA847B2B5 /* LexForth.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B181F564935730E89AB00D92 /* LexForth.cxx */; }; - E0E4885BF4AF34B48EB08B91 /* volume.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6506A965F677374491359FB8 /* volume.mm */; }; - A191AA29BDF83BB090A9DF4F /* LexCharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */; }; - 2D4D105CA9BE3FA6995A5FFF /* tif_dumpmode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */; }; - B30D10F6257631B0A1926F89 /* statbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 926BDF9C386C3A9A8C24D453 /* statbox.mm */; }; - AF1875145B2537298E4A28D8 /* pcre2_xclass.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */; }; - 697FC496816F33568E1FB5A5 /* LexTCMD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1CABAEA3B48333CB88B40F08 /* LexTCMD.cxx */; }; - A39B0D7EB43137F7BA50A35D /* xh_simplebook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */; }; - 652CFDD9A1C1366E99B5D6BD /* socketiohandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */; }; - 47EBBB18BDB539C2A948C711 /* chm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E24C6F2A04E30EB95598305 /* chm.cpp */; }; - 0E23F212CBDD33848DEBCA6E /* webview_chromium.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBA9036479943A4990CEB3AC /* webview_chromium.mm */; }; - 7EF89F935314301381802FAB /* filectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2334539088B036BEAB230D1C /* filectrlg.cpp */; }; - CBBD7B32DB7B3E24AE745D78 /* epolldispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */; }; - A92439BAFD3A30A29DD93132 /* apptraits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A23A8BC7373D4BBD72851D /* apptraits.cpp */; }; - 95AD56D602CF3C5085602AF9 /* geometry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC0A61629E635FAB4E09505 /* geometry.cpp */; }; - E882402BEE0330A080A6516F /* strconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FEB8204E530329FA085E5B8 /* strconv.cpp */; }; - EC3D181D65F33E09A675FFF2 /* addremovectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 964578C24B9F390AAD08576E /* addremovectrl.cpp */; }; - 7DEC57D6CE8232A09EF74219 /* PropSetSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */; }; - 551BF168445E3D7BB54D0174 /* LexPS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = EDB48813110636DBA045BF3A /* LexPS.cxx */; }; - F22C401903993639AE05A295 /* xh_stbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 147800BBCB80346798B35D75 /* xh_stbox.cpp */; }; - 62757F24C4EE3B84B6AE3F14 /* textdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D529E2668C23D94A7706C8A /* textdlgg.cpp */; }; - 135DFCE48FC03D8294D01A89 /* xmlrsall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */; }; - E46BEC5C8D643BD099AF1D57 /* LexSTTXT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 50859F0155753FDCB8C5222A /* LexSTTXT.cxx */; }; - DF8124E5E17D386A84CEEA27 /* LexLisp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 40586C8986443431A64EB066 /* LexLisp.cxx */; }; - 65FCDBFFF3F138A3ABBAA650 /* xh_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */; }; - 8B9C9FCB954F3596A4CED9A6 /* jdapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 86884BC843F6337EABF744BB /* jdapimin.c */; }; - E0E4885BF4AF34B48EB08B92 /* volume.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6506A965F677374491359FB8 /* volume.mm */; }; - E9EDB5C92D5D3B529E8D73B0 /* valgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7440859617F3B47AF4D3817 /* valgen.cpp */; }; - AF1875145B2537298E4A28D9 /* pcre2_xclass.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */; }; - F70156C3E68B38FCB72FE253 /* dirdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */; }; - 682403FBBD4E3D5E88159501 /* CellBuffer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */; }; - A2473402D8B83628B1F66749 /* wxprintf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 607EF0043E723B7B9BE101EA /* wxprintf.cpp */; }; - 6E68759BC2E63CA59C12FDC1 /* popupcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D922063B2F2536629EEEAAF0 /* popupcmn.cpp */; }; - 633DD2E870263F42A8DBF9BF /* markuptext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */; }; - E5D698D2606A304DA743AF92 /* grideditors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66426B63AA3E3A279936C034 /* grideditors.cpp */; }; - 16A382A265DE32FABC318F70 /* fontdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB170BF78EFE39D692E11985 /* fontdlgg.cpp */; }; - 9110ACFC3CFB3C7994E907B0 /* imagiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A745D1821A32D591D76650 /* imagiff.cpp */; }; - 5EE94793DFCB3BA281A4864E /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = FDB0E2D0966C3E408C4A2D3D /* infback.c */; }; - D6B73239BF0E32288161679C /* platinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97FFB03FF6793506B246BAC6 /* platinfo.cpp */; }; - AF1E3338E892336E924AF631 /* pickerbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */; }; - 0C2073A011EA36B8AD906DA3 /* LexCIL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7F18C26877336DBE638D75 /* LexCIL.cxx */; }; - 2FB16C6469433F1C91749128 /* renderer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92CCFD77BFB537EAA48E8BD3 /* renderer.mm */; }; - 57B41B6BACFB3906ACD1BFAF /* pcre2_jit_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */; }; - 8292D346BFC33D6E8D3CDDBF /* xh_sttxt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */; }; - E104017EE1A4357DAF84E1E6 /* auibook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A298576700C33F018616E7BD /* auibook.cpp */; }; - A53B8C3ED0D33A1D9AA8219A /* toolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3BF8C9FF2D5314591329D0D /* toolbar.mm */; }; - 00E2F82590B33BDCA1F6D0C4 /* xh_htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */; }; - 1DF3A4F85FCB3BA79A552F3D /* menuitem_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */; }; - 539B586AEAD630A79FC12ECF /* sstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46EC1508C063C8395CE7A95 /* sstream.cpp */; }; - B1E30CF6CFA932F5A3DBA94F /* docview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB634FD597793A74B3B3AA7F /* docview.cpp */; }; - 49C873EE448C3CD9A32012CD /* spinctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */; }; - D9496139621533328AE727B6 /* pngget.c in Sources */ = {isa = PBXBuildFile; fileRef = 91300EB871CC39ECBC430D48 /* pngget.c */; }; - F85D632964383F29BC3B30B6 /* tif_next.c in Sources */ = {isa = PBXBuildFile; fileRef = DFDC805DD3063C389F93642D /* tif_next.c */; }; - 36EB5D19429D3BD1A01001D5 /* framemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26632A254717372BAA4D514D /* framemanager.cpp */; }; - 0E60E17BA4B23347A4F20160 /* gdicmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998D611109EC33A9A6A11C5A /* gdicmn.cpp */; }; - 86BE5213D3F131D8A6862679 /* hid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 160EB9744CB63A0B81DC651F /* hid.cpp */; }; - D088E7DDE38C31DC9C9B3418 /* dcclient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17772732159304AA7312D72 /* dcclient.cpp */; }; - 7C5552FA058034238F485900 /* dbgrptg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 182C8AD4F822375495795B43 /* dbgrptg.cpp */; }; - 6E1FD7D3DEF03748AEE3A29D /* listbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = D324650313003AAD96E12962 /* listbox.mm */; }; - A1A7B833061C35B4AABD093C /* preferencesg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */; }; - 99E7A46106C03484BA70D29E /* tif_unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D2F8259CC99380CB8217DEF /* tif_unix.c */; }; - 2D60F289103837EA8925E3F1 /* dcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1EE17722EA937E88A7F0C01 /* dcbase.cpp */; }; - 46F341B46F80376B962759F5 /* animateg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 580AFC66F3003582B43043B1 /* animateg.cpp */; }; - 4657479AF35533AEB7876676 /* helpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB30516233A39BE809405AA /* helpbase.cpp */; }; - 0C2073A011EA36B8AD906DA4 /* LexCIL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7F18C26877336DBE638D75 /* LexCIL.cxx */; }; - 603DF49D176737D383CE4F01 /* choice.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F838F853CB03CF7932C08C3 /* choice.mm */; }; - 6AA0EE765330326380989FD1 /* stopwatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */; }; - 675B4E6CBA8632E89B4AC26E /* textctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4E16323A43E36DC8024EDF1 /* textctrl.mm */; }; - 36EB5D19429D3BD1A01001D6 /* framemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26632A254717372BAA4D514D /* framemanager.cpp */; }; - 6AA0EE765330326380989FD2 /* stopwatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */; }; + 46CE8B53D2663927AAE5DF9D /* xh_treebk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */; }; + D18E2985C48733B2B7B3D442 /* evtloopunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */; }; + 0095084719983B878378CA28 /* pngwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 69A6CAF721E53E83B4820DE6 /* pngwrite.c */; }; + 98DF13E96160304EBB905E73 /* jcmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = 810EB7316DF3344197C78EC0 /* jcmainct.c */; }; + DAAFBED07FF8365B96D20B99 /* unichar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */; }; + E39021D3CDCD33BAA646B006 /* sckaddr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8238DA30FF3FB984511250 /* sckaddr.cpp */; }; + 7C20B79175D33852A2E9DE83 /* LexRuby.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8734C52C7559310784396455 /* LexRuby.cxx */; }; EC43AFB3670A3D459D9B388D /* LexMPT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FE3B47058A723243A285594D /* LexMPT.cxx */; }; - 5E80C103F0853788A2B43E5D /* LexX12.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 17A8A93EF3C03546BE19F43B /* LexX12.cxx */; }; - F22C401903993639AE05A296 /* xh_stbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 147800BBCB80346798B35D75 /* xh_stbox.cpp */; }; - 6A081BF19747385CB4C1877F /* radiobut_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */; }; - 0164A65CDB7A334A8E9AA4BF /* dynload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */; }; - 779D3480141B3683A6D132BE /* tif_lzw.c in Sources */ = {isa = PBXBuildFile; fileRef = 346C68F0CCD23823B78267F0 /* tif_lzw.c */; }; - 65AD3B31319C35F1AC9EC625 /* anybutton.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4020D790AE7363CB29F1C2F /* anybutton.mm */; }; - 30493B486DFF35AF80D12C49 /* stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */; }; - 4CFB7E6E5BD53E2BB39BEF63 /* m_style.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EB95BCFA255323183A996C9 /* m_style.cpp */; }; - 5557AA36FBCC3ED9A5F5751A /* editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D90D14874FD38079835AF0B /* editlbox.cpp */; }; - 3B8A54D5E5A53607A6F7979A /* arrstr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A57CF60203F53459A03951A9 /* arrstr.cpp */; }; - 692FCCABFB963696AFC1E122 /* gdiobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */; }; - B4425B59CC27389CA9FF81D1 /* datectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE856D950B8C369EB0FE13BA /* datectlg.cpp */; }; - 7DC4A542372437ECA0790F87 /* art_msw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B540E18F9C91381CA175BABB /* art_msw.cpp */; }; - 2C95DFA8EE463487956B4EB4 /* infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */; }; - 15D65A523EB23EC385C05E0B /* jquant1.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */; }; - 66FD099CE5A338C18329FC36 /* LexAbaqus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CD72950967F33809931D4968 /* LexAbaqus.cxx */; }; - AE660214E0CB375FBA508A37 /* uilocale.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1B794996B953D00AC7BC2AE /* uilocale.mm */; }; - 7625D908B2CD34C78243BA90 /* settcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABE3DC4AA47D39ACA83F27C0 /* settcmn.cpp */; }; - 64DD406C453D39FEBBE66ED1 /* tif_pixarlog.c in Sources */ = {isa = PBXBuildFile; fileRef = 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */; }; - 0F8C79010EF0316AA1B7392E /* LexTACL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E5C91072D533919A78D8ED2 /* LexTACL.cxx */; }; - 215958201947310B88BBEDB3 /* statbmp.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD6B26B5A6A733A89EF5AB9C /* statbmp.mm */; }; - F5D0BCF1A6C839E5829199E2 /* sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */; }; - F84D59648206349A9768157C /* msgdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */; }; - 0F2FD12272023C869CE86009 /* filter_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */; }; A3C4D47A84E8362295867525 /* LexPOV.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8EECA8EB93BF3C7A9CC827AD /* LexPOV.cxx */; }; - 0B4AF44DC0C439AD83CDC37E /* Indicator.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4FDE5A962FA234FA83A605AD /* Indicator.cxx */; }; - F3CB42BB6D983675862C01F3 /* xh_toolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */; }; - F0B3F484C38C3BA0B9927CD9 /* docmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */; }; - 3E99016BDE043A08B4D6B3CE /* htmprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 194ADD28300E329E80F7892E /* htmprint.cpp */; }; - D6B2A64A78AF3F2983B441A8 /* ownerdrwcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */; }; + B640A8A74D973A8FBEF63916 /* LexConf.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 04082EC1C91334379425802D /* LexConf.cxx */; }; + AEB9099819B33F4A8AAB9F54 /* radiocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */; }; + 21F74D4D4D84375AB155FD5B /* stattext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95186FEF3DEF39D8B1157BD5 /* stattext.mm */; }; + 88E56F89A0DA3AD386F05FD2 /* pcre2_pattern_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */; }; + DD1B139EA5AD3F6DB92C0FA8 /* EditModel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E685D81FB9FF3081B6C5C321 /* EditModel.cxx */; }; + 55D893FDD00633FEA82ABD82 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */; }; + A465A43B756630F1944B5A56 /* vscroll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1629FA905F903324AA5BE72C /* vscroll.cpp */; }; + 070797A894A03196B7BEC661 /* xh_bookctrlbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */; }; + 4666CDC48BA9301EA283BFFF /* choice_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */; }; + D948CC99521633338B24E2F5 /* LexHollywood.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */; }; + 1A4F9F18BBEB3515AC7C7CC7 /* LexMetapost.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */; }; + 5116CE330E333724A66982E3 /* rearrangectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972BC9B2B0D438EFB12BCE1E /* rearrangectrl.cpp */; }; + BE99A85EE76236CC8C719A64 /* xh_gauge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */; }; + 4B88254FF9963833A276A64C /* snglinst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */; }; E1F7C51F411B3AF39476E488 /* fdrepdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F094B0B07DF33BCA6077BC0 /* fdrepdlg.cpp */; }; - C2E37E798F743A4199C8658E /* fddlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */; }; - 4E2737AC738431EB9898B8B6 /* gzwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */; }; - A36B5107860E326591940740 /* LexPython.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CC2713393AB132AA8E337AE1 /* LexPython.cxx */; }; - 09A792A5129E3FE1BF077641 /* tif_jpeg_12.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */; }; - 65E8A5F333D7336C816F0D0C /* variant.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31F4B9B03D52339B8F82C114 /* variant.cpp */; }; - 0C3F48DBD05E3566A4CA6D44 /* LexAsm.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A65399C8A6D636139E362119 /* LexAsm.cxx */; }; - 444D3B969B4336E8AD5CCFC0 /* LexStata.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B61D36546E97371FAC5D4565 /* LexStata.cxx */; }; - F5806029B1BA3924A8FDDBC1 /* busyinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F94CF171F4532B89FECF475 /* busyinfo.cpp */; }; - 02BB539E2AD63C078DA776B0 /* uiaction_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */; }; - 0C7E2D5C22A232368F862A60 /* longlong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D7AF345E563587941BD868 /* longlong.cpp */; }; - 131B879180AE3FB481F81CC8 /* fs_mem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A305CEC03B3085B159B617 /* fs_mem.cpp */; }; - AD4A533C4E1633598A6D5C6F /* textentrycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F63BF9430CE371DA04AC900 /* textentrycmn.cpp */; }; - AAC2CB4D851230008AE4ABA1 /* dcscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */; }; - FEB073547F3F3AC19D31F698 /* tif_tile.c in Sources */ = {isa = PBXBuildFile; fileRef = BD88495AF72531A28D2201D0 /* tif_tile.c */; }; + 89200B144075388BA69A07E2 /* xh_timectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25A81E9028793C109D868068 /* xh_timectrl.cpp */; }; + 00E12455C98032E18378EE5E /* pcre2_newline.c in Sources */ = {isa = PBXBuildFile; fileRef = A208BFC0C8C43847A9620ADA /* pcre2_newline.c */; }; + 9FBC642677C63D01AA2511BC /* evtloop_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */; }; + 3DE2CD678CEB39C2B1E09ACA /* power.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60DFD5962DE3379F801AF78F /* power.mm */; }; + 8B9C9FCB954F3596A4CED9A5 /* jdapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 86884BC843F6337EABF744BB /* jdapimin.c */; }; + 2C53221A318E37529E6460EB /* tif_fax3sm.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */; }; 32FECED7A7633C4D8C1BFBB3 /* toolbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24DF23D67E693D999B875101 /* toolbkg.cpp */; }; - 221DC4F6678A3EC5ACDDEA4F /* statbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */; }; - 4156FDB73D0A397A870E4303 /* overlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD8031E28A3C9CB7C45784 /* overlay.mm */; }; - D5C5DD83882B3227A1CCFE0E /* LexSorcus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */; }; - 8AB7191F7CB838FC8337C48D /* xh_statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FADE850169F7347F83FE1499 /* xh_statbar.cpp */; }; - CFA91122523B31B9A07A3826 /* pngmem.c in Sources */ = {isa = PBXBuildFile; fileRef = C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */; }; - 1E4832B42B95308299B767B9 /* jdmerge.c in Sources */ = {isa = PBXBuildFile; fileRef = 0890779C662C35889A8C6C2E /* jdmerge.c */; }; - 5B5B8DF915D438AA9FCEB39E /* imagall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FFDFB4D208F37569AC548B0 /* imagall.cpp */; }; - 834F2ADD0520313FBAC4F927 /* LexCsound.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */; }; - B6891F848CA0325EAB6D1373 /* textentry_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777385D10CCC350C90F02824 /* textentry_osx.cpp */; }; - 4B88254FF9963833A276A64C /* snglinst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */; }; - E80BEED62EBF34F09B3F401F /* LexMagik.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 45860601270D318D93BEE1F3 /* LexMagik.cxx */; }; - 1AF2B2346C9639DAA4D15F30 /* numdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */; }; - 42260A6F1853361083803B0C /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CB467F9898C3952A68D988B /* zutil.c */; }; - F89405757B063F80B111F469 /* datetime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0EBCDDF248638B58B01D9CC /* datetime.cpp */; }; + 5C44446AB150378696CD6B3C /* bmpcboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */; }; + 37715483D08335B790FFE058 /* filectrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */; }; + 6167245C417A32179EC37D2D /* textfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0903EE9B3793303285FF96E3 /* textfile.cpp */; }; + C05BDB0B5F5A33A9A57FF012 /* m_links.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 080597FC0436378E96EDA94B /* m_links.cpp */; }; + 268DDC88C99A3A64AB8B2FFA /* LexCaml.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B3B8AD0120F3EA6BF5B0AE0 /* LexCaml.cxx */; }; + 60296753A32B39EB8BD0CB45 /* pcre2_study.c in Sources */ = {isa = PBXBuildFile; fileRef = 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */; }; + ACD644CFA85A3B70A3E3B118 /* jcparam.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F41EDEB298538CC86FF6DC1 /* jcparam.c */; }; + 14C024EB327435A2A571DA2C /* LexKix.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B303230368143F37B2409DE6 /* LexKix.cxx */; }; + C2CF6B59914A3183ADE84029 /* tif_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 48F1439BF6C3361296F05A33 /* tif_error.c */; }; + B01C4EF49CF9390DA93A3502 /* jidctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C131F7BF8A83960ACB26242 /* jidctflt.c */; }; + DFEB8DA3D42734949CB1E1AB /* clipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 239D386E9D7D39C5A1E859C6 /* clipcmn.cpp */; }; + 9241AAE354C53190BF3D5BA3 /* radiobut.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99E5B6DD00273D978C241BCA /* radiobut.mm */; }; + E53AFF04877D34C386D77380 /* wfstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C37866F41B0C31E295AA7FA6 /* wfstream.cpp */; }; + 49260580A7F23B569A827D3F /* filefn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58421C141C9E31C6A7A3C183 /* filefn.cpp */; }; + 4301AFBA0A193A7EB392EB92 /* LexMake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3D5F00FC91343C35AF99F708 /* LexMake.cxx */; }; + C2DEE063B5E032C1BD2B5026 /* xmlparse.c in Sources */ = {isa = PBXBuildFile; fileRef = A92B6033D8233DB1821F193B /* xmlparse.c */; }; + 87092C0C817D343DAB77E23E /* xh_scwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */; }; + D6B2A64A78AF3F2983B441A8 /* ownerdrwcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */; }; + BF9B151DC0543E37878F8B9A /* stattextg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DE635F30F3935099AF1486C /* stattextg.cpp */; }; + 51437DC2AD7B3BEB9A53CE1A /* cmdline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE1C531185131A89EFF7FAF /* cmdline.cpp */; }; + 2315C8692C443ED1AE431728 /* tif_extension.c in Sources */ = {isa = PBXBuildFile; fileRef = AF7CE00168AB33C994374ABA /* tif_extension.c */; }; + CA5BD8ABDBA13641BBE7CD66 /* jccoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = E89AC104BF4F33A083F8B382 /* jccoefct.c */; }; + CB2E99E8FB7D3269A333A55E /* window_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26D7C4995D7A35A1854B533F /* window_osx.cpp */; }; + 96B507455762391688B5E500 /* xh_listc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */; }; + 2FE10EA678C73523836FCC1C /* richtooltipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */; }; + 7EB83F6375BF3E73ABE56C40 /* jcarith.c in Sources */ = {isa = PBXBuildFile; fileRef = AA234ACC79743DA797601AA6 /* jcarith.c */; }; + 371809DA4AD1382F8B532878 /* fontenum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36E1DBA275AD325DB759C180 /* fontenum.cpp */; }; + 1937FBA0A0DD32A8A743CFE1 /* valtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8701E1CF2B352B945C17E5 /* valtext.cpp */; }; 67A0583ADD8C35B8B9BA3D12 /* checkbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 81708CFA21A03013ACB8DDD7 /* checkbox.mm */; }; - F0B3F484C38C3BA0B9927CDA /* docmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */; }; - 793F542F20AB31F6AF736795 /* tif_open.c in Sources */ = {isa = PBXBuildFile; fileRef = 1731A6096BFC3A468AB4755A /* tif_open.c */; }; - D5C5DD83882B3227A1CCFE0F /* LexSorcus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */; }; - F6B85CD918E93923BE631B95 /* fs_filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */; }; - 9A63148F193E33B5964DD029 /* uilocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */; }; - DA71FBB9EFB2350ABB3CEC80 /* stdpaths.mm in Sources */ = {isa = PBXBuildFile; fileRef = 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */; }; - 7E6C627A325F32FFB2EF9B9E /* caret.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A82EDCFFBAC30098B238957 /* caret.cpp */; }; - BA57708D2D563967A0D1F004 /* LexTxt2tags.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */; }; - 4F99EB97F65330C28EB4D077 /* datectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95B4B2890C3A372DAB8DC7BA /* datectrl_osx.cpp */; }; - 2B13BFC894C63373B7ACFA3D /* xh_hyperlink.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */; }; - FD3CC5F0AA41384B9388A1E0 /* htmlfilt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C6C4F5468743265A02D656C /* htmlfilt.cpp */; }; - 77BC918AF05C30E8A0BD27F8 /* tipdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */; }; - D8ADDD24BEAC3D94B3388D3F /* LexCOBOL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */; }; - D088E7DDE38C31DC9C9B3419 /* dcclient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17772732159304AA7312D72 /* dcclient.cpp */; }; - B839235BED6F3609BDB732B8 /* dndcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */; }; - A191AA29BDF83BB090A9DF50 /* LexCharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */; }; - D5A25AC579F436509805335A /* appbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95A156A823B536DE8476E4F9 /* appbase.cpp */; }; - 8AA341CCFB8E3F6AB3523595 /* splash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F8836E29C5A370E80CE070E /* splash.cpp */; }; - CA4DCD57060B38CC8B2283D7 /* filtfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */; }; - B4425B59CC27389CA9FF81D2 /* datectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE856D950B8C369EB0FE13BA /* datectlg.cpp */; }; - 570FA90F526E3F25A8E8FCF2 /* tif_read.c in Sources */ = {isa = PBXBuildFile; fileRef = 64B25B87203E3464BCDD277D /* tif_read.c */; }; - 6BF19C7CA9E93D989C210FE3 /* dseldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1197B997B1D139C5AE4D198A /* dseldlg.cpp */; }; - 522E6CF2A62F34259BCE2DE2 /* tif_flush.c in Sources */ = {isa = PBXBuildFile; fileRef = 305614D19CF23CB2B14A5B2E /* tif_flush.c */; }; - 0D79F1B4EF44393AA324213F /* LexPLM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */; }; - A2473402D8B83628B1F6674A /* wxprintf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 607EF0043E723B7B9BE101EA /* wxprintf.cpp */; }; - B09CEADFEC593AFDA255BB1E /* libwxlexilla.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 65C4B1F34F273193BC76CEA2 /* libwxlexilla.a */; }; - 319FB8E64CE731D6A58AD301 /* clntdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C904B4BA8273355869812B2 /* clntdata.cpp */; }; - 10B5C2A72C713A678458CD9E /* pcre2_ord2utf.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */; }; - EA10DA3199813E90B39C70D3 /* xh_infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45C65E309F3A39598C043657 /* xh_infobar.cpp */; }; - 6F0605F3A4E83BF0BF4C8B7F /* cmdproc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */; }; - 9E37D29DCF7A3945A0EECB39 /* pcre2_serialize.c in Sources */ = {isa = PBXBuildFile; fileRef = BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */; }; - 8A662992FFCB32E99D11950C /* commandlinkbuttong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */; }; - A9864F0104FA344BBE79D3BC /* rendcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96CED508FA3C3B6B9265099E /* rendcmn.cpp */; }; - CAF5C5BB129431B596C4C6C1 /* LexTAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 38891BF8F51E398F9082903F /* LexTAL.cxx */; }; - 84B3625464F732C3A79E1314 /* xh_bmpbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */; }; - 93E04642049537EB8A37BA26 /* htmlwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */; }; + 664A54F914443110B7BB6928 /* tglbtn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */; }; + AAAB5DF8E60736D88273DCFE /* strconv_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5F9383D1CE931499F339D85 /* strconv_cf.cpp */; }; + E515EAE375AE390688CBF8D3 /* pngtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B32A13D5B3336098B1B9765 /* pngtrans.c */; }; + EBF2D44758003221A22202BC /* colourcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D61240ABD70328BA5789663 /* colourcmn.cpp */; }; + 6A081BF19747385CB4C1877F /* radiobut_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */; }; + 3ED6F4B64C283232A79423CF /* dircmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */; }; + AA54EDC7C94730D1A31F059E /* LexCharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */; }; + BD49EC50CB363642BDBF25C8 /* mousemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D037EA567C253DEEA17E822B /* mousemanager.cpp */; }; 05814571E7A83F5DBFB6E4C4 /* msgout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E968913A9A593B258BD8EACB /* msgout.cpp */; }; - 955D2199F1893D37BA2D7478 /* laywin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3784C240C2F330683494926 /* laywin.cpp */; }; - 8620088DDD233B139B250DD4 /* filter_sse2_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */; }; - 5AEA6E94FB76371D928D371C /* LexMatlab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC9153A350893820B942D37E /* LexMatlab.cxx */; }; - FE5B7C7A84B83C17A38E8403 /* LexSML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */; }; - 48A1F28E04603A68A1E70318 /* jidctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = A0DCC5EF59143640BE13AD73 /* jidctfst.c */; }; - 62331487C17B32E081B8FEA7 /* LexLaTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */; }; - 42ED9BAFD6E936849F1D36CB /* xtixml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4048A3523EC03409BD899BEF /* xtixml.cpp */; }; - E9EDB5C92D5D3B529E8D73B1 /* valgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7440859617F3B47AF4D3817 /* valgen.cpp */; }; - 73AA68AB9F1236ED9F1FBB2E /* metafile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2BB2949CC0B387AB6879539 /* metafile.cpp */; }; - D54A162E557834A48F4646AA /* advprops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 326723AEB79A305F90D6B41D /* advprops.cpp */; }; - 246B4FF96BA135258FE45F4F /* encconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */; }; - B1775EF7C72233408044034C /* radiobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 773D91F8280434519BD167EA /* radiobox_osx.cpp */; }; - E3A4615870B139D29FE727C2 /* menucmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F175D6E8E5723FC797701275 /* menucmn.cpp */; }; - B59FC7345C383D9099391AC3 /* mimecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */; }; - 895E7FE46F733C75AE8847E3 /* DBCS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CDF592CBE5193497A26EF978 /* DBCS.cxx */; }; - 0B4AF44DC0C439AD83CDC37F /* Indicator.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4FDE5A962FA234FA83A605AD /* Indicator.cxx */; }; - 6A10511265493FA2BB79CE4D /* propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC93D1DE277395592610085 /* propdlg.cpp */; }; - 20F10669703137E68318C6FD /* cmndata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */; }; - 28ADE8D385A53445A5451F23 /* jdhuff.c in Sources */ = {isa = PBXBuildFile; fileRef = 72869747E68E37998CB0A07E /* jdhuff.c */; }; - 0A406D2D1ADA343891E3664C /* powercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */; }; - B0FD1B96EAE635AFBFCF2C91 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C044 /* secretstore.cpp */; }; - 7C20B79175D33852A2E9DE83 /* LexRuby.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8734C52C7559310784396455 /* LexRuby.cxx */; }; - F5DF7AF0FA9E371BB71EF798 /* xh_listbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */; }; - 7625D908B2CD34C78243BA91 /* settcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABE3DC4AA47D39ACA83F27C0 /* settcmn.cpp */; }; - 76D1A1A49CC831FFB9EBB1F5 /* LexOpal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */; }; - E741CDA71895344C974D8F50 /* AutoComplete.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */; }; - 77BC918AF05C30E8A0BD27F9 /* tipdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */; }; - 86B0D280A43C308CAC14BE25 /* CaseFolder.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F52DCBC0442233738B39138E /* CaseFolder.cxx */; }; - 46E331300D8F349DB36AB50A /* imagpnm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC12B97F233B3B9494DA217F /* imagpnm.cpp */; }; - 4C9BA36123E43589956864C6 /* Style.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C28429A964C337A192D76CC8 /* Style.cxx */; }; - E1F7C51F411B3AF39476E489 /* fdrepdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F094B0B07DF33BCA6077BC0 /* fdrepdlg.cpp */; }; - E3A4615870B139D29FE727C3 /* menucmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F175D6E8E5723FC797701275 /* menucmn.cpp */; }; - FADD46CB89B135D1AF1D5F8A /* richtextstyledlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */; }; - 335DD610974A33D4B6581E2A /* colourdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */; }; - A569A33A2097316D8110C2C1 /* toolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */; }; - 7C20B79175D33852A2E9DE84 /* LexRuby.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8734C52C7559310784396455 /* LexRuby.cxx */; }; - 4269B85FDC5639BEB76A8AEC /* nonownedwnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */; }; + DA0FA502405A37B2A5698D20 /* config.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FE0B33481283D3493613B0F /* config.cpp */; }; + 8FDC800D873F30E282691832 /* pngrtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 87799D3168B43EB7B5686826 /* pngrtran.c */; }; + EA02FA6D3B003F8F8A2963C6 /* toolbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */; }; + 9F70A89D00B03D4894AF7638 /* validate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01BA6D45FE4C381493EB4372 /* validate.cpp */; }; + FBA19C939E1E33EDB05043FE /* cairo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */; }; + A5775D87FD713CBB930A783E /* bookctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */; }; + 6C1171E3FB7137CCB9E3F536 /* tif_zstd.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B98123FD57731139044B064 /* tif_zstd.c */; }; + 7CC211E10D853B958250A4CE /* LexModula.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */; }; + E82CB89681FF3747B6A94427 /* anybutton_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */; }; + BF1760458996391E8EB42949 /* ctrlsub.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */; }; + CEE0D7A7D5D8323B9957A780 /* notifmsgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */; }; + 03BF1610E2FC3BD5ACB754F0 /* bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */; }; + CEC6430AEB6E3200BFA75D08 /* jfdctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */; }; + BDB8EF0E0DA03693BFB77EF7 /* accesscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8555204EBA8930809B732842 /* accesscmn.cpp */; }; + 17F0494F87533196904F5313 /* xh_toolbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */; }; + 3ED6F4B64C283232A79423D0 /* dircmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */; }; + 81244C52741332A8B92E5976 /* LexRaku.cxx in Sources */ = {isa = PBXBuildFile; fileRef = ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */; }; + 14F303FD6B5F383DADDFD788 /* xh_dataview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 616466F521DB3ECAB304289F /* xh_dataview.cpp */; }; + B6BC23F4F3E43315BD4C7CF8 /* mediactrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */; }; + 8C2B50E3FC7A37C58CC9DC0A /* colour.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8B73BB8C0391E9EC1B2D1 /* colour.mm */; }; + 5303FA25D0773FAEB963D8E3 /* scrolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = CC2E24773D853A77B9FEFA4C /* scrolbar.mm */; }; + 0730A107A2B935A9923C8EF2 /* filehistorycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7B3307E56B332769901E99F /* filehistorycmn.cpp */; }; + C8C68927DB243AEAB51E11F2 /* pngwio.c in Sources */ = {isa = PBXBuildFile; fileRef = AF9EE701DD653E2299293E5F /* pngwio.c */; }; + A93D0E6F0871368EA8FC9FF9 /* fswatchercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */; }; + B559E894684A38238CAAA116 /* dirctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E110907DDC13305E88B90086 /* dirctrlcmn.cpp */; }; + 23CECD8647C037E0B41DF0D4 /* LexA68k.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7020ADB5D3E0375E875B418B /* LexA68k.cxx */; }; + 182DFDBB58653FD9863D4176 /* dcprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238741BDA2C73E56899CCB04 /* dcprint.cpp */; }; + 88A43B1C5A7438838DE97B94 /* tif_luv.c in Sources */ = {isa = PBXBuildFile; fileRef = 66FDA882451239EA8DF2E0B5 /* tif_luv.c */; }; + BF8C33B7CB3A3ECE814A95FB /* tokenzr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */; }; + A80D00249A693F43A9CBE777 /* rgncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63867276260C3F4A980E83D8 /* rgncmn.cpp */; }; + 9065A4BE3D0433B88CF45571 /* richtextbuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */; }; + DA0FA502405A37B2A5698D21 /* config.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FE0B33481283D3493613B0F /* config.cpp */; }; + 57AE7FCF768F3965BD39B47A /* m_span.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 727F25F832AD32D4B12D8E39 /* m_span.cpp */; }; + B6BC23F4F3E43315BD4C7CF9 /* mediactrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */; }; + 242E1D1A9BF331BA918134EC /* pngwtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 0964797530CF3FE7B8DB6242 /* pngwtran.c */; }; + 056CA84179433AA48D55DA65 /* bar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FDDE855D9F83E4891362EB4 /* bar.cpp */; }; + 14C024EB327435A2A571DA2D /* LexKix.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B303230368143F37B2409DE6 /* LexKix.cxx */; }; + E6CA1EB5550F3930BFE286CD /* tglbtn.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CFC6875EF4732E88E029065 /* tglbtn.mm */; }; + 8292D346BFC33D6E8D3CDDBF /* xh_sttxt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */; }; + 8C52B1985BAA371FA22CCEBB /* combobox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57C06D5DB5F733A4A235B206 /* combobox.mm */; }; + 83616D33080E3F0F9FA5FBB4 /* xh_html.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 889FFA9573A835F280A21CB4 /* xh_html.cpp */; }; + 0BB3BF0909A134BA93CF5620 /* xh_richtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */; }; + 61FD5E0E28F732E8AB1729F8 /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6AB648BC5173104A96CAE66 /* xml.cpp */; }; + E7D02E64384F37BC8939A2C4 /* jdpostct.c in Sources */ = {isa = PBXBuildFile; fileRef = 375FF97B202F3C359402D13E /* jdpostct.c */; }; + CA4DCD57060B38CC8B2283D7 /* filtfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */; }; FB8B6E4789A3311A98C5B0A8 /* clrpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B5A9DF3206B3954A4B38BFD /* clrpickerg.cpp */; }; - 1B69C40CD7493FED9A272835 /* notifmsg.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9446ADCCDCD32E6BCF95599 /* notifmsg.mm */; }; + D72D99FC424337CF9EDC2042 /* props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C20E46A504113C899B9DD9B7 /* props.cpp */; }; + 242E1D1A9BF331BA918134ED /* pngwtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 0964797530CF3FE7B8DB6242 /* pngwtran.c */; }; + F84D59648206349A9768157C /* msgdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */; }; + 9FD99E06F6613A1A958FAF6B /* jdmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */; }; + DC6B669C9A78398F914AEE53 /* fontutil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FF661188B563D27A11F5716 /* fontutil.cpp */; }; + 49C873EE448C3CD9A32012CD /* spinctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */; }; + 6D073876E1753549B5EEFDDA /* tif_compress.c in Sources */ = {isa = PBXBuildFile; fileRef = CA0D5D47D62A3148BA51B31B /* tif_compress.c */; }; + F0B3F484C38C3BA0B9927CD9 /* docmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */; }; + 335DD610974A33D4B6581E2C /* colourdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */; }; + B6728BCD1A0731299924C8C4 /* pcre2_substring.c in Sources */ = {isa = PBXBuildFile; fileRef = 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */; }; + 9C6E9E4BA54733EF9F87E4B7 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 513033E36E643593AC305B3D /* uncompr.c */; }; + F569D7A3F0E038E9B4CC2A76 /* xh_comboctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */; }; + 9FBC642677C63D01AA2511BD /* evtloop_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */; }; + 9B6A35E706543CDAA6A5014A /* LexGui4Cli.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */; }; + 3141FEDED0943BD6A2EF858F /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA93D41B11683E758D456531 /* log.cpp */; }; + D759231BC07232C0A52515A6 /* LexAccessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */; }; + 52C0984A2A4F31BC885519B0 /* xtistrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */; }; + 2B13BFC894C63373B7ACFA3D /* xh_hyperlink.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */; }; + 0723C4E8B52C39FDBC2158B6 /* dataview_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E53DC332DA23DF4B9BFCDE3 /* dataview_osx.cpp */; }; + AC6AC589EFB233C7B65A3225 /* overlaycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 303ACF199BE431BD891C9301 /* overlaycmn.cpp */; }; + 0E8A0B8FA40E365690C20230 /* gzlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7395814D42CC38F6B8CD81B4 /* gzlib.c */; }; + CCE4ECA9CE883B008065C6FB /* jctrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 725574EF98C4301989181CBF /* jctrans.c */; }; + 3554C88010CE3D2A8970A135 /* sashwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */; }; + 097BC5E023C33C1DA05606AF /* Selection.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2AF7739C389536F79DAA31E5 /* Selection.cxx */; }; + 86787E4138CC334BB74EC7B4 /* palette_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */; }; + 80665EEAE8613DF8A93A7984 /* utilscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4188821BBA833CCAA678B234 /* utilscmn.cpp */; }; + A3A898DA3114311EB7F02227 /* sckstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D784A32C094730FEAA391A9B /* sckstrm.cpp */; }; + BF2585CFA6853023975F1E78 /* iconbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */; }; + 0D6596A44A8C37DE85D578F6 /* Document.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 71DB140E670738839EC42C2B /* Document.cxx */; }; + 5C5D0983160A36189A770742 /* webviewarchivehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */; }; + 700BBDECBE313E108BA99ABD /* toplvcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 861438BD294335D4B859EA71 /* toplvcmn.cpp */; }; + 16021CFD78623B8CBD08FC1F /* LexVHDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */; }; + 9F608A33D52D327FAA295624 /* sckfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56653FACC7D13804A70556AD /* sckfile.cpp */; }; + 59F995B6E6EE3CA5A4487844 /* glcanvas.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35007225BB683683AA7C5E48 /* glcanvas.mm */; }; + 7625D908B2CD34C78243BA90 /* settcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABE3DC4AA47D39ACA83F27C0 /* settcmn.cpp */; }; + 652CFDD9A1C1366E99B5D6BC /* socketiohandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */; }; + 2D60F289103837EA8925E3F1 /* dcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1EE17722EA937E88A7F0C01 /* dcbase.cpp */; }; + EAA469E1A0CC33E4A21A3F7A /* gaugecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */; }; + C0CDA289E9EC3E20BE70B2E6 /* choiccmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24930711031D35288D28B04B /* choiccmn.cpp */; }; + 0E92CEF677AA32C9A8CDA0A7 /* checkbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */; }; + 135DFCE48FC03D8294D01A89 /* xmlrsall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */; }; + 36EB5D19429D3BD1A01001D6 /* framemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26632A254717372BAA4D514D /* framemanager.cpp */; }; + 2A79B68D20FE3C9B98A15534 /* menu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D799486AD7F336BB1F33DDC /* menu.mm */; }; + 84382E5DB3203A73AC5EE390 /* xh_combo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0905A1EBD653F6D82395602 /* xh_combo.cpp */; }; + 96B507455762391688B5E501 /* xh_listc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */; }; 0B98B6721DEE37A1ADEA382B /* quantize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B890199A37723EFD86C0ADA5 /* quantize.cpp */; }; - F2813BF297C73A3ABD02EC98 /* glcanvas_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */; }; - 4657E7382E9E3EDC8DE2401E /* mimetype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C97C1F26B5A38C49543060C /* mimetype.cpp */; }; - 9881E3FB23ED3283B6CC71A2 /* filepickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */; }; - CD35A576FD363FD49C3AC4B3 /* LexAda.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 375E7A99FF4C38FA9E223772 /* LexAda.cxx */; }; - 296692A7A3783E3A83D005C7 /* brush.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 302A13BC64C238A297F4399F /* brush.cpp */; }; - 4442EA28B0B3373B9A2D0863 /* collheaderctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */; }; - 5A8638C234133824BDF93BBF /* gbsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */; }; - 4301AFBA0A193A7EB392EB93 /* LexMake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3D5F00FC91343C35AF99F708 /* LexMake.cxx */; }; - F3CB42BB6D983675862C01F4 /* xh_toolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */; }; - E63364B7E727383BA8E2B7EC /* datstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81B3DFBB73573FFDBD320334 /* datstrm.cpp */; }; - 6292B023DBF4337A91404AD0 /* preferencescmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A046179831F63824A67B509B /* preferencescmn.cpp */; }; - 8B38C6C416BA3A51B37F60C4 /* statlinecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */; }; - 9B8E5690A6103FC1BDC6C47E /* pngread.c in Sources */ = {isa = PBXBuildFile; fileRef = 29D6506AEA5A323B8735F126 /* pngread.c */; }; - 68AC8860B0943C1FAF76D96C /* list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 552757A901E732CAA8E3F16D /* list.cpp */; }; + E9EDB5C92D5D3B529E8D73B1 /* valgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7440859617F3B47AF4D3817 /* valgen.cpp */; }; + F016C51053373E658ED4C9A9 /* helpext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF376BC55EA73F5FB7328142 /* helpext.cpp */; }; + 087FF6DE223A32509692F39B /* txtstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */; }; + FD1F6CD8286D3D428FD52A28 /* filepickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B580FD04D0D83601826FD5EE /* filepickerg.cpp */; }; + D9DCBE799DB634C2A73FD6BD /* statboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73954EB5397301F87881646 /* statboxcmn.cpp */; }; DC5F82733F733D98B39DE74D /* LexDMIS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 910D00F1C9143C6D85C24E7C /* LexDMIS.cxx */; }; - AEEE6BC41B6531898A61CB16 /* LexHTML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D87406BCF3E833369E12D89A /* LexHTML.cxx */; }; - 353B584AD0C03919A57A3048 /* affinematrix2d.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD09A813E10A31C19554B425 /* affinematrix2d.cpp */; }; - C5A8DF376BB13A2A8290C2E5 /* xh_unkwn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */; }; - 0E024D145DDD38ACAE68F463 /* toplevel_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */; }; - 383A6993E90936D39A5F12BD /* headerctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */; }; - D9EE059D3C3C3C13AE4419F1 /* stattextcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54BD19211DBD388AA0DEC7A1 /* stattextcmn.cpp */; }; - 849B89D1F6AB3DDEAA2D53AE /* xh_styledtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */; }; - FD3CC5F0AA41384B9388A1E1 /* htmlfilt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C6C4F5468743265A02D656C /* htmlfilt.cpp */; }; - 324B2BAC54553D45B3C56BFD /* LexOScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */; }; - B1E30CF6CFA932F5A3DBA950 /* docview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB634FD597793A74B3B3AA7F /* docview.cpp */; }; - 2F35A207C3993DE08E4FE0B1 /* timerunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */; }; + 1EDED99760B23A1999E75C12 /* imaglist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */; }; + BE3ED6EF34303867B8C8E923 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = D4C4495603293C07A3B09D54 /* compress.c */; }; 45AB45C6B24A3983B22E56A5 /* dataobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 271B4B77622B3411A7BF6634 /* dataobj.cpp */; }; - 00F1531404F832C6AE0748F2 /* spinbutt_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */; }; - A139B846584436BCBEBAE3BF /* grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76337016F2CA3C85831702E6 /* grid.cpp */; }; - 7CC211E10D853B958250A4CE /* LexModula.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */; }; - A39B0D7EB43137F7BA50A35E /* xh_simplebook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */; }; + 567A32722BA33AEE9FF93D7C /* fs_inet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7581D7140293BAE88E43DBE /* fs_inet.cpp */; }; + 39FB197CF9EB3D76BE0723CF /* LexBash.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 78D7866F95C73A28BB540606 /* LexBash.cxx */; }; + 2563C775427E3D68BD384F2F /* richtextstyles.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D30617843F33310089C1F77A /* richtextstyles.cpp */; }; + 86003C8EB906304F9025F789 /* jcinit.c in Sources */ = {isa = PBXBuildFile; fileRef = AA6C6739C3BD3EFA9CF71102 /* jcinit.c */; }; + 3813146434693234965C4F31 /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D6B0D32537D35069C7E053F /* inftrees.c */; }; + E53AFF04877D34C386D77381 /* wfstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C37866F41B0C31E295AA7FA6 /* wfstream.cpp */; }; + 1DBDF75500D73A3098015E7F /* cfstring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */; }; + 6D723C987BFB39B7B887DCB1 /* Editor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DA5E95D498C53A808A8E2EEB /* Editor.cxx */; }; + 028257C52CAE3038AA862C35 /* stdstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE16011AD6323AAC8616F973 /* stdstream.cpp */; }; + 5388468A6F8F3141B25CD400 /* treebkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7925E38823563BCDB5565DCF /* treebkg.cpp */; }; + 22E90F33B5C9308EBF37A700 /* printdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9E32802E8ED3E729FF34CFC /* printdlg.mm */; }; + E5D698D2606A304DA743AF93 /* grideditors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66426B63AA3E3A279936C034 /* grideditors.cpp */; }; + 41943A8F82723027A151A468 /* fileconf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */; }; 94E510619F433AE3AC884755 /* xh_bmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */; }; - FCE5B139CBE73FCB804EF7DD /* jcomapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EB76F786D7F3FF286948D22 /* jcomapi.c */; }; - 9241AAE354C53190BF3D5BA4 /* radiobut.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99E5B6DD00273D978C241BCA /* radiobut.mm */; }; - C2DEE063B5E032C1BD2B5026 /* xmlparse.c in Sources */ = {isa = PBXBuildFile; fileRef = A92B6033D8233DB1821F193B /* xmlparse.c */; }; - 2A79B68D20FE3C9B98A15535 /* menu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D799486AD7F336BB1F33DDC /* menu.mm */; }; - 9881E3FB23ED3283B6CC71A3 /* filepickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */; }; - A0BA01A85C303C78A3130711 /* art_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */; }; - EA02FA6D3B003F8F8A2963C6 /* toolbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */; }; - 0EB6AB38A68D3845AC384A24 /* xh_text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */; }; - 159E4248CB1333AD841D9F04 /* LexYAML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9CC7C6FFD67233788EEDFC5E /* LexYAML.cxx */; }; - 2FAE979E6FE23D088C768B7D /* gridcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */; }; - 249C9177B1A33EFEAB30F93F /* tipwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */; }; - DB73248401573A5996D8E68D /* jcmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 664736BDE465350C9C4750E9 /* jcmarker.c */; }; - 311840186794346AAAA42091 /* jutils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */; }; - BDAB44F5D017395D9D3A1F23 /* frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3019BA65DD73F30A865365F /* frame.cpp */; }; - E3136EF5DD843ACE886E2868 /* tif_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = E79B2D1F630036129B9677A7 /* tif_dir.c */; }; - FE5B7C7A84B83C17A38E8404 /* LexSML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */; }; - DC928C38CA8331F18FF00BCB /* tif_lzma.c in Sources */ = {isa = PBXBuildFile; fileRef = 3088384F07C63A5DB3581656 /* tif_lzma.c */; }; - C3C19BD343B235F9909D4959 /* xh_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C55AF552EE6931E8BFF7281B /* xh_aui.cpp */; }; - 10B5C2A72C713A678458CD9F /* pcre2_ord2utf.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */; }; - 71CCB06E790C3C54BFF1199E /* LexSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */; }; - 5FE969523BDB3353AEF96810 /* xh_filepicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */; }; - 9678C2B19D293818AA8E9E0E /* LexSpice.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4592464D4868329897F3864D /* LexSpice.cxx */; }; - 171F09F8DD553FA5B4B3FAE2 /* modalhook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E7C516E2453A269280A404 /* modalhook.cpp */; }; - 17F0494F87533196904F5314 /* xh_toolbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */; }; - 0C485288EA86379D9FD66536 /* cshelp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67DCEEB6861731319C30817F /* cshelp.cpp */; }; - 014AF0BAB1783A5D9D75A7ED /* zstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9B5BC858CCF3477895D2786 /* zstream.cpp */; }; - C43A9650A9DC3372AB8F5F78 /* jidctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */; }; - E104017EE1A4357DAF84E1E7 /* auibook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A298576700C33F018616E7BD /* auibook.cpp */; }; - CE17002B5B7E375582747639 /* xh_choic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */; }; - A53B8C3ED0D33A1D9AA8219B /* toolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3BF8C9FF2D5314591329D0D /* toolbar.mm */; }; - 219304C9DDA33E9AADB515DC /* datetimectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D049F49C75043592B7E318B3 /* datetimectrl_osx.cpp */; }; - E39021D3CDCD33BAA646B006 /* sckaddr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8238DA30FF3FB984511250 /* sckaddr.cpp */; }; - F5D0BCF1A6C839E5829199E3 /* sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */; }; - 87C67583D36C3465ACD64103 /* vlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA90128E29A03CCCA30F4D35 /* vlbox.cpp */; }; - 03035C5CE4BC3288A5A18424 /* choicdgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */; }; - DB3C3AA956A03FB492480266 /* treectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */; }; - D6B2A64A78AF3F2983B441A9 /* ownerdrwcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */; }; - 99E7A46106C03484BA70D29F /* tif_unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D2F8259CC99380CB8217DEF /* tif_unix.c */; }; - E80BEED62EBF34F09B3F4020 /* LexMagik.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 45860601270D318D93BEE1F3 /* LexMagik.cxx */; }; - B59FC7345C383D9099391AC4 /* mimecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */; }; - 9058997222493A7A859A4D4D /* richtextxml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C69E48C06BD23C178F650E42 /* richtextxml.cpp */; }; - F6288F388B8C33FD85E9A155 /* LexerNoExceptions.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */; }; - 3C36437B2E933F83984D431E /* imagtiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */; }; - E0FAB345D2933D42B62917A3 /* bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36296C259D023EAAA240FC79 /* bannerwindow.cpp */; }; + 8F372080E11E382EA0B5ED0F /* rowheightcache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */; }; + 7181709A030D3749AB355B74 /* xh_radbx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F43AF44465B335479752116D /* xh_radbx.cpp */; }; + 8EE5A2467401365C8217AF2F /* preferences.mm in Sources */ = {isa = PBXBuildFile; fileRef = 835C22B71A0F3C469310E1E0 /* preferences.mm */; }; + A3321FE2A87D3BD69E0BB009 /* notebook_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5248A45AB113341EAC361910 /* notebook_osx.cpp */; }; + BB6FE851028C3DE7A070C213 /* convauto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20B922D61CDB3CCEB59A5194 /* convauto.cpp */; }; + 309C0A78D45C3AB7B8778B59 /* pngset.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E463A493FD930DE80E58608 /* pngset.c */; }; + 296692A7A3783E3A83D005C6 /* brush.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 302A13BC64C238A297F4399F /* brush.cpp */; }; 3813146434693234965C4F32 /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D6B0D32537D35069C7E053F /* inftrees.c */; }; - 4958BD2E717A3F03AB030188 /* tbarbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3F32C01D122301AB00D06A5 /* tbarbase.cpp */; }; - CEBAAB0C77983358A601BFFE /* jdmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = ED19EF377E653F71B1876259 /* jdmaster.c */; }; - 213CE0DD5B2335D0AD53B54A /* gzclose.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A24E9101688368296C21EBE /* gzclose.c */; }; + 3DA70DE666D838A59642A4E6 /* LexAsciidoc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */; }; + 46327A3C356D3570B27C6701 /* Lexilla.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */; }; + E63364B7E727383BA8E2B7EC /* datstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81B3DFBB73573FFDBD320334 /* datstrm.cpp */; }; + BFD4B8871B3934048B631419 /* languageinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67D76B026121359F9B22F8B0 /* languageinfo.cpp */; }; + E8EE34F0A78C31B489B19FEE /* LexMSSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C71BF55495034FFBE653C80 /* LexMSSQL.cxx */; }; + 0E8A0B8FA40E365690C20231 /* gzlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7395814D42CC38F6B8CD81B4 /* gzlib.c */; }; + 7C87CC7641033D91823ED688 /* helpfrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */; }; + 159E4248CB1333AD841D9F03 /* LexYAML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9CC7C6FFD67233788EEDFC5E /* LexYAML.cxx */; }; + F38202271C6131908C358DEC /* mstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC3D1E222FD93A69B1D1366E /* mstream.cpp */; }; + 16A382A265DE32FABC318F6F /* fontdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB170BF78EFE39D692E11985 /* fontdlgg.cpp */; }; + D98FABF75BCE3AF18C91B42D /* LexHex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */; }; + 33ED014A7FF7398794E6E4CF /* xh_split.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */; }; + 57B41B6BACFB3906ACD1BFAF /* pcre2_jit_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */; }; + 46F341B46F80376B962759F5 /* animateg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 580AFC66F3003582B43043B1 /* animateg.cpp */; }; + 84B3625464F732C3A79E1314 /* xh_bmpbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */; }; + EC3A1C620D323B5590AABF03 /* module.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DB43FAB1E563B02ACEFF647 /* module.cpp */; }; + CCE4ECA9CE883B008065C6FC /* jctrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 725574EF98C4301989181CBF /* jctrans.c */; }; A283187810EB32DAA173BD33 /* artstd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24E82A05E9A9323287CDB15B /* artstd.cpp */; }; - 8B87FEC23DB834EDBFB6EA32 /* pcre2_ucd.c in Sources */ = {isa = PBXBuildFile; fileRef = 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */; }; - 2E8440A2BDD53BE7B01547C2 /* uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4E1DC1869C6327C80D2F5F4 /* uri.cpp */; }; - B6BC23F4F3E43315BD4C7CF8 /* mediactrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */; }; - 47EBBB18BDB539C2A948C712 /* chm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E24C6F2A04E30EB95598305 /* chm.cpp */; }; - 6F472413FFA03B53B395BB74 /* LexCLW.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7EE2459D69BA35838C274488 /* LexCLW.cxx */; }; - 2E059BFE8E3B3D9299D55969 /* textmeasure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B31409EC6532FC83B0B957 /* textmeasure.cpp */; }; - 27B5431DC79733CD8D403E88 /* pcre2_context.c in Sources */ = {isa = PBXBuildFile; fileRef = 3026D20A03E53F1DB40FB35A /* pcre2_context.c */; }; - 18A318847EAC37F2B915F081 /* jmemmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */; }; - 8FB5FBC5730C33F1A3D85D9F /* LexD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */; }; - 61A2B54FD2E33C759CF5A5E8 /* pngrutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 358D0A3AC73F322EA732D020 /* pngrutil.c */; }; - 59F995B6E6EE3CA5A4487844 /* glcanvas.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35007225BB683683AA7C5E48 /* glcanvas.mm */; }; - F6288F388B8C33FD85E9A156 /* LexerNoExceptions.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */; }; - 97C551F8AEF133D680D1FD36 /* LexProgress.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */; }; - D83B32B788EC310D919E0DF7 /* imagpcx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */; }; - 62757F24C4EE3B84B6AE3F15 /* textdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D529E2668C23D94A7706C8A /* textdlgg.cpp */; }; - 901F659891613419B8643953 /* calctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */; }; - E7921B0472B63E4091F4F518 /* xh_collpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */; }; - 1DD1888315513C24BF9C31B4 /* LexSAS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E1B538562B93D148F54645B /* LexSAS.cxx */; }; - FDE14459359334DE9FB03ED5 /* xh_scrol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66411D54BAD338498AC59401 /* xh_scrol.cpp */; }; - CE2C937117FE3AB599DD30B9 /* sound_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9B2316B32653DA0939A372D /* sound_osx.cpp */; }; - F6288F388B8C33FD85E9A157 /* LexerNoExceptions.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */; }; - 9CC92BB4B0E233A0A7F81279 /* LexVisualProlog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */; }; - C1E5799141603A75A26BEEA7 /* xpmdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C562D5885AFF3E15837325CE /* xpmdecod.cpp */; }; - B189DB62AE9F30A1B613756B /* bmpcboxg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */; }; - C3AC94EA13C1352790BF5FF7 /* listctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9016355F66D3125919E017D /* listctrl.cpp */; }; - F016C51053373E658ED4C9A9 /* helpext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF376BC55EA73F5FB7328142 /* helpext.cpp */; }; - A52A7D2FEB1434E29C64582D /* RESearch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E145FC31ED523B4AA5080A61 /* RESearch.cxx */; }; - BF1760458996391E8EB42949 /* ctrlsub.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */; }; - CE2C937117FE3AB599DD30BA /* sound_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9B2316B32653DA0939A372D /* sound_osx.cpp */; }; - F55F3887CDE633D7877C607B /* LexSmalltalk.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */; }; - 22E90F33B5C9308EBF37A700 /* printdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9E32802E8ED3E729FF34CFC /* printdlg.mm */; }; - DA71FBB9EFB2350ABB3CEC81 /* stdpaths.mm in Sources */ = {isa = PBXBuildFile; fileRef = 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */; }; - 9A63148F193E33B5964DD02A /* uilocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */; }; - 8E674574343A3C009B1BCD00 /* tif_codec.c in Sources */ = {isa = PBXBuildFile; fileRef = 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */; }; - C005C2D547E735E9B081658E /* prntdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */; }; - F2813BF297C73A3ABD02EC99 /* glcanvas_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */; }; - 9FB1E1763EFA334CA0C07C49 /* tarstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */; }; - 3C36437B2E933F83984D431F /* imagtiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */; }; - CE17002B5B7E37558274763A /* xh_choic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */; }; - 23CECD8647C037E0B41DF0D4 /* LexA68k.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7020ADB5D3E0375E875B418B /* LexA68k.cxx */; }; - 8FC1C07FEE793897A1E96D23 /* statbmpg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA2119A7C67D37B290C17989 /* statbmpg.cpp */; }; - A283187810EB32DAA173BD34 /* artstd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24E82A05E9A9323287CDB15B /* artstd.cpp */; }; - 30AEDF41EC5C374DBF96EFFB /* slider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B862D1027C4367BBF44420F /* slider.mm */; }; - A874AF0B203D3DC99C27469B /* LexNimrod.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */; }; - 57AE7FCF768F3965BD39B47B /* m_span.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 727F25F832AD32D4B12D8E39 /* m_span.cpp */; }; - 6C80B6049A523836BCD20BCA /* WordList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0E7BF9256DF533EBAE2B945E /* WordList.cxx */; }; - BB12132A86E2350AA47414CC /* arm_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 933D7637CAA43F6C99814BC5 /* arm_init.c */; }; - E0E4885BF4AF34B48EB08B93 /* volume.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6506A965F677374491359FB8 /* volume.mm */; }; - 46395873DB1C3B7FA81DE5F8 /* LexerBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */; }; - 527054445A0D3A00A5C2EC44 /* tif_thunder.c in Sources */ = {isa = PBXBuildFile; fileRef = 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */; }; - 604ABF86317C3D4F899DBF37 /* richtextsymboldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */; }; - C5419BC04D6234B5A8307B81 /* xti.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25C86D3D4839343BA1D8BDEE /* xti.cpp */; }; - 90BC965B1A1F35A3B2C9D1CA /* Decoration.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BF1C44D726E63B18A98006EC /* Decoration.cxx */; }; - 07412469921A3E488A2F9BA7 /* checklst_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */; }; - 0723C4E8B52C39FDBC2158B7 /* dataview_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E53DC332DA23DF4B9BFCDE3 /* dataview_osx.cpp */; }; - 1DF3A4F85FCB3BA79A552F3E /* menuitem_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */; }; - 127E255EE601383A9E0EF7EA /* menuitem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61548D0FE1353D7C846DD721 /* menuitem.mm */; }; - E82CB89681FF3747B6A94427 /* anybutton_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */; }; - DB3C3AA956A03FB492480267 /* treectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */; }; - 0C9A379D97B133FA831175A8 /* printdlg_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */; }; - 99F7D7BFBB543A04AB728375 /* m_hline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */; }; - DF8124E5E17D386A84CEEA28 /* LexLisp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 40586C8986443431A64EB066 /* LexLisp.cxx */; }; - A465A43B756630F1944B5A56 /* vscroll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1629FA905F903324AA5BE72C /* vscroll.cpp */; }; - 3B7E035ECF3D3FFB9827AC1C /* xh_dlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06B4A895955B32258DCD62BF /* xh_dlg.cpp */; }; - 7B642B17F5D23F4F8ED38BB4 /* graphcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BB59DD194923D6399087A75 /* graphcmn.cpp */; }; - 2FB16C6469433F1C91749129 /* renderer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92CCFD77BFB537EAA48E8BD3 /* renderer.mm */; }; - C34B8675439F39B4845FFC50 /* xh_listb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */; }; - 805CCAE64D023561AD334B53 /* popupwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 530DC2E26BF2313E8702AD43 /* popupwin.cpp */; }; - D13AE659C3AC37B68D39B2C9 /* LexLout.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B14D6E7E15FD3C869E341198 /* LexLout.cxx */; }; - D5AABE973F3A351EB1C1A5A6 /* fontmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0817D6A1AF83608B050EBC3 /* fontmap.cpp */; }; - D9DCBE799DB634C2A73FD6BD /* statboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73954EB5397301F87881646 /* statboxcmn.cpp */; }; - AAAB5DF8E60736D88273DCFE /* strconv_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5F9383D1CE931499F339D85 /* strconv_cf.cpp */; }; - 31380AD4F5BD38A6B9212FE0 /* LexR.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7255468B6D5F3D8697994A53 /* LexR.cxx */; }; - 86787E4138CC334BB74EC7B4 /* palette_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */; }; - 5700B7F9166A37FDAA72E9DC /* dnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E53493CB84A30AE8C1CD721 /* dnd.mm */; }; - D66F55C93D1130F488970C05 /* pcre2_match_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */; }; - 88E1AE56FD393C8BA5CF8546 /* stringops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F1E724EA70AB35DDB130F84F /* stringops.cpp */; }; - 64DD406C453D39FEBBE66ED2 /* tif_pixarlog.c in Sources */ = {isa = PBXBuildFile; fileRef = 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */; }; - E882402BEE0330A080A65170 /* strconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FEB8204E530329FA085E5B8 /* strconv.cpp */; }; - 1EDED99760B23A1999E75C12 /* imaglist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */; }; - 2EECB3C2F9523D0B95847A7F /* accel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C78A1539462370CAA429508 /* accel.cpp */; }; - C1DCF69200593986A8C606A6 /* hidjoystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018B15DE6F3A3D49B9CDE9DE /* hidjoystick.cpp */; }; - 03035C5CE4BC3288A5A18425 /* choicdgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */; }; - 0E8A0B8FA40E365690C20230 /* gzlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7395814D42CC38F6B8CD81B4 /* gzlib.c */; }; - B0C44C3054CB3E0590DDCBDA /* LexJSON.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */; }; - 64F11C549E3035DF85691061 /* tif_ojpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */; }; + 1EE845DDFDDE36CA8A218205 /* tif_close.c in Sources */ = {isa = PBXBuildFile; fileRef = F82278F9AF0432529891E6D7 /* tif_close.c */; }; + 47F4FC8717AF3A848812DFCC /* xh_radbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */; }; 80665EEAE8613DF8A93A7985 /* utilscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4188821BBA833CCAA678B234 /* utilscmn.cpp */; }; - B0C44C3054CB3E0590DDCBDB /* LexJSON.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */; }; - 55D893FDD00633FEA82ABD82 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */; }; - 527054445A0D3A00A5C2EC45 /* tif_thunder.c in Sources */ = {isa = PBXBuildFile; fileRef = 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */; }; - B189DB62AE9F30A1B613756C /* bmpcboxg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */; }; - 5C3B0ED2EA973DFDBFBCC692 /* richtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */; }; - A9A5973552EE30838306D15C /* tif_packbits.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CE73979D0933A43830307E4 /* tif_packbits.c */; }; - 4CFB7E6E5BD53E2BB39BEF64 /* m_style.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EB95BCFA255323183A996C9 /* m_style.cpp */; }; - 1BCC944F5E0936F5830F03E8 /* windowid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B9B85572D0312BBF2878DB /* windowid.cpp */; }; - 86003C8EB906304F9025F788 /* jcinit.c in Sources */ = {isa = PBXBuildFile; fileRef = AA6C6739C3BD3EFA9CF71102 /* jcinit.c */; }; - D9DCBE799DB634C2A73FD6BE /* statboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73954EB5397301F87881646 /* statboxcmn.cpp */; }; - 069D53F2DFBF370A8CC99630 /* LexCSS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */; }; - D98FABF75BCE3AF18C91B42E /* LexHex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */; }; - 3C0EB1DDA5243E31B2D92CE2 /* jquant2.c in Sources */ = {isa = PBXBuildFile; fileRef = 02D9332D5C5632E981936E29 /* jquant2.c */; }; - 45E15DBB6B69382D8AF1BA21 /* pcre2_dfa_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */; }; - 42ED9BAFD6E936849F1D36CC /* xtixml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4048A3523EC03409BD899BEF /* xtixml.cpp */; }; - 2DF74933A90E34129F1BEF72 /* dnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA72410F615B3A78A6340532 /* dnd_osx.cpp */; }; + 26E4813A97DE323E88119163 /* xh_choicbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */; }; + 9881E3FB23ED3283B6CC71A2 /* filepickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */; }; + 0D6596A44A8C37DE85D578F7 /* Document.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 71DB140E670738839EC42C2B /* Document.cxx */; }; + D54A162E557834A48F4646A9 /* advprops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 326723AEB79A305F90D6B41D /* advprops.cpp */; }; + 66FD099CE5A338C18329FC36 /* LexAbaqus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CD72950967F33809931D4968 /* LexAbaqus.cxx */; }; + 570FA90F526E3F25A8E8FCF2 /* tif_read.c in Sources */ = {isa = PBXBuildFile; fileRef = 64B25B87203E3464BCDD277D /* tif_read.c */; }; + C40AA245D5773351979A2850 /* filedlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = DC8A52CA69053B27B09F1037 /* filedlg.mm */; }; + 0A2A4D2DC8F63FE1AC0BFAAF /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2024D29170D3B50A4DFDE11 /* base64.cpp */; }; + 6C80B6049A523836BCD20BCA /* WordList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0E7BF9256DF533EBAE2B945E /* WordList.cxx */; }; + D6CF7416CA6A3CFF8FDFD49B /* nativewin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9BC8BFDE41F93504B7A51D08 /* nativewin.mm */; }; + 745C39E90E8C3C08A887B51C /* msgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */; }; B5470121BB4B35DE9C4836DA /* jdcoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = F1A6F3936A0D31CBB58082BA /* jdcoefct.c */; }; - 51437DC2AD7B3BEB9A53CE1A /* cmdline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE1C531185131A89EFF7FAF /* cmdline.cpp */; }; - 087FF6DE223A32509692F39B /* txtstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */; }; - BAAB6B1D80A33843A8436B10 /* appunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */; }; - 37749AC3468836FC857BD0D5 /* checklstcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */; }; - BDAB44F5D017395D9D3A1F24 /* frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3019BA65DD73F30A865365F /* frame.cpp */; }; - F569D7A3F0E038E9B4CC2A76 /* xh_comboctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */; }; - 9A63148F193E33B5964DD02B /* uilocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */; }; - 23479484EC143D34871550C1 /* textmeasurecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */; }; - 98F52D5224B438DFA8887E06 /* timectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741578B590AF3F2CABE615EB /* timectrlg.cpp */; }; - 64DD406C453D39FEBBE66ED3 /* tif_pixarlog.c in Sources */ = {isa = PBXBuildFile; fileRef = 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */; }; - CA85901B9E2538CFB7E44216 /* process.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B35DA585CFDD32468868E892 /* process.cpp */; }; - 8EE5A2467401365C8217AF2F /* preferences.mm in Sources */ = {isa = PBXBuildFile; fileRef = 835C22B71A0F3C469310E1E0 /* preferences.mm */; }; - F747991E5C973F9B8C9D800A /* fontcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */; }; - 4DD98A9436C83CF3B9425A78 /* sysopt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */; }; - 8F372080E11E382EA0B5ED0F /* rowheightcache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */; }; - 59F995B6E6EE3CA5A4487845 /* glcanvas.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35007225BB683683AA7C5E48 /* glcanvas.mm */; }; - FEB073547F3F3AC19D31F699 /* tif_tile.c in Sources */ = {isa = PBXBuildFile; fileRef = BD88495AF72531A28D2201D0 /* tif_tile.c */; }; - 58AABAD40AA236438347DDDE /* evtloop.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D2549709E0133C9A267E3A5 /* evtloop.mm */; }; - 84997126352137E798CD258A /* spinctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59572A234F0636D78BFD9F6B /* spinctlg.cpp */; }; - 4C9BA36123E43589956864C7 /* Style.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C28429A964C337A192D76CC8 /* Style.cxx */; }; - E92EB502F79638B0BE569EF4 /* CallTip.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */; }; - 6138BCBC8E4438FA91E0EFA0 /* xh_chckb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */; }; - C1DCF69200593986A8C606A7 /* hidjoystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018B15DE6F3A3D49B9CDE9DE /* hidjoystick.cpp */; }; - 7FC3D17B3C853FE58841002D /* timercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7195E665E0F233839B967FC9 /* timercmn.cpp */; }; - 700BBDECBE313E108BA99ABD /* toplvcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 861438BD294335D4B859EA71 /* toplvcmn.cpp */; }; - EDD92822EBD93E86AE5A2ED0 /* slidercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8072CA67D19346ABF4D465F /* slidercmn.cpp */; }; - 20D05D14BFAD3F969666D03B /* timectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA0840034F1386F94D17639 /* timectrl_osx.cpp */; }; - C1E5799141603A75A26BEEA8 /* xpmdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C562D5885AFF3E15837325CE /* xpmdecod.cpp */; }; - A1A7B833061C35B4AABD093D /* preferencesg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */; }; - 09A792A5129E3FE1BF077642 /* tif_jpeg_12.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */; }; - 353B584AD0C03919A57A3049 /* affinematrix2d.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD09A813E10A31C19554B425 /* affinematrix2d.cpp */; }; - CFA91122523B31B9A07A3827 /* pngmem.c in Sources */ = {isa = PBXBuildFile; fileRef = C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */; }; - 1EE845DDFDDE36CA8A218205 /* tif_close.c in Sources */ = {isa = PBXBuildFile; fileRef = F82278F9AF0432529891E6D7 /* tif_close.c */; }; - 39FB197CF9EB3D76BE0723CF /* LexBash.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 78D7866F95C73A28BB540606 /* LexBash.cxx */; }; - 595DCB164D55342EB86604EC /* hashmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6636144CDE83E8E85270FAF /* hashmap.cpp */; }; + B0FD1B96EAE635AFBFCF2C91 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C044 /* secretstore.cpp */; }; + 7F62946D497A32CE857F65C9 /* pcre2_maketables.c in Sources */ = {isa = PBXBuildFile; fileRef = D016F584D14C31E192DB3179 /* pcre2_maketables.c */; }; + 50E89226E8D7390D9D21C809 /* debugrpt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */; }; + 8AA341CCFB8E3F6AB3523595 /* splash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F8836E29C5A370E80CE070E /* splash.cpp */; }; + 07C769F64665317BA3E1AC90 /* tif_jpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */; }; + 834F2ADD0520313FBAC4F927 /* LexCsound.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */; }; 1B06622C8D8731FC832199E2 /* init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB82939EDC593F9CA95C3098 /* init.cpp */; }; - 268DDC88C99A3A64AB8B2FFA /* LexCaml.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B3B8AD0120F3EA6BF5B0AE0 /* LexCaml.cxx */; }; - FBA19C939E1E33EDB05043FE /* cairo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */; }; - 16021CFD78623B8CBD08FC1F /* LexVHDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */; }; + E6CA1EB5550F3930BFE286CE /* tglbtn.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CFC6875EF4732E88E029065 /* tglbtn.mm */; }; + 32988828498D32B2B3F8A982 /* bmpsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741E9B48274638CD9DD73698 /* bmpsvg.cpp */; }; + 0C2CBD7246993527A829BD94 /* LexDataflex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */; }; + 283C3ABE42433244983C27C2 /* stattext_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CF5C09D9A1230EEB42713E1 /* stattext_osx.cpp */; }; + 48A1F28E04603A68A1E70318 /* jidctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = A0DCC5EF59143640BE13AD73 /* jidctfst.c */; }; + 2102C23970FB3F22AB46A59A /* LexTADS3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A284E855892F3A9E9E19E854 /* LexTADS3.cxx */; }; + CFA91122523B31B9A07A3827 /* pngmem.c in Sources */ = {isa = PBXBuildFile; fileRef = C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */; }; + C3C19BD343B235F9909D4959 /* xh_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C55AF552EE6931E8BFF7281B /* xh_aui.cpp */; }; + 9D4B67A357D23B5283CA8D98 /* clrpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB8A747FB60239B9AB710264 /* clrpickercmn.cpp */; }; + 3E99016BDE043A08B4D6B3CE /* htmprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 194ADD28300E329E80F7892E /* htmprint.cpp */; }; + D51B3389209E370489078891 /* tif_dirread.c in Sources */ = {isa = PBXBuildFile; fileRef = F6EA240B3DB93D398A990FAD /* tif_dirread.c */; }; + C5419BC04D6234B5A8307B81 /* xti.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25C86D3D4839343BA1D8BDEE /* xti.cpp */; }; + 0F2FD12272023C869CE86008 /* filter_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */; }; + 32FECED7A7633C4D8C1BFBB4 /* toolbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24DF23D67E693D999B875101 /* toolbkg.cpp */; }; + BEA90F2C6BB93143958F899A /* propgridiface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */; }; + 097BC5E023C33C1DA05606B0 /* Selection.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2AF7739C389536F79DAA31E5 /* Selection.cxx */; }; + BA9F0BBD57F63FD29E484FD3 /* LexScriptol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F1B41B0F10C3DA38188C239 /* LexScriptol.cxx */; }; + 3399AB7BB1333B5AAF5FAF55 /* wrapsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */; }; + AAC2AC9C49F1366D8BD20F5E /* LexECL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1AD9605C9385374C87FAC9BC /* LexECL.cxx */; }; + D13596A4E3CD31DE810061A1 /* imagjpeg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6876262846EA3569B36D92E9 /* imagjpeg.cpp */; }; + 895E7FE46F733C75AE8847E3 /* DBCS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CDF592CBE5193497A26EF978 /* DBCS.cxx */; }; + 26E4813A97DE323E88119164 /* xh_choicbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */; }; + BD2B17EB72E73A6EB6E0B26F /* dcmemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 343D4FDD5CC030618EF24729 /* dcmemory.cpp */; }; + 72AD4417FF7C3094BB1FF62C /* xh_grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93B77251C0E0382D9A8E113D /* xh_grid.cpp */; }; + B84642DA949638A189032CE6 /* http.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F84F0DB790A23D92A193D2B4 /* http.cpp */; }; + 807450BB072C3C0D9C52A3B6 /* LexGDScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E29A8279BAEE303B95C9D3C6 /* LexGDScript.cxx */; }; + B0C44C3054CB3E0590DDCBDA /* LexJSON.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */; }; + 45AB45C6B24A3983B22E56A6 /* dataobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 271B4B77622B3411A7BF6634 /* dataobj.cpp */; }; + 00E2F82590B33BDCA1F6D0C4 /* xh_htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */; }; + 9A178ED42D96329D8CBF9B89 /* tif_predict.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */; }; + 187F921A95DA3594B0AD980D /* gridsel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26381308E32A3A179E7A9B40 /* gridsel.cpp */; }; FEA741A9B6663A4C929893C2 /* aboutdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */; }; - AE5286C71D1130EAA368A1C5 /* radiobtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 724927B0045F3CC0884878BB /* radiobtncmn.cpp */; }; - 8A9C3C04D00334418C3446F9 /* dirdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0B0DC125AFFC322E8E496262 /* dirdlg.mm */; }; - 0654BCC3F0763C50A7949504 /* LexAPDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */; }; + E3B3E4F75D503DB89B5C622D /* stc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B9C41A4D12345AAA764CAD /* stc.cpp */; }; + EDCA35F1555F3509895CCA69 /* textctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */; }; + CA5BD8ABDBA13641BBE7CD67 /* jccoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = E89AC104BF4F33A083F8B382 /* jccoefct.c */; }; + B839235BED6F3609BDB732B8 /* dndcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */; }; + FEF99FF6C38D3B488396B142 /* ffile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */; }; 36B0B923B836358D9DB0AE10 /* xh_panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */; }; - 893BDA491EDE3A0E91FADE40 /* nonownedwnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */; }; - BF9B151DC0543E37878F8B9A /* stattextg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DE635F30F3935099AF1486C /* stattextg.cpp */; }; - 42260A6F1853361083803B0D /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CB467F9898C3952A68D988B /* zutil.c */; }; - 2C53221A318E37529E6460EB /* tif_fax3sm.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */; }; - 1B06622C8D8731FC832199E3 /* init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB82939EDC593F9CA95C3098 /* init.cpp */; }; - DEC5F4B34BC037169D3E5F2A /* mediactrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */; }; - DDC71B80D562303690FDBE4C /* appcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F01DDE448E4C3983ACCE67FD /* appcmn.cpp */; }; - 7A79D9AC608E3B8287229174 /* tif_warning.c in Sources */ = {isa = PBXBuildFile; fileRef = C83C97A1FCC5345896C9D7DE /* tif_warning.c */; }; - FE5285579C7F39C48FC66B10 /* hash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 888BD97139C936679691FF34 /* hash.cpp */; }; - B84642DA949638A189032CE6 /* http.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F84F0DB790A23D92A193D2B4 /* http.cpp */; }; - BF1760458996391E8EB4294A /* ctrlsub.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */; }; - 5F57C4908E5038D19D68ED7A /* gallery.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */; }; - 16A382A265DE32FABC318F71 /* fontdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB170BF78EFE39D692E11985 /* fontdlgg.cpp */; }; - 1DF3A4F85FCB3BA79A552F3F /* menuitem_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */; }; - 8A4046BD38873D9CAC9C2B59 /* filesys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F263022F3FEA3F75895B644D /* filesys.cpp */; }; - 67A0583ADD8C35B8B9BA3D13 /* checkbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 81708CFA21A03013ACB8DDD7 /* checkbox.mm */; }; - C7B6240E0E213836996A178B /* dockart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD709DEB71623974B9836D69 /* dockart.cpp */; }; - E39021D3CDCD33BAA646B007 /* sckaddr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8238DA30FF3FB984511250 /* sckaddr.cpp */; }; - 1C52CB9487DF3AB9AF243B47 /* prntbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 242BF97B558634A79322052C /* prntbase.cpp */; }; - D66F55C93D1130F488970C06 /* pcre2_match_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */; }; - EA02FA6D3B003F8F8A2963C7 /* toolbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */; }; - CD35A576FD363FD49C3AC4B4 /* LexAda.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 375E7A99FF4C38FA9E223772 /* LexAda.cxx */; }; - A7692B4D8658347BA16EEB84 /* jmemnobs.c in Sources */ = {isa = PBXBuildFile; fileRef = 374E341C8703367686DEDE93 /* jmemnobs.c */; }; - 1DE75213D296323B815A02BE /* statline.mm in Sources */ = {isa = PBXBuildFile; fileRef = 743EF8DB16CE371DA5C66623 /* statline.mm */; }; - C2D45B334BE03F6C941CA041 /* utilsexc_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95E2B80B2D7033808504DA8D /* utilsexc_cf.cpp */; }; - 3694B007E88A3D8C8CB952F0 /* LexRegistry.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A737317EDE0F3921B1412966 /* LexRegistry.cxx */; }; - D948CC99521633338B24E2F5 /* LexHollywood.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */; }; - 1EA81A0E8E5A3B38B4D80337 /* srchcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF103B09F02315282EC8F44 /* srchcmn.cpp */; }; - 47C31B7492F33C3EBE53262A /* settings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6831AA74AB5B38D5AA6946D7 /* settings.mm */; }; - 955D2199F1893D37BA2D7479 /* laywin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3784C240C2F330683494926 /* laywin.cpp */; }; - 66584BC871303041BA622DE0 /* m_fonts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1F3C70512D93501B0478F3E /* m_fonts.cpp */; }; - 4788F736CD9C324E8A3DFA74 /* LexEScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 58EFF24DE2E737CA8A164F5C /* LexEScript.cxx */; }; - BA57708D2D563967A0D1F005 /* LexTxt2tags.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */; }; - 779D3480141B3683A6D132BF /* tif_lzw.c in Sources */ = {isa = PBXBuildFile; fileRef = 346C68F0CCD23823B78267F0 /* tif_lzw.c */; }; - FECC98B53C0F3106AB04E69E /* tif_fax3.c in Sources */ = {isa = PBXBuildFile; fileRef = 30FD1048328234E59D319863 /* tif_fax3.c */; }; - 45FE206BBAD13DDCA1EA41CF /* treebase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BA6ADD758693BD180D3275B /* treebase.cpp */; }; - 760C729E41D93CC1AA2B4E0D /* hyperlinkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */; }; - 6C46AF0370793AA0B74A5A4A /* tabmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */; }; - 59BFB8C8310E37B39AF8B0D4 /* any.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4867546E8B8D3C8683A23ED5 /* any.cpp */; }; - F5DF7AF0FA9E371BB71EF799 /* xh_listbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */; }; + 97BAFEAD53E238B6881178DD /* evtloopcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 640783FBACA43206B782C77B /* evtloopcmn.cpp */; }; + 81B742D64BEB373DB705947A /* m_list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4028ABB08C63AB59F5F240B /* m_list.cpp */; }; + 77BC918AF05C30E8A0BD27F8 /* tipdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */; }; 9FA6C4275F0D3E1A884ED562 /* pcre2_auto_possess.c in Sources */ = {isa = PBXBuildFile; fileRef = C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */; }; - 01D4C5F2147F3942A7CE91AB /* icon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5DAF1F49F0F3F41A427A21D /* icon.cpp */; }; - 8DE45CEAF2DD3C22AA019F75 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CF73F49AEC238C99CE89845 /* deflate.c */; }; - F910C74E48823E0BA7F7885D /* graphicc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BACAA6CE4A0934459F26B27C /* graphicc.cpp */; }; - 8A9C3C04D00334418C3446FA /* dirdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0B0DC125AFFC322E8E496262 /* dirdlg.mm */; }; - 6B9EEA3CF2E536E3B1ADAC42 /* manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBED392D081335FA80523244 /* manager.cpp */; }; - F569D7A3F0E038E9B4CC2A77 /* xh_comboctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */; }; - 319FB8E64CE731D6A58AD302 /* clntdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C904B4BA8273355869812B2 /* clntdata.cpp */; }; - 8FC1C07FEE793897A1E96D24 /* statbmpg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA2119A7C67D37B290C17989 /* statbmpg.cpp */; }; - 97C551F8AEF133D680D1FD37 /* LexProgress.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */; }; - 6A081BF19747385CB4C18780 /* radiobut_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */; }; - 9CC92BB4B0E233A0A7F8127A /* LexVisualProlog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */; }; - 7ECC6EE6D5273F75BB6B7B74 /* tif_dirinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 032A38738B58394E8617617B /* tif_dirinfo.c */; }; - 8B87FEC23DB834EDBFB6EA33 /* pcre2_ucd.c in Sources */ = {isa = PBXBuildFile; fileRef = 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */; }; - 4B996B4C54163D7091427DB5 /* gzread.c in Sources */ = {isa = PBXBuildFile; fileRef = BAD4614CABC934D6AFF8D9CD /* gzread.c */; }; - 9110ACFC3CFB3C7994E907B1 /* imagiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A745D1821A32D591D76650 /* imagiff.cpp */; }; - 95826E8528CC32D8934C36ED /* xh_frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */; }; - 5D3AD309AF39385EBF7D9DF8 /* jaricom.c in Sources */ = {isa = PBXBuildFile; fileRef = 573D0D15EE9E3E629D61EA65 /* jaricom.c */; }; - FEF99FF6C38D3B488396B142 /* ffile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */; }; - EE6474BBB4AF34D093E2451D /* MarginView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F951601E73683F27AD8CA99D /* MarginView.cxx */; }; - 7B372FEA276438C186F7E340 /* RunStyles.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */; }; - 47F4FC8717AF3A848812DFCE /* xh_radbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */; }; - 523FB2A8435A3324A8E1B370 /* PerLine.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9389DAF8B91030B7AAB029FF /* PerLine.cxx */; }; - 46CE8B53D2663927AAE5DF9D /* xh_treebk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */; }; - 3EB6B8528A0D3B6CADAE1256 /* archive.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02D2E8B5C89939CE90B99E2B /* archive.cpp */; }; - 8C2B50E3FC7A37C58CC9DC0A /* colour.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8B73BB8C0391E9EC1B2D1 /* colour.mm */; }; - 1E2AB43075973AE59A8D89C2 /* fontdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */; }; - B839235BED6F3609BDB732B9 /* dndcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */; }; - E44265D541BC3970B5F24001 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 32BACA8214D137E684CD8DA5 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 17DA56F9BEEA357F99439BDF /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 17DA56F9BEEA357F99439BE0 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 17DA56F9BEEA357F99439BE1 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 15CCCFC2670F3C2DB66026F5 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - E44265D541BC3970B5F24002 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679B2 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D90290170 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DA6 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D774 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BE2 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 15CCCFC2670F3C2DB66026F6 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A537112F /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - E44265D541BC3970B5F24003 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679B3 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D90290171 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DA7 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D775 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BE3 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 15CCCFC2670F3C2DB66026F7 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A5371130 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - E44265D541BC3970B5F24004 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679B4 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D90290172 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DA8 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D776 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BE4 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 15CCCFC2670F3C2DB66026F8 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A5371131 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - E44265D541BC3970B5F24005 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679B5 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D90290173 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DA9 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D777 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BE5 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 15CCCFC2670F3C2DB66026F9 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A5371132 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - E44265D541BC3970B5F24006 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679B6 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D90290174 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DAA /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D778 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BE6 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 15CCCFC2670F3C2DB66026FA /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A5371133 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - E44265D541BC3970B5F24007 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679B7 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D90290175 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DAB /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D779 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BE7 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 15CCCFC2670F3C2DB66026FB /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - E44265D541BC3970B5F24008 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 32BACA8214D137E684CD8DAC /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 17DA56F9BEEA357F99439BE8 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 181655C7084A31E09E41E03A /* libwx_osx_cocoau_adv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAFC67A0C213E83BC2E072C /* libwx_osx_cocoau_adv.dylib */; }; - 15CCCFC2670F3C2DB66026FC /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A5371134 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - E44265D541BC3970B5F24009 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679B8 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D90290176 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DAD /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D77A /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BE9 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 181655C7084A31E09E41E03B /* libwx_osx_cocoau_adv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAFC67A0C213E83BC2E072C /* libwx_osx_cocoau_adv.dylib */; }; - 15CCCFC2670F3C2DB66026FD /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A5371135 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - 254028D56649374E8D3CC85C /* libwx_osx_cocoau_html.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D9F65758E0363AF9AEC59A47 /* libwx_osx_cocoau_html.dylib */; }; - 60D6496B6C613604978DEDDB /* libwx_baseu_xml.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C6CC76872BA32D2B61EB8AB /* libwx_baseu_xml.dylib */; }; - E44265D541BC3970B5F2400A /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679B9 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D90290177 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DAE /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D77B /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BEA /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 15CCCFC2670F3C2DB66026FE /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A5371136 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - E44265D541BC3970B5F2400B /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679BA /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D90290178 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DAF /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 289FC2870949331391413017 /* libwxscintilla.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 23268CF4AF7431C3BCEBAEC8 /* libwxscintilla.a */; }; - 70F8AD1F91213D6DB150D77C /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BEB /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 15CCCFC2670F3C2DB66026FF /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A5371137 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - E44265D541BC3970B5F2400C /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679BB /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D90290179 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DB0 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D77D /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BEC /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 15CCCFC2670F3C2DB6602700 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - E44265D541BC3970B5F2400D /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 32BACA8214D137E684CD8DB1 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 17DA56F9BEEA357F99439BED /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 181655C7084A31E09E41E03C /* libwx_osx_cocoau_adv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAFC67A0C213E83BC2E072C /* libwx_osx_cocoau_adv.dylib */; }; - 15CCCFC2670F3C2DB6602701 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A5371138 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - 254028D56649374E8D3CC85D /* libwx_osx_cocoau_html.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D9F65758E0363AF9AEC59A47 /* libwx_osx_cocoau_html.dylib */; }; - 60D6496B6C613604978DEDDC /* libwx_baseu_xml.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C6CC76872BA32D2B61EB8AB /* libwx_baseu_xml.dylib */; }; - E44265D541BC3970B5F2400E /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679BC /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D9029017A /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DB2 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D77E /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BEE /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 15CCCFC2670F3C2DB6602702 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A5371139 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - E44265D541BC3970B5F2400F /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679BD /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D9029017B /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DB3 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D77F /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BEF /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 60D6496B6C613604978DEDDD /* libwx_baseu_xml.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C6CC76872BA32D2B61EB8AB /* libwx_baseu_xml.dylib */; }; - 026F90F7492C316A94128916 /* logg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C64705CE9398316D87BAB4DC /* logg.cpp */; }; - 181655C7084A31E09E41E03D /* libwx_osx_cocoau_adv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAFC67A0C213E83BC2E072C /* libwx_osx_cocoau_adv.dylib */; }; - 15CCCFC2670F3C2DB6602703 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; - 56AD3B826DF93C39A537113A /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; - E44265D541BC3970B5F24010 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; - 16C883E8E27D3DA7BBA679BE /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; - 49029F880CB8345D9029017C /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; - 32BACA8214D137E684CD8DB4 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; - 70F8AD1F91213D6DB150D780 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; - 17DA56F9BEEA357F99439BF0 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; - 31FEAB56919D372993CAD89D /* pngrio.c in Sources */ = {isa = PBXBuildFile; fileRef = A06AB1974DB93EE2999EC75C /* pngrio.c */; }; - 57B41B6BACFB3906ACD1BFB0 /* pcre2_jit_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */; }; - BA7B12396B873FDA8F3A2748 /* xlocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 418AD9241B673308BE31DC06 /* xlocale.cpp */; }; - D5C304182151365FA9FF8A3D /* xh_bttn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */; }; - FECC98B53C0F3106AB04E69F /* tif_fax3.c in Sources */ = {isa = PBXBuildFile; fileRef = 30FD1048328234E59D319863 /* tif_fax3.c */; }; - E7AF3BF2B3473AD9BE66D1A1 /* xh_clrpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */; }; - 4E712589FAA837F589B72F4C /* LexMaxima.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */; }; - D4C87E227A28391891D89089 /* filename.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */; }; - E8EE34F0A78C31B489B19FEE /* LexMSSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C71BF55495034FFBE653C80 /* LexMSSQL.cxx */; }; - E2A73751CECF32A68FFAEE82 /* panelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E9B2C076673C87B4218A01 /* panelcmn.cpp */; }; - 096BA201623034AD97218368 /* tif_version.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E6F40F4740C3ED29D83E107 /* tif_version.c */; }; - 052331773CF6362C9A6CF38E /* utils_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EED7C691150139EFA35E8EBD /* utils_osx.cpp */; }; - D772334837693C9D88069D99 /* tif_webp.c in Sources */ = {isa = PBXBuildFile; fileRef = 3716DA7B0C79360CBA26A71E /* tif_webp.c */; }; - F34D240EB4513FE996179182 /* xh_mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */; }; - 0743AE8613F535A0ABB79315 /* intl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC8BB1AABB3D393EBA527060 /* intl.cpp */; }; - 2CAD4DF9505F36E4A2EAD53D /* helpdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C466F32CCBD13DBC87285B3D /* helpdata.cpp */; }; - 020BBB417207393F8C60EFB6 /* LexFortran.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86A0C3603C8A343AAFBD2CE0 /* LexFortran.cxx */; }; - 6F8129E317EE3486A89D8548 /* LexSpecman.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */; }; - B1E30CF6CFA932F5A3DBA951 /* docview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB634FD597793A74B3B3AA7F /* docview.cpp */; }; - AC6AC589EFB233C7B65A3225 /* overlaycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 303ACF199BE431BD891C9301 /* overlaycmn.cpp */; }; - 1EDED99760B23A1999E75C13 /* imaglist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */; }; - F910C74E48823E0BA7F7885E /* graphicc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BACAA6CE4A0934459F26B27C /* graphicc.cpp */; }; - 9F70A89D00B03D4894AF7638 /* validate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01BA6D45FE4C381493EB4372 /* validate.cpp */; }; - 0164A65CDB7A334A8E9AA4C0 /* dynload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */; }; - AF1E3338E892336E924AF632 /* pickerbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */; }; - C05BDB0B5F5A33A9A57FF012 /* m_links.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 080597FC0436378E96EDA94B /* m_links.cpp */; }; - CD241361D4693785A0B8939D /* StyleContext.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */; }; - 171F09F8DD553FA5B4B3FAE3 /* modalhook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E7C516E2453A269280A404 /* modalhook.cpp */; }; - E4B826CE70283D999CB591F3 /* listbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B99CA41708513A599AE275A2 /* listbox_osx.cpp */; }; - 6CA1BAEBBDB4336E9E201F95 /* protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */; }; - 88E56F89A0DA3AD386F05FD2 /* pcre2_pattern_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */; }; - 64A716F87A5136F9A790EC5A /* webview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DA80913C0E33144A42BD30F /* webview.cpp */; }; - 21F74D4D4D84375AB155FD5B /* stattext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95186FEF3DEF39D8B1157BD5 /* stattext.mm */; }; - 825EAD51920B387DB4F8C426 /* LexAsn1.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A46D50BEBF523B3F88831086 /* LexAsn1.cxx */; }; - BDAB44F5D017395D9D3A1F25 /* frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3019BA65DD73F30A865365F /* frame.cpp */; }; - B640A8A74D973A8FBEF63917 /* LexConf.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 04082EC1C91334379425802D /* LexConf.cxx */; }; - 9D003890CB7035A298DB7056 /* LexLua.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5145561C78303EEE9F827962 /* LexLua.cxx */; }; - A423177BBC0F3BE5A436B4B7 /* propgridpagestate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */; }; - 39FB197CF9EB3D76BE0723D0 /* LexBash.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 78D7866F95C73A28BB540606 /* LexBash.cxx */; }; - 7EB83F6375BF3E73ABE56C41 /* jcarith.c in Sources */ = {isa = PBXBuildFile; fileRef = AA234ACC79743DA797601AA6 /* jcarith.c */; }; - 3357BD0518F538E9A949F887 /* xh_tree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */; }; - B5470121BB4B35DE9C4836DB /* jdcoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = F1A6F3936A0D31CBB58082BA /* jdcoefct.c */; }; - DC5F82733F733D98B39DE74E /* LexDMIS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 910D00F1C9143C6D85C24E7C /* LexDMIS.cxx */; }; - 5F78DB0417BF3CE1B4E35C7F /* stackwalk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA2520F427493A22A70A5C09 /* stackwalk.cpp */; }; - B97C178B47173E6AB0CE577B /* CaseConvert.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 274A156457C63EC5801029C2 /* CaseConvert.cxx */; }; - BEA90F2C6BB93143958F899A /* propgridiface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */; }; - 3EB6B8528A0D3B6CADAE1257 /* archive.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02D2E8B5C89939CE90B99E2B /* archive.cpp */; }; - 7D615329368D32709CEF4B58 /* headerctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7273A7E255323EB3B391D997 /* headerctrlg.cpp */; }; - 15048519756B33959B15B161 /* floatpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A881F49ADCF33C299B041584 /* floatpane.cpp */; }; - 14F303FD6B5F383DADDFD788 /* xh_dataview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 616466F521DB3ECAB304289F /* xh_dataview.cpp */; }; - CF3082BA1ED232F4B904BD14 /* stdpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */; }; - 697FC496816F33568E1FB5A6 /* LexTCMD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1CABAEA3B48333CB88B40F08 /* LexTCMD.cxx */; }; - 682403FBBD4E3D5E88159502 /* CellBuffer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */; }; - 2E4747E0736B30569ACD5422 /* textbuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 701B84EE7C043B539FF5195A /* textbuf.cpp */; }; - F1E4D7CA634E33808AE3B523 /* fontenumcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 373242CD08F330208A7CF438 /* fontenumcmn.cpp */; }; - A423177BBC0F3BE5A436B4B8 /* propgridpagestate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */; }; - 20BEEFFA08F3396791596870 /* dlunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA2D9F325F833C408657E7B7 /* dlunix.cpp */; }; - 96B507455762391688B5E500 /* xh_listc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */; }; - EB206A0264AD3CAA9F68B8FD /* pcre2_convert.c in Sources */ = {isa = PBXBuildFile; fileRef = BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */; }; - EC3D181D65F33E09A675FFF3 /* addremovectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 964578C24B9F390AAD08576E /* addremovectrl.cpp */; }; - 5ED54DFAE28533108C08DF2A /* pcre2_extuni.c in Sources */ = {isa = PBXBuildFile; fileRef = F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */; }; - C1DCF69200593986A8C606A8 /* hidjoystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018B15DE6F3A3D49B9CDE9DE /* hidjoystick.cpp */; }; - DB73248401573A5996D8E68E /* jcmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 664736BDE465350C9C4750E9 /* jcmarker.c */; }; - 78E15D8200F635529F396099 /* LexBullant.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6718204F4700318E89EAC906 /* LexBullant.cxx */; }; - 319EA32592DA3C74B86DDE00 /* wxcrt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FC98E2305230E2990471E3 /* wxcrt.cpp */; }; - 91BDA5B04CF33C9AB7358B8A /* timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69F098E47EBF34368ABAE7ED /* timer.cpp */; }; - F0D892C2618130FEAD46BB86 /* panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00969CBE3B8F32C78C195619 /* panel.cpp */; }; - 88A43B1C5A7438838DE97B94 /* tif_luv.c in Sources */ = {isa = PBXBuildFile; fileRef = 66FDA882451239EA8DF2E0B5 /* tif_luv.c */; }; - 9F608A33D52D327FAA295624 /* sckfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56653FACC7D13804A70556AD /* sckfile.cpp */; }; - F38202271C6131908C358DEC /* mstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC3D1E222FD93A69B1D1366E /* mstream.cpp */; }; - D6B73239BF0E32288161679D /* platinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97FFB03FF6793506B246BAC6 /* platinfo.cpp */; }; - 07EC76232BB3343FA5CB90B0 /* LexAVE.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */; }; - 7BD3887F603E3704969A54E1 /* pcre2_chartables.c in Sources */ = {isa = PBXBuildFile; fileRef = 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */; }; - 86AED49CEAFC3637B1F10537 /* dialog_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */; }; - B0FD1B96EAE635AFBFCF2C92 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C045 /* secretstore.cpp */; }; - F569D7A3F0E038E9B4CC2A78 /* xh_comboctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */; }; - 403FBA20CEFE3EAFB4E6B905 /* dir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7332A03D93D3DABB050615D /* dir.cpp */; }; - 84997126352137E798CD258B /* spinctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59572A234F0636D78BFD9F6B /* spinctlg.cpp */; }; - E3136EF5DD843ACE886E2869 /* tif_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = E79B2D1F630036129B9677A7 /* tif_dir.c */; }; - CDC0FF253B503BA19693D68D /* xh_propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */; }; - 4DD98A9436C83CF3B9425A79 /* sysopt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */; }; - 5388468A6F8F3141B25CD400 /* treebkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7925E38823563BCDB5565DCF /* treebkg.cpp */; }; - 5792675690843C6AA4125A72 /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77F5E7BCD9B2307D8DBCC052 /* font.cpp */; }; - 0E8A0B8FA40E365690C20231 /* gzlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7395814D42CC38F6B8CD81B4 /* gzlib.c */; }; - 51D133EC44F830588FEEAEC0 /* LexHaskell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */; }; - BA9F0BBD57F63FD29E484FD3 /* LexScriptol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F1B41B0F10C3DA38188C239 /* LexScriptol.cxx */; }; - D070C3BE95483FE38BABA1BE /* region.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00DA3D3EEF5E305CA73A1871 /* region.cpp */; }; - 5116CE330E333724A66982E4 /* rearrangectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972BC9B2B0D438EFB12BCE1E /* rearrangectrl.cpp */; }; - F2F2963D8ECC32D39FDBF101 /* tif_write.c in Sources */ = {isa = PBXBuildFile; fileRef = E9B992CB6C28339FB0CA5E27 /* tif_write.c */; }; - B1775EF7C72233408044034D /* radiobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 773D91F8280434519BD167EA /* radiobox_osx.cpp */; }; - E63364B7E727383BA8E2B7ED /* datstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81B3DFBB73573FFDBD320334 /* datstrm.cpp */; }; - 9F70A89D00B03D4894AF7639 /* validate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01BA6D45FE4C381493EB4372 /* validate.cpp */; }; - 219304C9DDA33E9AADB515DD /* datetimectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D049F49C75043592B7E318B3 /* datetimectrl_osx.cpp */; }; - 3C394FBD47B6310C80577E3B /* LexMMIXAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */; }; - 205520440CD13C0AB9E8915A /* anidecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE959EC7BFDD3A628E856404 /* anidecod.cpp */; }; - 0BB3BF0909A134BA93CF5620 /* xh_richtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */; }; - AA54EDC7C94730D1A31F059F /* LexCharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */; }; - 7B642B17F5D23F4F8ED38BB5 /* graphcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BB59DD194923D6399087A75 /* graphcmn.cpp */; }; - 9FD99E06F6613A1A958FAF6B /* jdmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */; }; - 815AE3FED68330F4933AA16F /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = C94DC3402FAE3C4FA776DEEA /* window.mm */; }; - D13596A4E3CD31DE810061A1 /* imagjpeg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6876262846EA3569B36D92E9 /* imagjpeg.cpp */; }; - BEAC2449AFA7304989BA301F /* fontpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */; }; - 0A406D2D1ADA343891E3664D /* powercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */; }; - 00F1531404F832C6AE0748F3 /* spinbutt_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */; }; - 4CF9BA40653C3153805D88AB /* arcfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C513377E9E303F778BA9D7ED /* arcfind.cpp */; }; - 68C300D096BF39239876D043 /* utils_base.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2ED0C0702D2734D9B08FC31D /* utils_base.mm */; }; - 7C52E7CC12463941B0E4D402 /* statbmpcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */; }; - AAABEE399008310A8BC9BE43 /* imagtga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7029BB5751398AA02D8C24 /* imagtga.cpp */; }; - 7C20B79175D33852A2E9DE85 /* LexRuby.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8734C52C7559310784396455 /* LexRuby.cxx */; }; - 22C76BF2C3E331CD87657E6E /* LexNsis.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1BC0322549563787A21CE8F1 /* LexNsis.cxx */; }; - C2D45B334BE03F6C941CA042 /* utilsexc_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95E2B80B2D7033808504DA8D /* utilsexc_cf.cpp */; }; - 311840186794346AAAA42092 /* jutils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */; }; - A2769D1659AE3CA3B58C2CAE /* wincmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */; }; - 2047544E505C3BA38F0144E7 /* pcre2_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = B60497805D37375EBFCF3D98 /* pcre2_tables.c */; }; - F910C74E48823E0BA7F7885F /* graphicc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BACAA6CE4A0934459F26B27C /* graphicc.cpp */; }; - 39CC380F801F3EE984523275 /* auibar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A4437E9697300390FDE14E /* auibar.cpp */; }; - F22C401903993639AE05A297 /* xh_stbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 147800BBCB80346798B35D75 /* xh_stbox.cpp */; }; - 02E8F1195B653D26AAA89464 /* listbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */; }; - BCDAE378D03E37F5994FB9C5 /* XPM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C25521AF59B9324EB2809C73 /* XPM.cxx */; }; - E2A73751CECF32A68FFAEE83 /* panelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E9B2C076673C87B4218A01 /* panelcmn.cpp */; }; - 56E1ED31F7CE38978F4A7CA0 /* LexProps.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DE0102314288305D830B9EFE /* LexProps.cxx */; }; - 2563C775427E3D68BD384F2F /* richtextstyles.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D30617843F33310089C1F77A /* richtextstyles.cpp */; }; - 8966F77CC97B3ED780C8F137 /* xh_bmpcbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */; }; - 24A5A71C79733E9CB913C5B7 /* LexPB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8744F2C80ECF375999195935 /* LexPB.cxx */; }; - 6D723C987BFB39B7B887DCB1 /* Editor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DA5E95D498C53A808A8E2EEB /* Editor.cxx */; }; - DE43350F6C9D3148A64F0AF9 /* art_internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C4649974D8B3A109D1BF145 /* art_internal.cpp */; }; - D72D99FC424337CF9EDC2042 /* props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C20E46A504113C899B9DD9B7 /* props.cpp */; }; - 539B586AEAD630A79FC12ED0 /* sstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46EC1508C063C8395CE7A95 /* sstream.cpp */; }; - EB52C6A915943813932944FF /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04B /* control.cpp */; }; - 66584BC871303041BA622DE1 /* m_fonts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1F3C70512D93501B0478F3E /* m_fonts.cpp */; }; - EB52C6A91594381393294500 /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04A /* control.cpp */; }; - 90BC965B1A1F35A3B2C9D1CB /* Decoration.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BF1C44D726E63B18A98006EC /* Decoration.cxx */; }; - 9A178ED42D96329D8CBF9B89 /* tif_predict.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */; }; - B6891F848CA0325EAB6D1374 /* textentry_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777385D10CCC350C90F02824 /* textentry_osx.cpp */; }; - BA7B12396B873FDA8F3A2749 /* xlocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 418AD9241B673308BE31DC06 /* xlocale.cpp */; }; - 595DCB164D55342EB86604ED /* hashmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6636144CDE83E8E85270FAF /* hashmap.cpp */; }; - B59FC7345C383D9099391AC5 /* mimecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */; }; - 7C5552FA058034238F485901 /* dbgrptg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 182C8AD4F822375495795B43 /* dbgrptg.cpp */; }; - 793F542F20AB31F6AF736796 /* tif_open.c in Sources */ = {isa = PBXBuildFile; fileRef = 1731A6096BFC3A468AB4755A /* tif_open.c */; }; - 5F78DB0417BF3CE1B4E35C80 /* stackwalk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA2520F427493A22A70A5C09 /* stackwalk.cpp */; }; - 6A10511265493FA2BB79CE4E /* propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC93D1DE277395592610085 /* propdlg.cpp */; }; - 893BDA491EDE3A0E91FADE41 /* nonownedwnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */; }; - 91364FDD73053139BBAA313B /* Accessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D2DE67C976CF3004A8FE883A /* Accessor.cxx */; }; - C1CDD035AA393ACC9E202C03 /* minifram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693F731B7D1730A79485F9EC /* minifram.cpp */; }; - D997FFC948B73FDA892DB531 /* jdsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCF47A161B3E08B19BFE14 /* jdsample.c */; }; - F07D84D124F23E7FA11CF148 /* extended.c in Sources */ = {isa = PBXBuildFile; fileRef = 033B94A9AC8A3370A794503F /* extended.c */; }; - A486A28E216D320AB57452D4 /* lzmastream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */; }; - 1937FBA0A0DD32A8A743CFE1 /* valtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8701E1CF2B352B945C17E5 /* valtext.cpp */; }; - 4CB3626391CE34D4B1F71AA0 /* jdatasrc.c in Sources */ = {isa = PBXBuildFile; fileRef = DECAF5DD80383A2CA76EB383 /* jdatasrc.c */; }; - 96B507455762391688B5E501 /* xh_listc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */; }; - 37715483D08335B790FFE059 /* filectrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */; }; - 03035C5CE4BC3288A5A18426 /* choicdgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */; }; - 30AEDF41EC5C374DBF96EFFC /* slider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B862D1027C4367BBF44420F /* slider.mm */; }; - 1C544DADDA6F3D62A5E25E93 /* LexerSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CF502E0E4D853CBBBEC885EF /* LexerSimple.cxx */; }; - 923F4797A73A3BDD87BBD1E2 /* LineMarker.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AF3DF03795153E039B8F1F87 /* LineMarker.cxx */; }; - F7D10B6E0CBA32EFAF79C77C /* xh_dirpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */; }; - 8FDC800D873F30E282691832 /* pngrtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 87799D3168B43EB7B5686826 /* pngrtran.c */; }; - A8476B3CE46B3FD4A2832F00 /* LexNull.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */; }; - BAA75384DA82370298672333 /* helpctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E433D1700631A8907B8227 /* helpctrl.cpp */; }; - B6C364CB4AE33708A862B4B4 /* srchctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D46A36564C78312CAC538E93 /* srchctlg.cpp */; }; - 67EBCE5FA5FF36349ADF0916 /* jdapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */; }; - 03BF1610E2FC3BD5ACB754F0 /* bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */; }; - 2C53221A318E37529E6460EC /* tif_fax3sm.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */; }; - EAA469E1A0CC33E4A21A3F7A /* gaugecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */; }; - 9A83D365AD1F37FA9C7030C2 /* matrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF330EAACFA53877BE289896 /* matrix.cpp */; }; - 5F2C2A46781739D897CF293D /* xh_chckl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */; }; - C3AC94EA13C1352790BF5FF8 /* listctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9016355F66D3125919E017D /* listctrl.cpp */; }; - 187F921A95DA3594B0AD980D /* gridsel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26381308E32A3A179E7A9B40 /* gridsel.cpp */; }; - 11818B68C5263EB68D708846 /* jdtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 4549845C0751356A907C23E0 /* jdtrans.c */; }; - 702616D38A5B345D9CC87114 /* xh_bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3116006345D833509865FF7F /* xh_bannerwindow.cpp */; }; - 2E059BFE8E3B3D9299D5596A /* textmeasure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B31409EC6532FC83B0B957 /* textmeasure.cpp */; }; - 4442EA28B0B3373B9A2D0864 /* collheaderctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */; }; - 46CE8B53D2663927AAE5DF9E /* xh_treebk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */; }; - 51F44CB1D9AD3CBDB52EE93D /* LexDiff.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */; }; - 7F77E347E1243D77A666FB43 /* clipbrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */; }; - 4CB3626391CE34D4B1F71AA1 /* jdatasrc.c in Sources */ = {isa = PBXBuildFile; fileRef = DECAF5DD80383A2CA76EB383 /* jdatasrc.c */; }; - 23479484EC143D34871550C2 /* textmeasurecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */; }; - 8A9C3C04D00334418C3446FB /* dirdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0B0DC125AFFC322E8E496262 /* dirdlg.mm */; }; - BB6FE851028C3DE7A070C213 /* convauto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20B922D61CDB3CCEB59A5194 /* convauto.cpp */; }; - 23CECD8647C037E0B41DF0D5 /* LexA68k.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7020ADB5D3E0375E875B418B /* LexA68k.cxx */; }; - 7D615329368D32709CEF4B59 /* headerctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7273A7E255323EB3B391D997 /* headerctrlg.cpp */; }; - E1A20811148F31D289AF98AF /* xh_sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */; }; - 67CE7065EE593DAAA2CE4489 /* LexEDIFACT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */; }; - F016C51053373E658ED4C9AA /* helpext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF376BC55EA73F5FB7328142 /* helpext.cpp */; }; - AAAB5DF8E60736D88273DCFF /* strconv_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5F9383D1CE931499F339D85 /* strconv_cf.cpp */; }; - 324B2BAC54553D45B3C56BFE /* LexOScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */; }; - 07C769F64665317BA3E1AC90 /* tif_jpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */; }; - 4040AE89BF9F34668091064A /* dragimgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A67053D16D63C588E555C84 /* dragimgg.cpp */; }; - 2DF74933A90E34129F1BEF73 /* dnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA72410F615B3A78A6340532 /* dnd_osx.cpp */; }; - 805CCAE64D023561AD334B54 /* popupwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 530DC2E26BF2313E8702AD43 /* popupwin.cpp */; }; - 41943A8F82723027A151A468 /* fileconf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */; }; - 570FA90F526E3F25A8E8FCF3 /* tif_read.c in Sources */ = {isa = PBXBuildFile; fileRef = 64B25B87203E3464BCDD277D /* tif_read.c */; }; - AEB9099819B33F4A8AAB9F55 /* radiocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */; }; - C5419BC04D6234B5A8307B82 /* xti.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25C86D3D4839343BA1D8BDEE /* xti.cpp */; }; - 6E1FD7D3DEF03748AEE3A29E /* listbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = D324650313003AAD96E12962 /* listbox.mm */; }; - BFD3BFBDC8DA3B1EAD141F96 /* LexErlang.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A1276C0E5D48337489DEE8DF /* LexErlang.cxx */; }; - 8F372080E11E382EA0B5ED10 /* rowheightcache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */; }; - 745C39E90E8C3C08A887B51C /* msgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */; }; - 3DA70DE666D838A59642A4E7 /* LexAsciidoc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */; }; - 0FA6E1E47F123FF4A902E4D3 /* xh_odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0080254545B9383ABDF2045C /* xh_odcombo.cpp */; }; - D6C3421AD2A537AAA2F0AB80 /* file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 168DB301ACC736FF96D7F581 /* file.cpp */; }; - 1569BB4728693B6285623A23 /* pngerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A0650754DC2358CA5933B28 /* pngerror.c */; }; - 242E1D1A9BF331BA918134EC /* pngwtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 0964797530CF3FE7B8DB6242 /* pngwtran.c */; }; - 76A83A293C9F33BCB7DFDE27 /* jdatadst.c in Sources */ = {isa = PBXBuildFile; fileRef = 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */; }; - C3C19BD343B235F9909D495A /* xh_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C55AF552EE6931E8BFF7281B /* xh_aui.cpp */; }; - E05B06A7FEEE32D5AD87EA4F /* xh_editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05310A868F0B35999C568681 /* xh_editlbox.cpp */; }; - 6F8129E317EE3486A89D8549 /* LexSpecman.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */; }; - BEA90F2C6BB93143958F899B /* propgridiface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */; }; - D6B73239BF0E32288161679E /* platinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97FFB03FF6793506B246BAC6 /* platinfo.cpp */; }; - 00F1531404F832C6AE0748F4 /* spinbutt_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */; }; - 5557AA36FBCC3ED9A5F5751B /* editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D90D14874FD38079835AF0B /* editlbox.cpp */; }; - 523FB2A8435A3324A8E1B371 /* PerLine.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9389DAF8B91030B7AAB029FF /* PerLine.cxx */; }; - DE43350F6C9D3148A64F0AFA /* art_internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C4649974D8B3A109D1BF145 /* art_internal.cpp */; }; - 3CDE2B6BF88D326189F069BD /* accelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A436B55DC44E3827A757A6D8 /* accelcmn.cpp */; }; - AC0B0C52922B30188AE95E94 /* tabart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51054B41BFD83E97BAF76D07 /* tabart.cpp */; }; - 80665EEAE8613DF8A93A7986 /* utilscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4188821BBA833CCAA678B234 /* utilscmn.cpp */; }; - 3141FEDED0943BD6A2EF858F /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA93D41B11683E758D456531 /* log.cpp */; }; - 512AB7B82D57387EBB7BEE28 /* LexFSharp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F8AD617806563DE394C15922 /* LexFSharp.cxx */; }; - 49FE0228D8FD3F7AB64A4432 /* bmpbuttn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */; }; - 7B642B17F5D23F4F8ED38BB6 /* graphcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BB59DD194923D6399087A75 /* graphcmn.cpp */; }; - 9D4B67A357D23B5283CA8D98 /* clrpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB8A747FB60239B9AB710264 /* clrpickercmn.cpp */; }; - 7EF89F935314301381802FAC /* filectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2334539088B036BEAB230D1C /* filectrlg.cpp */; }; - 6C7C1CC506CB329FB2D086A9 /* LexBasic.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B6AADC1056E03A3B80C20C5B /* LexBasic.cxx */; }; - 9D003890CB7035A298DB7057 /* LexLua.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5145561C78303EEE9F827962 /* LexLua.cxx */; }; - 522E6CF2A62F34259BCE2DE3 /* tif_flush.c in Sources */ = {isa = PBXBuildFile; fileRef = 305614D19CF23CB2B14A5B2E /* tif_flush.c */; }; - 6978D7A20DA93A329DDD1383 /* socket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40CE02524DD4385AB2C3DF95 /* socket.cpp */; }; - 9564A6968D66325DAEADEBA4 /* dcgraph.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */; }; - C5A8DF376BB13A2A8290C2E6 /* xh_unkwn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */; }; - 0E92CEF677AA32C9A8CDA0A8 /* checkbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */; }; - 1E4832B42B95308299B767BA /* jdmerge.c in Sources */ = {isa = PBXBuildFile; fileRef = 0890779C662C35889A8C6C2E /* jdmerge.c */; }; - 7FC3D17B3C853FE58841002E /* timercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7195E665E0F233839B967FC9 /* timercmn.cpp */; }; - 551BF168445E3D7BB54D0175 /* LexPS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = EDB48813110636DBA045BF3A /* LexPS.cxx */; }; - 0743AE8613F535A0ABB79316 /* intl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC8BB1AABB3D393EBA527060 /* intl.cpp */; }; - E7F35B834A163C67B65176C6 /* tif_dirwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */; }; - 383A6993E90936D39A5F12BE /* headerctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */; }; - DF861EBD9C483E79ADF98602 /* CharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */; }; - 1DBDF75500D73A3098015E7F /* cfstring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */; }; - BDB8EF0E0DA03693BFB77EF7 /* accesscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8555204EBA8930809B732842 /* accesscmn.cpp */; }; - D4EC9DB5F8DF319EA0FD26A4 /* LexVB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F633793051F371F94C27530 /* LexVB.cxx */; }; - C32EF2EC1A103BC3A6254322 /* xh_spin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950D51915EF83B57B5E8306F /* xh_spin.cpp */; }; - 4DA9DE940E043C58BEACBB57 /* UniqueString.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */; }; - C0CDA289E9EC3E20BE70B2E6 /* choiccmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24930711031D35288D28B04B /* choiccmn.cpp */; }; - A52A7D2FEB1434E29C64582E /* RESearch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E145FC31ED523B4AA5080A61 /* RESearch.cxx */; }; - A80D00249A693F43A9CBE777 /* rgncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63867276260C3F4A980E83D8 /* rgncmn.cpp */; }; - 438EAEA4B30C325C827F6197 /* xh_fontpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */; }; - 00E12455C98032E18378EE5E /* pcre2_newline.c in Sources */ = {isa = PBXBuildFile; fileRef = A208BFC0C8C43847A9620ADA /* pcre2_newline.c */; }; - 346D274E17673A01B0177D5B /* sockunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7661E9E09A397790ED9545 /* sockunix.cpp */; }; - 758629DA468A3EF7B1C15241 /* gifdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */; }; - 9744994E8A813AA6938A7CE2 /* textcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */; }; - 1E4832B42B95308299B767BB /* jdmerge.c in Sources */ = {isa = PBXBuildFile; fileRef = 0890779C662C35889A8C6C2E /* jdmerge.c */; }; - D66F5D4D204B3B789C7F76B9 /* fontdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18044326B5B13A98A49732DD /* fontdlg.cpp */; }; - DC6B669C9A78398F914AEE53 /* fontutil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FF661188B563D27A11F5716 /* fontutil.cpp */; }; - ACD644CFA85A3B70A3E3B118 /* jcparam.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F41EDEB298538CC86FF6DC1 /* jcparam.c */; }; - 2B4507BC09563DB5B0F16596 /* tooltip.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31EFBD7D10003A5187348B35 /* tooltip.mm */; }; - 0E92CEF677AA32C9A8CDA0A9 /* checkbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */; }; - 7DEC57D6CE8232A09EF7421A /* PropSetSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */; }; - A3321FE2A87D3BD69E0BB00A /* notebook_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5248A45AB113341EAC361910 /* notebook_osx.cpp */; }; - D948CC99521633338B24E2F6 /* LexHollywood.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */; }; - 61FD5E0E28F732E8AB1729F8 /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6AB648BC5173104A96CAE66 /* xml.cpp */; }; - 33ED014A7FF7398794E6E4CF /* xh_split.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */; }; - E515EAE375AE390688CBF8D3 /* pngtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B32A13D5B3336098B1B9765 /* pngtrans.c */; }; - 07158EBC05A637ECA9DC7B4F /* utilscocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */; }; - 9564A6968D66325DAEADEBA5 /* dcgraph.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */; }; - 8F949B9010863F66A58FFEF1 /* xh_activityindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */; }; - 2989056891153968B372EA14 /* pngwutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 45D7558DF5E03A2EB41883F0 /* pngwutil.c */; }; - 0730A107A2B935A9923C8EF2 /* filehistorycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7B3307E56B332769901E99F /* filehistorycmn.cpp */; }; - 6167245C417A32179EC37D2D /* textfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0903EE9B3793303285FF96E3 /* textfile.cpp */; }; - EC3D181D65F33E09A675FFF4 /* addremovectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 964578C24B9F390AAD08576E /* addremovectrl.cpp */; }; - DA0FA502405A37B2A5698D20 /* config.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FE0B33481283D3493613B0F /* config.cpp */; }; - E17048DEEF1138318314F1D0 /* pcre2_valid_utf.c in Sources */ = {isa = PBXBuildFile; fileRef = FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */; }; - 07C769F64665317BA3E1AC91 /* tif_jpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */; }; - 6BC8B3EDB3AE3EF4BACFC08A /* ContractionState.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5219A792C6A736F193D4A82F /* ContractionState.cxx */; }; - 743BB23211B336A6A0F26E57 /* jcapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = F83172EE2DAE352FB969D4F2 /* jcapistd.c */; }; - 5E80C103F0853788A2B43E5E /* LexX12.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 17A8A93EF3C03546BE19F43B /* LexX12.cxx */; }; - A569A33A2097316D8110C2C2 /* toolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */; }; - D8ADDD24BEAC3D94B3388D40 /* LexCOBOL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */; }; - B5C7FD8C27F43F3289A77FC9 /* utilsunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */; }; - B559E894684A38238CAAA115 /* dirctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E110907DDC13305E88B90086 /* dirctrlcmn.cpp */; }; - FDE14459359334DE9FB03ED6 /* xh_scrol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66411D54BAD338498AC59401 /* xh_scrol.cpp */; }; - 502D7B786EAE383B9546F320 /* LexRust.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 24BD2EF635673E819B8406CB /* LexRust.cxx */; }; - 7C9EAFF4A0223EE597E0E39E /* xh_srchctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */; }; - 5F57C4908E5038D19D68ED7B /* gallery.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */; }; - 221DC4F6678A3EC5ACDDEA50 /* statbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */; }; - 98AD7D0478BA36249B03C623 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B9586328A1F3C4BA0390AA5 /* time.cpp */; }; - 6944AC98F6F83E3D983DABD3 /* tif_getimage.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */; }; - 89046455F49D3D75A21C9DB8 /* imagfill.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 137E01C362E134449BF966ED /* imagfill.cpp */; }; - 37749AC3468836FC857BD0D6 /* checklstcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */; }; - A139B846584436BCBEBAE3C0 /* grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76337016F2CA3C85831702E6 /* grid.cpp */; }; - E7AF3BF2B3473AD9BE66D1A2 /* xh_clrpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */; }; - E49F0D43B5A63EF1A57A7112 /* fswatcherg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */; }; - F34D240EB4513FE996179183 /* xh_mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */; }; - B0E94A59C83637C09FAAE71D /* app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 757B31FCCA1F381C95B30DF8 /* app.cpp */; }; - AB58406CEBA13BC4A2A83B66 /* printmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */; }; - 22EC132AEF863BFBAA6EDEC3 /* LexPowerPro.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */; }; - EDCA35F1555F3509895CCA69 /* textctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */; }; - C43A9650A9DC3372AB8F5F79 /* jidctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */; }; - BAA75384DA82370298672334 /* helpctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E433D1700631A8907B8227 /* helpctrl.cpp */; }; - 8AB7191F7CB838FC8337C48E /* xh_statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FADE850169F7347F83FE1499 /* xh_statbar.cpp */; }; - EC3A1C620D323B5590AABF02 /* module.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DB43FAB1E563B02ACEFF647 /* module.cpp */; }; - 94B1C88076793400810FAC30 /* png.c in Sources */ = {isa = PBXBuildFile; fileRef = AF26BAB1F4733114926F1724 /* png.c */; }; - B0C44C3054CB3E0590DDCBDC /* LexJSON.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */; }; - EAA469E1A0CC33E4A21A3F7B /* gaugecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */; }; - 61FEDBF2D47A3B4E861F8296 /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F5 /* sound.cpp */; }; - 66FD099CE5A338C18329FC37 /* LexAbaqus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CD72950967F33809931D4968 /* LexAbaqus.cxx */; }; - 0E8A0B8FA40E365690C20232 /* gzlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7395814D42CC38F6B8CD81B4 /* gzlib.c */; }; - AD4A533C4E1633598A6D5C70 /* textentrycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F63BF9430CE371DA04AC900 /* textentrycmn.cpp */; }; - BF9B151DC0543E37878F8B9B /* stattextg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DE635F30F3935099AF1486C /* stattextg.cpp */; }; - 064908348009398C8EA8497C /* fontpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */; }; - 31380AD4F5BD38A6B9212FE1 /* LexR.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7255468B6D5F3D8697994A53 /* LexR.cxx */; }; - 438EAEA4B30C325C827F6198 /* xh_fontpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */; }; - AE84BC9A1CCA3ADA9C483950 /* xmlrole.c in Sources */ = {isa = PBXBuildFile; fileRef = 59C6B9849FF6325E890942EF /* xmlrole.c */; }; - F747991E5C973F9B8C9D800B /* fontcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */; }; - F0D892C2618130FEAD46BB87 /* panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00969CBE3B8F32C78C195619 /* panel.cpp */; }; - 8FC1C07FEE793897A1E96D25 /* statbmpg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA2119A7C67D37B290C17989 /* statbmpg.cpp */; }; - 80665EEAE8613DF8A93A7987 /* utilscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4188821BBA833CCAA678B234 /* utilscmn.cpp */; }; - 2102C23970FB3F22AB46A59A /* LexTADS3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A284E855892F3A9E9E19E854 /* LexTADS3.cxx */; }; - 07EC76232BB3343FA5CB90B1 /* LexAVE.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */; }; - 0742292656623EC481B34369 /* paper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87D973CA8D673267BD0844D3 /* paper.cpp */; }; - 73AA68AB9F1236ED9F1FBB2F /* metafile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2BB2949CC0B387AB6879539 /* metafile.cpp */; }; - F5D2146C94E733FAAB6D286A /* threadpsx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB466912FDA23F8B87A00A3C /* threadpsx.cpp */; }; - C425A172B0AB3EBD9AC9A590 /* ustring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B63EBEE1A04537E7887E9FD0 /* ustring.cpp */; }; - 567A32722BA33AEE9FF93D7C /* fs_inet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7581D7140293BAE88E43DBE /* fs_inet.cpp */; }; - 5A8638C234133824BDF93BC0 /* gbsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */; }; - 1AF2B2346C9639DAA4D15F31 /* numdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */; }; - 60706F8836A130A2AF282FE1 /* fontutilcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E00E14795F23A8392713A26 /* fontutilcmn.cpp */; }; - 335DD610974A33D4B6581E2B /* colourdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */; }; - BB6FE851028C3DE7A070C214 /* convauto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20B922D61CDB3CCEB59A5194 /* convauto.cpp */; }; - 4DD98A9436C83CF3B9425A7A /* sysopt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */; }; - 57AE7FCF768F3965BD39B47C /* m_span.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 727F25F832AD32D4B12D8E39 /* m_span.cpp */; }; - 60706F8836A130A2AF282FE2 /* fontutilcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E00E14795F23A8392713A26 /* fontutilcmn.cpp */; }; - 61FD5E0E28F732E8AB1729F9 /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6AB648BC5173104A96CAE66 /* xml.cpp */; }; - 9C1F073349FD393E9220C0D3 /* combog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBD7B44E33373BCCB60FC11F /* combog.cpp */; }; - CE17002B5B7E37558274763B /* xh_choic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */; }; - 7181709A030D3749AB355B74 /* xh_radbx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F43AF44465B335479752116D /* xh_radbx.cpp */; }; - 2020EE3C45743B53BE8C7F38 /* LexCoffeeScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */; }; - 6C3A459236F736B8A14A13AC /* dialog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83B878A16ABC396E8C03A15E /* dialog.mm */; }; - 24A5A71C79733E9CB913C5B8 /* LexPB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8744F2C80ECF375999195935 /* LexPB.cxx */; }; - 8093A858CA9E3E9EA2D2185F /* jdarith.c in Sources */ = {isa = PBXBuildFile; fileRef = FA9DD56E399533A5BE7AAD16 /* jdarith.c */; }; - 309C0A78D45C3AB7B8778B59 /* pngset.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E463A493FD930DE80E58608 /* pngset.c */; }; - 5A8638C234133824BDF93BC1 /* gbsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */; }; - 9CA687845B3F30CCA44A89D0 /* choicbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */; }; - 84B3625464F732C3A79E1315 /* xh_bmpbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */; }; - 46F341B46F80376B962759F6 /* animateg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 580AFC66F3003582B43043B1 /* animateg.cpp */; }; - FE2DBCCC1D0B36A3BE4493C1 /* fs_arc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88F2BA2F0598342186A484B5 /* fs_arc.cpp */; }; - A336FD218BE63B19991CA515 /* ipcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C090A76B6F23E6481A27282 /* ipcbase.cpp */; }; - F46777ABE0743B04A1E1F0A4 /* spinbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */; }; - A3A898DA3114311EB7F02227 /* sckstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D784A32C094730FEAA391A9B /* sckstrm.cpp */; }; - 84382E5DB3203A73AC5EE390 /* xh_combo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0905A1EBD653F6D82395602 /* xh_combo.cpp */; }; - 3DE2CD678CEB39C2B1E09ACB /* power.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60DFD5962DE3379F801AF78F /* power.mm */; }; - 63F0C8EEDF4B3641878A8B4D /* dlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9051902662BE38B3912B34EA /* dlgcmn.cpp */; }; - CEC6430AEB6E3200BFA75D07 /* jfdctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */; }; - 1EDED99760B23A1999E75C14 /* imaglist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */; }; - 98F52D5224B438DFA8887E07 /* timectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741578B590AF3F2CABE615EB /* timectrlg.cpp */; }; - 8D6B0D48EA843E48AB0FE43D /* LexErrorList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2851EAAEE9B73FE8981912C9 /* LexErrorList.cxx */; }; - 36EB5D19429D3BD1A01001D7 /* framemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26632A254717372BAA4D514D /* framemanager.cpp */; }; - 7A7439BE66AA3771B4A89049 /* regex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB46BC22F6B23909A938C561 /* regex.cpp */; }; - 7BD3887F603E3704969A54E2 /* pcre2_chartables.c in Sources */ = {isa = PBXBuildFile; fileRef = 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */; }; - 692FCCABFB963696AFC1E123 /* gdiobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */; }; - 5C44446AB150378696CD6B3C /* bmpcboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */; }; - 91364FDD73053139BBAA313C /* Accessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D2DE67C976CF3004A8FE883A /* Accessor.cxx */; }; - F2F2963D8ECC32D39FDBF102 /* tif_write.c in Sources */ = {isa = PBXBuildFile; fileRef = E9B992CB6C28339FB0CA5E27 /* tif_write.c */; }; - E2A73751CECF32A68FFAEE84 /* panelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E9B2C076673C87B4218A01 /* panelcmn.cpp */; }; - D4C87E227A28391891D8908A /* filename.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */; }; - 55F01295F1D23805BCA12F15 /* srchctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14EF4B028AD63B4A885D29A1 /* srchctrl.mm */; }; - CD241361D4693785A0B8939E /* StyleContext.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */; }; - 1D7442C82B343F50A83B25B1 /* CharClassify.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */; }; - 056E30EA43753A7CB1AF8C9E /* strvararg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EEAD9C3E180305D8899441E /* strvararg.cpp */; }; - 0FBF7C9EDFB53D8DA0991B55 /* xh_notbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87662D69F0432FC96701280 /* xh_notbk.cpp */; }; - C0CDA289E9EC3E20BE70B2E7 /* choiccmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24930711031D35288D28B04B /* choiccmn.cpp */; }; - 5EE94793DFCB3BA281A4864F /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = FDB0E2D0966C3E408C4A2D3D /* infback.c */; }; - F4C0CEADEDC23610BF6983D6 /* artmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0665A40F3FC3F218074C63C /* artmac.cpp */; }; - 5B5B8DF915D438AA9FCEB39F /* imagall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FFDFB4D208F37569AC548B0 /* imagall.cpp */; }; - 67CE7065EE593DAAA2CE448A /* LexEDIFACT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */; }; - E7AF3BF2B3473AD9BE66D1A3 /* xh_clrpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */; }; - B37802B0A90133C68EF93DDA /* LexInno.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */; }; - 4D0BA8B9F72C3C31BC170CE2 /* progdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */; }; - 699D88EE2DAA3594B6606891 /* ViewStyle.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C133B838193A35ABBB803151 /* ViewStyle.cxx */; }; - EBA0986930DA3B59B2FB4F1E /* htmltag.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCCFF49F92B4323D9181CEDA /* htmltag.cpp */; }; - 0B4AF44DC0C439AD83CDC380 /* Indicator.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4FDE5A962FA234FA83A605AD /* Indicator.cxx */; }; - 46395873DB1C3B7FA81DE5F9 /* LexerBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */; }; - 0C7E2D5C22A232368F862A61 /* longlong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D7AF345E563587941BD868 /* longlong.cpp */; }; - 57B41B6BACFB3906ACD1BFB1 /* pcre2_jit_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */; }; - 0095084719983B878378CA28 /* pngwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 69A6CAF721E53E83B4820DE6 /* pngwrite.c */; }; - 0743AE8613F535A0ABB79317 /* intl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC8BB1AABB3D393EBA527060 /* intl.cpp */; }; - AAABEE399008310A8BC9BE44 /* imagtga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7029BB5751398AA02D8C24 /* imagtga.cpp */; }; - CCE4ECA9CE883B008065C6FB /* jctrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 725574EF98C4301989181CBF /* jctrans.c */; }; - F85D632964383F29BC3B30B7 /* tif_next.c in Sources */ = {isa = PBXBuildFile; fileRef = DFDC805DD3063C389F93642D /* tif_next.c */; }; - 745C39E90E8C3C08A887B51D /* msgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */; }; - 0A406D2D1ADA343891E3664E /* powercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */; }; - 5700B7F9166A37FDAA72E9DD /* dnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E53493CB84A30AE8C1CD721 /* dnd.mm */; }; - 5C5D0983160A36189A770743 /* webviewarchivehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */; }; - E104017EE1A4357DAF84E1E8 /* auibook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A298576700C33F018616E7BD /* auibook.cpp */; }; - 82FA4AA043213728AC266700 /* wizard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */; }; - 51437DC2AD7B3BEB9A53CE1B /* cmdline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE1C531185131A89EFF7FAF /* cmdline.cpp */; }; - 9065A4BE3D0433B88CF45571 /* richtextbuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */; }; - 44C6F11C7D1C399F99CF6BD5 /* xh_auitoolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */; }; - FFF5BFBE600E35FAB7EA522D /* fileback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC12D557950A3B0D89D9F2F3 /* fileback.cpp */; }; - 6C822F7F313734DCB51F44B9 /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81A30C745CA73E30B788B408 /* image.cpp */; }; - B198DA8239E9358A9D56B988 /* menu_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66C21CA37BF63893887FD91B /* menu_osx.cpp */; }; - A139B846584436BCBEBAE3C1 /* grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76337016F2CA3C85831702E6 /* grid.cpp */; }; - 41943A8F82723027A151A469 /* fileconf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */; }; - 1CBF34ACA39330028A5EA9AC /* xmlreshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */; }; - CBBD7B32DB7B3E24AE745D79 /* epolldispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */; }; - 3C665EA42ECC3E5990BA347B /* EditView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 430739CB8B95336ABB372EC7 /* EditView.cxx */; }; - B791BD05072B3B909A7093C2 /* dcsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */; }; - 060E095718B03EF98C75479A /* treelist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5190E3E110443FD29F2474FC /* treelist.cpp */; }; - 2E930206397C3EDCBD8206FC /* gridctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */; }; - C005C2D547E735E9B081658F /* prntdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */; }; - 97F60B2A9CE93BC8949A8CCD /* LexCrontab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */; }; - C2D45B334BE03F6C941CA043 /* utilsexc_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95E2B80B2D7033808504DA8D /* utilsexc_cf.cpp */; }; - CDC0FF253B503BA19693D68E /* xh_propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */; }; - 14C024EB327435A2A571DA2D /* LexKix.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B303230368143F37B2409DE6 /* LexKix.cxx */; }; - D9496139621533328AE727B7 /* pngget.c in Sources */ = {isa = PBXBuildFile; fileRef = 91300EB871CC39ECBC430D48 /* pngget.c */; }; - 0FFFFA2F762B3160955D1D88 /* gauge_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC28591B403B32B7AFCC079D /* gauge_osx.cpp */; }; - 1BCC944F5E0936F5830F03E9 /* windowid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B9B85572D0312BBF2878DB /* windowid.cpp */; }; - BAAB6B1D80A33843A8436B11 /* appunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */; }; - 795613831EC8332A83FF26E8 /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7E99B35A98D30818120B002 /* string.cpp */; }; - 1DD1888315513C24BF9C31B5 /* LexSAS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E1B538562B93D148F54645B /* LexSAS.cxx */; }; - 0654BCC3F0763C50A7949505 /* LexAPDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */; }; - 5F78DB0417BF3CE1B4E35C81 /* stackwalk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA2520F427493A22A70A5C09 /* stackwalk.cpp */; }; - 07158EBC05A637ECA9DC7B50 /* utilscocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */; }; - 028257C52CAE3038AA862C36 /* stdstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE16011AD6323AAC8616F973 /* stdstream.cpp */; }; - CCFD3144A22C3A87B67D88AB /* LexRebol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0D9828C9BD9633C1A8F4E0CD /* LexRebol.cxx */; }; - CB2E99E8FB7D3269A333A55E /* window_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26D7C4995D7A35A1854B533F /* window_osx.cpp */; }; - 99F7D7BFBB543A04AB728376 /* m_hline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */; }; - 75DCE6FF00E93C5D93970842 /* arttango.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9988CBB0772A3539970162FA /* arttango.cpp */; }; - 2315C8692C443ED1AE431728 /* tif_extension.c in Sources */ = {isa = PBXBuildFile; fileRef = AF7CE00168AB33C994374ABA /* tif_extension.c */; }; - E5D698D2606A304DA743AF93 /* grideditors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66426B63AA3E3A279936C034 /* grideditors.cpp */; }; - 32FECED7A7633C4D8C1BFBB4 /* toolbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24DF23D67E693D999B875101 /* toolbkg.cpp */; }; - CAF5C5BB129431B596C4C6C2 /* LexTAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 38891BF8F51E398F9082903F /* LexTAL.cxx */; }; - CB2E99E8FB7D3269A333A55F /* window_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26D7C4995D7A35A1854B533F /* window_osx.cpp */; }; - 9B3F9D04FB533D99B58BD51A /* jfdctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */; }; - 2315C8692C443ED1AE431729 /* tif_extension.c in Sources */ = {isa = PBXBuildFile; fileRef = AF7CE00168AB33C994374ABA /* tif_extension.c */; }; - 46327A3C356D3570B27C6701 /* Lexilla.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */; }; - 46E331300D8F349DB36AB50B /* imagpnm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC12B97F233B3B9494DA217F /* imagpnm.cpp */; }; - D95C5F467D37339AB8DF2355 /* tif_color.c in Sources */ = {isa = PBXBuildFile; fileRef = 149D299A0EDB3D998118EC93 /* tif_color.c */; }; - D997FFC948B73FDA892DB532 /* jdsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCF47A161B3E08B19BFE14 /* jdsample.c */; }; - 805CCAE64D023561AD334B55 /* popupwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 530DC2E26BF2313E8702AD43 /* popupwin.cpp */; }; - D9EE059D3C3C3C13AE4419F2 /* stattextcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54BD19211DBD388AA0DEC7A1 /* stattextcmn.cpp */; }; - 50D7E093424138C88BB50D27 /* jcsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 53D06E47477B3E32BB6B915E /* jcsample.c */; }; - 2CAD4DF9505F36E4A2EAD53E /* helpdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C466F32CCBD13DBC87285B3D /* helpdata.cpp */; }; - 2F7F5B9BBCD83D90B237A1A0 /* markupparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA7F7633279936EFA0B9C5CF /* markupparser.cpp */; }; - E8EE34F0A78C31B489B19FEF /* LexMSSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C71BF55495034FFBE653C80 /* LexMSSQL.cxx */; }; - 07158EBC05A637ECA9DC7B51 /* utilscocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */; }; - 52C0984A2A4F31BC885519B0 /* xtistrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */; }; - 028257C52CAE3038AA862C37 /* stdstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE16011AD6323AAC8616F973 /* stdstream.cpp */; }; - 45AB45C6B24A3983B22E56A6 /* dataobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 271B4B77622B3411A7BF6634 /* dataobj.cpp */; }; - E0E40333B61C33B58787078E /* LexMarkdown.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */; }; - 37715483D08335B790FFE05A /* filectrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */; }; - 4B88254FF9963833A276A64D /* snglinst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */; }; - D3EC9191D94837CABFF05DC4 /* LexNim.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B1AA9AF75D233FFC9FC90E7C /* LexNim.cxx */; }; - 22AE900003F73134BBEE8BB6 /* dirctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */; }; - E7921B0472B63E4091F4F519 /* xh_collpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */; }; - AB58406CEBA13BC4A2A83B67 /* printmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */; }; - E3AD8574E13B39BDB8D4E92F /* LexKVIrc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */; }; - 84B3625464F732C3A79E1316 /* xh_bmpbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */; }; - BDB7B2AD26CB356B8BEAAECD /* jchuff.c in Sources */ = {isa = PBXBuildFile; fileRef = DC0FFDC7A6163F2DA73B84EB /* jchuff.c */; }; - DDC71B80D562303690FDBE4D /* appcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F01DDE448E4C3983ACCE67FD /* appcmn.cpp */; }; - 94B1C88076793400810FAC31 /* png.c in Sources */ = {isa = PBXBuildFile; fileRef = AF26BAB1F4733114926F1724 /* png.c */; }; - 3141FEDED0943BD6A2EF8590 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA93D41B11683E758D456531 /* log.cpp */; }; + 5EE94793DFCB3BA281A4864E /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = FDB0E2D0966C3E408C4A2D3D /* infback.c */; }; + CB078622E90F33BE9D131131 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28824 /* buttonbar.cpp */; }; + 5700B7F9166A37FDAA72E9DB /* dnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E53493CB84A30AE8C1CD721 /* dnd.mm */; }; + B198DA8239E9358A9D56B988 /* menu_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66C21CA37BF63893887FD91B /* menu_osx.cpp */; }; + B09CEADFEC593AFDA255BB1E /* libwxlexilla.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 65C4B1F34F273193BC76CEA2 /* libwxlexilla.a */; }; + 51D133EC44F830588FEEAEC0 /* LexHaskell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */; }; + 97C551F8AEF133D680D1FD36 /* LexProgress.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */; }; EEB0B28903693C7E9D07192F /* glcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E08A51FA8D8A361681B07295 /* glcmn.cpp */; }; - 1569BB4728693B6285623A24 /* pngerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A0650754DC2358CA5933B28 /* pngerror.c */; }; - 743BB23211B336A6A0F26E58 /* jcapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = F83172EE2DAE352FB969D4F2 /* jcapistd.c */; }; - 32486A808EBC3E088598D51C /* jcprepct.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FE0455EBDC63D82B2D88587 /* jcprepct.c */; }; - CD35A576FD363FD49C3AC4B5 /* LexAda.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 375E7A99FF4C38FA9E223772 /* LexAda.cxx */; }; - FEF99FF6C38D3B488396B143 /* ffile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */; }; - 807450BB072C3C0D9C52A3B6 /* LexGDScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E29A8279BAEE303B95C9D3C6 /* LexGDScript.cxx */; }; - C7B6240E0E213836996A178C /* dockart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD709DEB71623974B9836D69 /* dockart.cpp */; }; - E7F35B834A163C67B65176C7 /* tif_dirwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */; }; - A0FCE3CF565C3F84B63712AC /* LexCPP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9EF09C7CC5413CC6A5E7B21B /* LexCPP.cxx */; }; - B01C4EF49CF9390DA93A3502 /* jidctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C131F7BF8A83960ACB26242 /* jidctflt.c */; }; - D00AF125FCB63A7A8F9B87DE /* taskbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4692909E4B823F71822B13F8 /* taskbarcmn.cpp */; }; - BAA75384DA82370298672335 /* helpctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E433D1700631A8907B8227 /* helpctrl.cpp */; }; - 55F01295F1D23805BCA12F16 /* srchctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14EF4B028AD63B4A885D29A1 /* srchctrl.mm */; }; - C32EF2EC1A103BC3A6254323 /* xh_spin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950D51915EF83B57B5E8306F /* xh_spin.cpp */; }; - C1CDD035AA393ACC9E202C04 /* minifram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693F731B7D1730A79485F9EC /* minifram.cpp */; }; - 064908348009398C8EA8497D /* fontpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */; }; - 14C024EB327435A2A571DA2E /* LexKix.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B303230368143F37B2409DE6 /* LexKix.cxx */; }; - E05B06A7FEEE32D5AD87EA50 /* xh_editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05310A868F0B35999C568681 /* xh_editlbox.cpp */; }; - 76A83A293C9F33BCB7DFDE28 /* jdatadst.c in Sources */ = {isa = PBXBuildFile; fileRef = 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */; }; - 87AA9C5D887B3C31A2AFB49D /* htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD5F11A3646F397BA62EB037 /* htmllbox.cpp */; }; - B791BD05072B3B909A7093C3 /* dcsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */; }; - 3ED6F4B64C283232A79423CF /* dircmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */; }; - 371809DA4AD1382F8B532878 /* fontenum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36E1DBA275AD325DB759C180 /* fontenum.cpp */; }; - DE26572475EE336B8EEA5D93 /* jerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 108517BCD39230E7A89BC943 /* jerror.c */; }; - 7A84B9471A3238B4B66B1776 /* nbkbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B901252876603DCEA4C66D89 /* nbkbase.cpp */; }; - 0E60E17BA4B23347A4F20161 /* gdicmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998D611109EC33A9A6A11C5A /* gdicmn.cpp */; }; - 0C2CBD7246993527A829BD95 /* LexDataflex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */; }; - 8D6B0D48EA843E48AB0FE43E /* LexErrorList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2851EAAEE9B73FE8981912C9 /* LexErrorList.cxx */; }; - 213CE0DD5B2335D0AD53B54B /* gzclose.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A24E9101688368296C21EBE /* gzclose.c */; }; - 097BC5E023C33C1DA05606AF /* Selection.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2AF7739C389536F79DAA31E5 /* Selection.cxx */; }; - 6944AC98F6F83E3D983DABD4 /* tif_getimage.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */; }; - D5C304182151365FA9FF8A3E /* xh_bttn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */; }; - 78E15D8200F635529F39609A /* LexBullant.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6718204F4700318E89EAC906 /* LexBullant.cxx */; }; - A965348C7FA73CEC90C8FA26 /* filedlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */; }; - 81B742D64BEB373DB705947A /* m_list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4028ABB08C63AB59F5F240B /* m_list.cpp */; }; - 834F2ADD0520313FBAC4F928 /* LexCsound.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */; }; - 64F11C549E3035DF85691062 /* tif_ojpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */; }; - B01C4EF49CF9390DA93A3503 /* jidctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C131F7BF8A83960ACB26242 /* jidctflt.c */; }; - D13AE659C3AC37B68D39B2CA /* LexLout.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B14D6E7E15FD3C869E341198 /* LexLout.cxx */; }; - AC07BA4EA5403443914DFDB1 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7013DB195D023C31ADE68546 /* crc32.c */; }; - B189DB62AE9F30A1B613756D /* bmpcboxg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */; }; - F2F2963D8ECC32D39FDBF103 /* tif_write.c in Sources */ = {isa = PBXBuildFile; fileRef = E9B992CB6C28339FB0CA5E27 /* tif_write.c */; }; - 1CD4F67F48CF3A5FA477D86E /* datavcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */; }; - 50D7E093424138C88BB50D28 /* jcsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 53D06E47477B3E32BB6B915E /* jcsample.c */; }; - 28ADE8D385A53445A5451F24 /* jdhuff.c in Sources */ = {isa = PBXBuildFile; fileRef = 72869747E68E37998CB0A07E /* jdhuff.c */; }; - F501AB044AAC39DCB8C0B3E2 /* editors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C7F740A55E39FD890B3C7F /* editors.cpp */; }; - CF3082BA1ED232F4B904BD15 /* stdpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */; }; + 22AE900003F73134BBEE8BB6 /* dirctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */; }; + 49FE0228D8FD3F7AB64A4432 /* bmpbuttn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */; }; + 3E6AA08E72A030D39D867D4B /* ScintillaWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */; }; + EDD92822EBD93E86AE5A2ED0 /* slidercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8072CA67D19346ABF4D465F /* slidercmn.cpp */; }; + 02BB539E2AD63C078DA776B0 /* uiaction_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */; }; + 9F608A33D52D327FAA295625 /* sckfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56653FACC7D13804A70556AD /* sckfile.cpp */; }; + 65E8A5F333D7336C816F0D0C /* variant.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31F4B9B03D52339B8F82C114 /* variant.cpp */; }; + 0C485288EA86379D9FD66536 /* cshelp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67DCEEB6861731319C30817F /* cshelp.cpp */; }; + E3AD8574E13B39BDB8D4E92E /* LexKVIrc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */; }; + 42ED9BAFD6E936849F1D36CB /* xtixml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4048A3523EC03409BD899BEF /* xtixml.cpp */; }; + 8DE45CEAF2DD3C22AA019F74 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CF73F49AEC238C99CE89845 /* deflate.c */; }; + 47C31B7492F33C3EBE53262A /* settings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6831AA74AB5B38D5AA6946D7 /* settings.mm */; }; + 2B4507BC09563DB5B0F16596 /* tooltip.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31EFBD7D10003A5187348B35 /* tooltip.mm */; }; + 0F8C79010EF0316AA1B7392E /* LexTACL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E5C91072D533919A78D8ED2 /* LexTACL.cxx */; }; + 9CA687845B3F30CCA44A89D0 /* choicbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */; }; + 63F0C8EEDF4B3641878A8B4D /* dlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9051902662BE38B3912B34EA /* dlgcmn.cpp */; }; + 14F303FD6B5F383DADDFD789 /* xh_dataview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 616466F521DB3ECAB304289F /* xh_dataview.cpp */; }; + F2F2963D8ECC32D39FDBF101 /* tif_write.c in Sources */ = {isa = PBXBuildFile; fileRef = E9B992CB6C28339FB0CA5E27 /* tif_write.c */; }; + C05BDB0B5F5A33A9A57FF013 /* m_links.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 080597FC0436378E96EDA94B /* m_links.cpp */; }; + 0C2073A011EA36B8AD906DA3 /* LexCIL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7F18C26877336DBE638D75 /* LexCIL.cxx */; }; + 221DC4F6678A3EC5ACDDEA4F /* statbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */; }; + 7EF89F935314301381802FAB /* filectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2334539088B036BEAB230D1C /* filectrlg.cpp */; }; 6D723C987BFB39B7B887DCB2 /* Editor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DA5E95D498C53A808A8E2EEB /* Editor.cxx */; }; - 8620088DDD233B139B250DD5 /* filter_sse2_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */; }; - 3316A16628B03D5E88529EA7 /* datetimectrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = A0A63980677D371C85A60B75 /* datetimectrl.mm */; }; - 9744994E8A813AA6938A7CE3 /* textcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */; }; - C3A63D7091913CD39094AE0B /* btncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A7A3B499503ECABC6A838F /* btncmn.cpp */; }; - 895E7FE46F733C75AE8847E4 /* DBCS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CDF592CBE5193497A26EF978 /* DBCS.cxx */; }; - BD2B17EB72E73A6EB6E0B26F /* dcmemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 343D4FDD5CC030618EF24729 /* dcmemory.cpp */; }; - BD49EC50CB363642BDBF25C8 /* mousemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D037EA567C253DEEA17E822B /* mousemanager.cpp */; }; - 3EB6B8528A0D3B6CADAE1258 /* archive.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02D2E8B5C89939CE90B99E2B /* archive.cpp */; }; - 0723C4E8B52C39FDBC2158B8 /* dataview_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E53DC332DA23DF4B9BFCDE3 /* dataview_osx.cpp */; }; - F1F484DD591337399FCD0463 /* display.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5617D10CB7136EC9A4194EF /* display.cpp */; }; - B5C7FD8C27F43F3289A77FCA /* utilsunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */; }; - 4D9368BD07F131C493232E2D /* LexIndent.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41AE72D4E8FF307F86A02F5F /* LexIndent.cxx */; }; - 552708E6296D33EBB5F6A493 /* tif_swab.c in Sources */ = {isa = PBXBuildFile; fileRef = AAC12B4456E13F57BEA25A5E /* tif_swab.c */; }; - ABCD15C4AB37396EA17B7B28 /* translation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AC666417602346EA583709E /* translation.cpp */; }; - 9CA687845B3F30CCA44A89D1 /* choicbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */; }; - E49F0D43B5A63EF1A57A7113 /* fswatcherg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */; }; - 91BDA5B04CF33C9AB7358B8B /* timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69F098E47EBF34368ABAE7ED /* timer.cpp */; }; - A93D0E6F0871368EA8FC9FF9 /* fswatchercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */; }; - 6AC347D2DCC730149A0A83D9 /* button_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF4F4F5211933057824B5621 /* button_osx.cpp */; }; - 3D3EA1BAAD1833B1B48E9C87 /* xh_stbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */; }; - AC6AC589EFB233C7B65A3226 /* overlaycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 303ACF199BE431BD891C9301 /* overlaycmn.cpp */; }; - EC3A1C620D323B5590AABF03 /* module.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DB43FAB1E563B02ACEFF647 /* module.cpp */; }; - 09A792A5129E3FE1BF077643 /* tif_jpeg_12.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */; }; - 26649553E4763EE6BA268B7D /* xh_gdctl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */; }; - 6A032420671B375D81273714 /* valnum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 684D92E552BE313CBE0A88AA /* valnum.cpp */; }; - EDCA35F1555F3509895CCA6A /* textctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */; }; - 026F90F7492C316A94128917 /* logg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C64705CE9398316D87BAB4DC /* logg.cpp */; }; - 1142E2D85FD93E9AB5D8A55A /* pcre2_script_run.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F4CDF9048EC36788619769D /* pcre2_script_run.c */; }; - 57F8001809BC3864A5FA798B /* PlatWXcocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18ABDAF9EF723072A7708009 /* PlatWXcocoa.mm */; }; - 784F7C50882F320FA76537B6 /* LexAU3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C76222F466E831F896A89269 /* LexAU3.cxx */; }; - EB52C6A91594381393294501 /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04B /* control.cpp */; }; - 0ADC8DBEE80D36B0BB9B058A /* LexASY.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A82C367B86F83981803D55DB /* LexASY.cxx */; }; - F84D59648206349A9768157D /* msgdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */; }; - 1749412E53B9311DABA71DDC /* bmpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */; }; - 1C52CB9487DF3AB9AF243B48 /* prntbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 242BF97B558634A79322052C /* prntbase.cpp */; }; - 9B8E5690A6103FC1BDC6C47F /* pngread.c in Sources */ = {isa = PBXBuildFile; fileRef = 29D6506AEA5A323B8735F126 /* pngread.c */; }; - C425A172B0AB3EBD9AC9A591 /* ustring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B63EBEE1A04537E7887E9FD0 /* ustring.cpp */; }; - 6C1171E3FB7137CCB9E3F536 /* tif_zstd.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B98123FD57731139044B064 /* tif_zstd.c */; }; - 5C44446AB150378696CD6B3D /* bmpcboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */; }; - E63364B7E727383BA8E2B7EE /* datstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81B3DFBB73573FFDBD320334 /* datstrm.cpp */; }; - A1A7D793B034398B8696EF33 /* utils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 789F45D14FF23E248FCFB5FA /* utils.mm */; }; - 0E23F212CBDD33848DEBCA6F /* webview_chromium.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBA9036479943A4990CEB3AC /* webview_chromium.mm */; }; - B84642DA949638A189032CE7 /* http.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F84F0DB790A23D92A193D2B4 /* http.cpp */; }; - ABCD15C4AB37396EA17B7B29 /* translation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AC666417602346EA583709E /* translation.cpp */; }; - 27E2EABB117334CD89CFD2A5 /* mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B568A7364ECA30288820CCE7 /* mdi.cpp */; }; - 4E712589FAA837F589B72F4D /* LexMaxima.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */; }; - FF50EC0EC5F23DF890C6E960 /* colour.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D1F14339D1C331087650931 /* colour.cpp */; }; - BF9B151DC0543E37878F8B9C /* stattextg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DE635F30F3935099AF1486C /* stattextg.cpp */; }; - 8F372080E11E382EA0B5ED11 /* rowheightcache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */; }; - 2F50DBC14FE538A49823925A /* calctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 496674699F173A5385EAFF07 /* calctrlg.cpp */; }; - D00AF125FCB63A7A8F9B87DF /* taskbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4692909E4B823F71822B13F8 /* taskbarcmn.cpp */; }; - 815AE3FED68330F4933AA170 /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = C94DC3402FAE3C4FA776DEEA /* window.mm */; }; - 2E4747E0736B30569ACD5423 /* textbuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 701B84EE7C043B539FF5195A /* textbuf.cpp */; }; - 0654BCC3F0763C50A7949506 /* LexAPDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */; }; - BD53E095EC1136EF853A47D8 /* m_layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5EE0B8985443BDCB36F781F /* m_layout.cpp */; }; - C2E37E798F743A4199C8658F /* fddlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */; }; - 82FA4AA043213728AC266701 /* wizard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */; }; - 5519BA1F2463308FAC4A0C9F /* LexAVS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 57E4784E521339BEB971D81D /* LexAVS.cxx */; }; - 45D88A74B3EE3837B9F79595 /* LexFlagship.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */; }; - 048986FB629E313EA670CD0D /* webviewfshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */; }; - 13854E7822783719A2530792 /* jddctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5BBC1E494D33D028CA547FF /* jddctmgr.c */; }; - C8C68927DB243AEAB51E11F3 /* pngwio.c in Sources */ = {isa = PBXBuildFile; fileRef = AF9EE701DD653E2299293E5F /* pngwio.c */; }; - 697FC496816F33568E1FB5A7 /* LexTCMD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1CABAEA3B48333CB88B40F08 /* LexTCMD.cxx */; }; - 7CC211E10D853B958250A4CF /* LexModula.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */; }; - 242E1D1A9BF331BA918134ED /* pngwtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 0964797530CF3FE7B8DB6242 /* pngwtran.c */; }; - 215958201947310B88BBEDB4 /* statbmp.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD6B26B5A6A733A89EF5AB9C /* statbmp.mm */; }; - 0A2A4D2DC8F63FE1AC0BFAAF /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2024D29170D3B50A4DFDE11 /* base64.cpp */; }; - 13854E7822783719A2530793 /* jddctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5BBC1E494D33D028CA547FF /* jddctmgr.c */; }; - 7FC3D17B3C853FE58841002F /* timercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7195E665E0F233839B967FC9 /* timercmn.cpp */; }; - AE95E3BDEDB7358DBE9E7E5A /* webview_chromium.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2718D06670953933B897B0D8 /* webview_chromium.cpp */; }; - AAC2CB4D851230008AE4ABA2 /* dcscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */; }; - 57F8001809BC3864A5FA798C /* PlatWXcocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18ABDAF9EF723072A7708009 /* PlatWXcocoa.mm */; }; - 9C6E9E4BA54733EF9F87E4B7 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 513033E36E643593AC305B3D /* uncompr.c */; }; - BE99A85EE76236CC8C719A64 /* xh_gauge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */; }; - 63F2517EC6B2334CA825A6F9 /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEB08798C70E33DDB360E563 /* layout.cpp */; }; - E3B3E4F75D503DB89B5C622D /* stc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B9C41A4D12345AAA764CAD /* stc.cpp */; }; - F72020415D713C1BA41C17D0 /* richmsgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */; }; - BDB7B2AD26CB356B8BEAAECE /* jchuff.c in Sources */ = {isa = PBXBuildFile; fileRef = DC0FFDC7A6163F2DA73B84EB /* jchuff.c */; }; - 1AB50C98FF473B33A3CA4D39 /* xh_cmdlinkbn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */; }; - 834F2ADD0520313FBAC4F929 /* LexCsound.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */; }; - 3B7E035ECF3D3FFB9827AC1D /* xh_dlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06B4A895955B32258DCD62BF /* xh_dlg.cpp */; }; - BF068F3C06473D8CBC55D507 /* PositionCache.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BCD873D873A53BBF955D8A4E /* PositionCache.cxx */; }; - 664A54F914443110B7BB6929 /* tglbtn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */; }; - 27E73CA5C35A30CE89946ECA /* slider_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D215A0D67563350CB4EECB06 /* slider_osx.cpp */; }; - 5A459FC1180130C5B705AEDB /* xh_ribbon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */; }; + A52A7D2FEB1434E29C64582C /* RESearch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E145FC31ED523B4AA5080A61 /* RESearch.cxx */; }; + 512AB7B82D57387EBB7BEE27 /* LexFSharp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F8AD617806563DE394C15922 /* LexFSharp.cxx */; }; + 26BB10834DA1388881BDD1EC /* propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98B72B3A0A73044B85AED60 /* propgrid.cpp */; }; + 88E1AE56FD393C8BA5CF8545 /* stringops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F1E724EA70AB35DDB130F84F /* stringops.cpp */; }; + CAF5C5BB129431B596C4C6C1 /* LexTAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 38891BF8F51E398F9082903F /* LexTAL.cxx */; }; + 6F0605F3A4E83BF0BF4C8B7E /* cmdproc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */; }; + 00F1531404F832C6AE0748F2 /* spinbutt_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */; }; + 6E2C2E8AA1713ADE9C338379 /* tif_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 726C0457DF1232C793918DC1 /* tif_zip.c */; }; + 955D2199F1893D37BA2D7478 /* laywin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3784C240C2F330683494926 /* laywin.cpp */; }; + 056CA84179433AA48D55DA66 /* bar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FDDE855D9F83E4891362EB4 /* bar.cpp */; }; + 3D762A0BBF1B39B88A769632 /* helpwnd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */; }; + CA4DCD57060B38CC8B2283D8 /* filtfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */; }; + 45FE206BBAD13DDCA1EA41D0 /* treebase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BA6ADD758693BD180D3275B /* treebase.cpp */; }; + EC3D181D65F33E09A675FFF2 /* addremovectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 964578C24B9F390AAD08576E /* addremovectrl.cpp */; }; + 96927C5A21FD3ACF936CDF6C /* renderg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49CABA38E78D34DFA260AA06 /* renderg.cpp */; }; + C0CDA289E9EC3E20BE70B2E7 /* choiccmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24930711031D35288D28B04B /* choiccmn.cpp */; }; + 5F57C4908E5038D19D68ED7A /* gallery.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */; }; + DC6B669C9A78398F914AEE54 /* fontutil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FF661188B563D27A11F5716 /* fontutil.cpp */; }; + 1E166FC1A7B3371FB038B172 /* fldlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */; }; + F747991E5C973F9B8C9D800A /* fontcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */; }; + 171F09F8DD553FA5B4B3FAE2 /* modalhook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E7C516E2453A269280A404 /* modalhook.cpp */; }; + 85F9828B80B03178A274BD17 /* selstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ED2105A5A033E3384EBC4ED /* selstore.cpp */; }; + 4040AE89BF9F34668091064A /* dragimgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A67053D16D63C588E555C84 /* dragimgg.cpp */; }; + 215958201947310B88BBEDB3 /* statbmp.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD6B26B5A6A733A89EF5AB9C /* statbmp.mm */; }; + 37DD17F479A1371ABF3589B9 /* xh_wizrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */; }; + 0B792C3F31713850818EEFEA /* LexDMAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AC62806DE67F33E18C386D4F /* LexDMAP.cxx */; }; + 6463C9BE78C0394CB7B451FA /* pcre2_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = BDADEB1DA6433E52972C8934 /* pcre2_compile.c */; }; + 76A83A293C9F33BCB7DFDE26 /* jdatadst.c in Sources */ = {isa = PBXBuildFile; fileRef = 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */; }; + 48A1F28E04603A68A1E70319 /* jidctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = A0DCC5EF59143640BE13AD73 /* jidctfst.c */; }; + E104017EE1A4357DAF84E1E6 /* auibook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A298576700C33F018616E7BD /* auibook.cpp */; }; + F24F637D59F637CA9A7E23C9 /* xh_filectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */; }; + 3B8A54D5E5A53607A6F7979A /* arrstr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A57CF60203F53459A03951A9 /* arrstr.cpp */; }; EE972E8DC73F310B9B4C949C /* webrequest_curl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5279968877003A8BB8279765 /* webrequest_curl.cpp */; }; - 67CE7065EE593DAAA2CE448B /* LexEDIFACT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */; }; - 070797A894A03196B7BEC661 /* xh_bookctrlbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */; }; - 4301AFBA0A193A7EB392EB94 /* LexMake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3D5F00FC91343C35AF99F708 /* LexMake.cxx */; }; - 62331487C17B32E081B8FEA8 /* LexLaTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */; }; - F07D84D124F23E7FA11CF149 /* extended.c in Sources */ = {isa = PBXBuildFile; fileRef = 033B94A9AC8A3370A794503F /* extended.c */; }; - 6AC347D2DCC730149A0A83DA /* button_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF4F4F5211933057824B5621 /* button_osx.cpp */; }; - E46BEC5C8D643BD099AF1D58 /* LexSTTXT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 50859F0155753FDCB8C5222A /* LexSTTXT.cxx */; }; - 242E1D1A9BF331BA918134EE /* pngwtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 0964797530CF3FE7B8DB6242 /* pngwtran.c */; }; - D17E3053DA0D3F7EA4D0951B /* helpdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81821049E39B32C6ABCF6820 /* helpdlg.cpp */; }; - 61C3F7D495FB3E8BA402E4F8 /* jdmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 20E4A10BCD773C84AEC481A1 /* jdmarker.c */; }; - 6BC8B3EDB3AE3EF4BACFC08B /* ContractionState.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5219A792C6A736F193D4A82F /* ContractionState.cxx */; }; - 36DB80FD5B153E9099DB6913 /* imaggif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */; }; + BBAABF3C693E37D3B0FF2502 /* colrdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */; }; + DAAFBED07FF8365B96D20B9A /* unichar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */; }; + 604ABF86317C3D4F899DBF37 /* richtextsymboldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */; }; + D95C5F467D37339AB8DF2354 /* tif_color.c in Sources */ = {isa = PBXBuildFile; fileRef = 149D299A0EDB3D998118EC93 /* tif_color.c */; }; + BDB7B2AD26CB356B8BEAAECD /* jchuff.c in Sources */ = {isa = PBXBuildFile; fileRef = DC0FFDC7A6163F2DA73B84EB /* jchuff.c */; }; + 4958BD2E717A3F03AB030188 /* tbarbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3F32C01D122301AB00D06A5 /* tbarbase.cpp */; }; + 522E6CF2A62F34259BCE2DE2 /* tif_flush.c in Sources */ = {isa = PBXBuildFile; fileRef = 305614D19CF23CB2B14A5B2E /* tif_flush.c */; }; + 2F50DBC14FE538A49823925B /* calctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 496674699F173A5385EAFF07 /* calctrlg.cpp */; }; + DEC5F4B34BC037169D3E5F2A /* mediactrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */; }; + 825EAD51920B387DB4F8C426 /* LexAsn1.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A46D50BEBF523B3F88831086 /* LexAsn1.cxx */; }; + 2F35A207C3993DE08E4FE0B1 /* timerunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */; }; + 37DD17F479A1371ABF3589BA /* xh_wizrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */; }; + 46E331300D8F349DB36AB50A /* imagpnm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC12B97F233B3B9494DA217F /* imagpnm.cpp */; }; + FDE14459359334DE9FB03ED5 /* xh_scrol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66411D54BAD338498AC59401 /* xh_scrol.cpp */; }; + 1B69C40CD7493FED9A272835 /* notifmsg.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9446ADCCDCD32E6BCF95599 /* notifmsg.mm */; }; + AE84BC9A1CCA3ADA9C483950 /* xmlrole.c in Sources */ = {isa = PBXBuildFile; fileRef = 59C6B9849FF6325E890942EF /* xmlrole.c */; }; + 1D726139C977341A97D0C932 /* datetimefmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 864438709B363773B8C3382D /* datetimefmt.cpp */; }; + DB9565CC4EAE3BCB9F490620 /* xmltok.c in Sources */ = {isa = PBXBuildFile; fileRef = 8685B8ED68F23DB0B770FD74 /* xmltok.c */; }; + A53B8C3ED0D33A1D9AA8219A /* toolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3BF8C9FF2D5314591329D0D /* toolbar.mm */; }; + 14DEBD7C01FC358B917FDAF2 /* aboutdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 207F0F88390138B6B41183EB /* aboutdlg.mm */; }; + CE2C937117FE3AB599DD30B9 /* sound_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9B2316B32653DA0939A372D /* sound_osx.cpp */; }; + 2FB16C6469433F1C91749128 /* renderer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92CCFD77BFB537EAA48E8BD3 /* renderer.mm */; }; + 71CCB06E790C3C54BFF1199D /* LexSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */; }; + 219304C9DDA33E9AADB515DC /* datetimectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D049F49C75043592B7E318B3 /* datetimectrl_osx.cpp */; }; + 39CC380F801F3EE984523275 /* auibar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A4437E9697300390FDE14E /* auibar.cpp */; }; + 4B996B4C54163D7091427DB5 /* gzread.c in Sources */ = {isa = PBXBuildFile; fileRef = BAD4614CABC934D6AFF8D9CD /* gzread.c */; }; + 0654BCC3F0763C50A7949504 /* LexAPDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */; }; + A1AF8FF873D6383996995ECF /* statusbr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 071FEABEA61E3B559A47A7DB /* statusbr.cpp */; }; + F5DF7AF0FA9E371BB71EF798 /* xh_listbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */; }; + 62757F24C4EE3B84B6AE3F14 /* textdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D529E2668C23D94A7706C8A /* textdlgg.cpp */; }; + FD1F6CD8286D3D428FD52A29 /* filepickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B580FD04D0D83601826FD5EE /* filepickerg.cpp */; }; + A3586433C4B1398FB1C361D6 /* m_image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 548906E4E72935E48CE4AF87 /* m_image.cpp */; }; + DA0FA502405A37B2A5698D22 /* config.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FE0B33481283D3493613B0F /* config.cpp */; }; + B1775EF7C72233408044034B /* radiobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 773D91F8280434519BD167EA /* radiobox_osx.cpp */; }; + FB8B6E4789A3311A98C5B0A9 /* clrpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B5A9DF3206B3954A4B38BFD /* clrpickerg.cpp */; }; + E2A73751CECF32A68FFAEE82 /* panelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E9B2C076673C87B4218A01 /* panelcmn.cpp */; }; + FD38B04026F930CC80BC9480 /* m_pre.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61658C3EABB4341AA38C691E /* m_pre.cpp */; }; + 7A84B9471A3238B4B66B1776 /* nbkbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B901252876603DCEA4C66D89 /* nbkbase.cpp */; }; + A283187810EB32DAA173BD34 /* artstd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24E82A05E9A9323287CDB15B /* artstd.cpp */; }; + A8476B3CE46B3FD4A2832F00 /* LexNull.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */; }; + BB12132A86E2350AA47414CC /* arm_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 933D7637CAA43F6C99814BC5 /* arm_init.c */; }; + A36B5107860E32659194073F /* LexPython.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CC2713393AB132AA8E337AE1 /* LexPython.cxx */; }; + D13596A4E3CD31DE810061A2 /* imagjpeg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6876262846EA3569B36D92E9 /* imagjpeg.cpp */; }; + 5519BA1F2463308FAC4A0C9F /* LexAVS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 57E4784E521339BEB971D81D /* LexAVS.cxx */; }; + A9A5973552EE30838306D15C /* tif_packbits.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CE73979D0933A43830307E4 /* tif_packbits.c */; }; + D4C87E227A28391891D89088 /* filename.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */; }; + 88E56F89A0DA3AD386F05FD3 /* pcre2_pattern_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */; }; + 6BC8B3EDB3AE3EF4BACFC08A /* ContractionState.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5219A792C6A736F193D4A82F /* ContractionState.cxx */; }; + B6891F848CA0325EAB6D1373 /* textentry_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777385D10CCC350C90F02824 /* textentry_osx.cpp */; }; + 221DC4F6678A3EC5ACDDEA50 /* statbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */; }; + AAAB5DF8E60736D88273DCFF /* strconv_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5F9383D1CE931499F339D85 /* strconv_cf.cpp */; }; + 51437DC2AD7B3BEB9A53CE1B /* cmdline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE1C531185131A89EFF7FAF /* cmdline.cpp */; }; + 19D823E564D932758EA6F8D1 /* UniConversion.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */; }; + 246B4FF96BA135258FE45F4F /* encconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */; }; + 4B996B4C54163D7091427DB6 /* gzread.c in Sources */ = {isa = PBXBuildFile; fileRef = BAD4614CABC934D6AFF8D9CD /* gzread.c */; }; + 539B586AEAD630A79FC12ECF /* sstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46EC1508C063C8395CE7A95 /* sstream.cpp */; }; + E1A20811148F31D289AF98AF /* xh_sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */; }; + D070C3BE95483FE38BABA1BE /* region.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00DA3D3EEF5E305CA73A1871 /* region.cpp */; }; + D9496139621533328AE727B6 /* pngget.c in Sources */ = {isa = PBXBuildFile; fileRef = 91300EB871CC39ECBC430D48 /* pngget.c */; }; + 4DA209AEF4AD32AAB97F9718 /* htmlcell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68E5188DB6003C35A8C7754D /* htmlcell.cpp */; }; + F6288F388B8C33FD85E9A156 /* LexerNoExceptions.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */; }; + BF2585CFA6853023975F1E79 /* iconbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */; }; + C8F1FB8C029031A5909DBC56 /* KeyMap.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */; }; + 311840186794346AAAA42091 /* jutils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */; }; + 131B879180AE3FB481F81CC8 /* fs_mem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A305CEC03B3085B159B617 /* fs_mem.cpp */; }; + 604ABF86317C3D4F899DBF38 /* richtextsymboldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */; }; + 18A318847EAC37F2B915F081 /* jmemmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */; }; + E17048DEEF1138318314F1D0 /* pcre2_valid_utf.c in Sources */ = {isa = PBXBuildFile; fileRef = FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */; }; + E4B826CE70283D999CB591F3 /* listbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B99CA41708513A599AE275A2 /* listbox_osx.cpp */; }; + 7DC4A542372437ECA0790F87 /* art_msw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B540E18F9C91381CA175BABB /* art_msw.cpp */; }; + E8BBC08597EF383597DA0308 /* LexEiffel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 55EBB18CB4773C788510B14B /* LexEiffel.cxx */; }; + 8D6B0D48EA843E48AB0FE43D /* LexErrorList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2851EAAEE9B73FE8981912C9 /* LexErrorList.cxx */; }; + B198DA8239E9358A9D56B989 /* menu_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66C21CA37BF63893887FD91B /* menu_osx.cpp */; }; + 64A716F87A5136F9A790EC5A /* webview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DA80913C0E33144A42BD30F /* webview.cpp */; }; + BAFF04F1680F32DA988EB03D /* stockitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B180290089B139F18B0C7BBA /* stockitem.cpp */; }; + 7B4DA2F5F25B3E188CBAFE38 /* hyperlnkcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */; }; + D9DCBE799DB634C2A73FD6BE /* statboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73954EB5397301F87881646 /* statboxcmn.cpp */; }; + 3C0EB1DDA5243E31B2D92CE2 /* jquant2.c in Sources */ = {isa = PBXBuildFile; fileRef = 02D9332D5C5632E981936E29 /* jquant2.c */; }; + D4C87E227A28391891D89089 /* filename.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */; }; + 784F7C50882F320FA76537B5 /* LexAU3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C76222F466E831F896A89269 /* LexAU3.cxx */; }; + AD4A533C4E1633598A6D5C6F /* textentrycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F63BF9430CE371DA04AC900 /* textentrycmn.cpp */; }; + C3A63D7091913CD39094AE0C /* btncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A7A3B499503ECABC6A838F /* btncmn.cpp */; }; + 89200B144075388BA69A07E3 /* xh_timectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25A81E9028793C109D868068 /* xh_timectrl.cpp */; }; + BB12132A86E2350AA47414CD /* arm_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 933D7637CAA43F6C99814BC5 /* arm_init.c */; }; + CAF5C5BB129431B596C4C6C2 /* LexTAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 38891BF8F51E398F9082903F /* LexTAL.cxx */; }; + E6D18B2EDE353F678830859F /* odcombocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F23140777B733679D2FAAFC /* odcombocmn.cpp */; }; + 4279D39CAAF834F6A5B99196 /* persist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D9626646773CED82449D5D /* persist.cpp */; }; + 3357BD0518F538E9A949F886 /* xh_tree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */; }; + 0FFFFA2F762B3160955D1D88 /* gauge_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC28591B403B32B7AFCC079D /* gauge_osx.cpp */; }; + 3B7E035ECF3D3FFB9827AC1C /* xh_dlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06B4A895955B32258DCD62BF /* xh_dlg.cpp */; }; + BDAB44F5D017395D9D3A1F23 /* frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3019BA65DD73F30A865365F /* frame.cpp */; }; + 4442EA28B0B3373B9A2D0862 /* collheaderctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */; }; + 75DCE6FF00E93C5D93970842 /* arttango.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9988CBB0772A3539970162FA /* arttango.cpp */; }; + A7692B4D8658347BA16EEB83 /* jmemnobs.c in Sources */ = {isa = PBXBuildFile; fileRef = 374E341C8703367686DEDE93 /* jmemnobs.c */; }; + 743BB23211B336A6A0F26E57 /* jcapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = F83172EE2DAE352FB969D4F2 /* jcapistd.c */; }; + D7F14BDFFB7F369B842AFC13 /* pcre2_config.c in Sources */ = {isa = PBXBuildFile; fileRef = FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */; }; + 502D7B786EAE383B9546F31F /* LexRust.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 24BD2EF635673E819B8406CB /* LexRust.cxx */; }; + 6E2C2E8AA1713ADE9C33837A /* tif_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 726C0457DF1232C793918DC1 /* tif_zip.c */; }; + E3A4615870B139D29FE727C1 /* menucmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F175D6E8E5723FC797701275 /* menucmn.cpp */; }; + 4E712589FAA837F589B72F4C /* LexMaxima.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */; }; + 131B879180AE3FB481F81CC9 /* fs_mem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A305CEC03B3085B159B617 /* fs_mem.cpp */; }; + 7FC3D17B3C853FE58841002D /* timercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7195E665E0F233839B967FC9 /* timercmn.cpp */; }; + E1A20811148F31D289AF98B0 /* xh_sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */; }; + 47C31B7492F33C3EBE53262B /* settings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6831AA74AB5B38D5AA6946D7 /* settings.mm */; }; + F85D632964383F29BC3B30B6 /* tif_next.c in Sources */ = {isa = PBXBuildFile; fileRef = DFDC805DD3063C389F93642D /* tif_next.c */; }; + 28ADE8D385A53445A5451F23 /* jdhuff.c in Sources */ = {isa = PBXBuildFile; fileRef = 72869747E68E37998CB0A07E /* jdhuff.c */; }; + DF861EBD9C483E79ADF98602 /* CharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */; }; + FBE4DB30865D3177B3A9993B /* xh_animatctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */; }; + 39CC380F801F3EE984523276 /* auibar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A4437E9697300390FDE14E /* auibar.cpp */; }; + 41943A8F82723027A151A469 /* fileconf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */; }; + 5700B7F9166A37FDAA72E9DC /* dnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E53493CB84A30AE8C1CD721 /* dnd.mm */; }; + EAE02BA934B43EEE92C496C7 /* dcpsg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEA0945B20913754A54D0FD9 /* dcpsg.cpp */; }; + 22AE900003F73134BBEE8BB7 /* dirctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */; }; + 1AF2B2346C9639DAA4D15F30 /* numdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */; }; + 18A318847EAC37F2B915F082 /* jmemmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */; }; + F55F3887CDE633D7877C607B /* LexSmalltalk.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */; }; + AD07124BBA613B47829F0692 /* sockosx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4969528429903F15882F5391 /* sockosx.cpp */; }; + 894D43C8F224394FB3171F26 /* jcapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */; }; + 99F7D7BFBB543A04AB728375 /* m_hline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */; }; + 551BF168445E3D7BB54D0174 /* LexPS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = EDB48813110636DBA045BF3A /* LexPS.cxx */; }; + D4EC9DB5F8DF319EA0FD26A4 /* LexVB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F633793051F371F94C27530 /* LexVB.cxx */; }; + 87AA9C5D887B3C31A2AFB49D /* htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD5F11A3646F397BA62EB037 /* htmllbox.cpp */; }; + DF3B927516FB365E865A9780 /* LexerModule.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */; }; + F24F637D59F637CA9A7E23CA /* xh_filectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */; }; + EDD92822EBD93E86AE5A2ED1 /* slidercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8072CA67D19346ABF4D465F /* slidercmn.cpp */; }; + 1B69C40CD7493FED9A272836 /* notifmsg.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9446ADCCDCD32E6BCF95599 /* notifmsg.mm */; }; + 64DD406C453D39FEBBE66ED1 /* tif_pixarlog.c in Sources */ = {isa = PBXBuildFile; fileRef = 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */; }; + 512AB7B82D57387EBB7BEE28 /* LexFSharp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F8AD617806563DE394C15922 /* LexFSharp.cxx */; }; + C8F1FB8C029031A5909DBC57 /* KeyMap.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */; }; 700BBDECBE313E108BA99ABE /* toplvcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 861438BD294335D4B859EA71 /* toplvcmn.cpp */; }; - 23E9AF567E873B948EFEA180 /* gauge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 98A7F0605AAC3D28A8C9F253 /* gauge.mm */; }; - 2F7F5B9BBCD83D90B237A1A1 /* markupparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA7F7633279936EFA0B9C5CF /* markupparser.cpp */; }; - 36DB80FD5B153E9099DB6914 /* imaggif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */; }; - 7F77E347E1243D77A666FB44 /* clipbrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */; }; - 369BCCFF61D13A058D837835 /* LexPerl.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */; }; - 89200B144075388BA69A07E2 /* xh_timectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25A81E9028793C109D868068 /* xh_timectrl.cpp */; }; - 32486A808EBC3E088598D51D /* jcprepct.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FE0455EBDC63D82B2D88587 /* jcprepct.c */; }; - 3D22FC202D903007AEE3D165 /* fdiounix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */; }; - AD7EEB418C7930CB828EAF88 /* dynlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D272910EC35531E5B4D6E05B /* dynlib.cpp */; }; - 49C873EE448C3CD9A32012CE /* spinctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */; }; - 76D1A1A49CC831FFB9EBB1F6 /* LexOpal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */; }; - 84382E5DB3203A73AC5EE391 /* xh_combo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0905A1EBD653F6D82395602 /* xh_combo.cpp */; }; - CFDBB80A4C9A3BA092273936 /* animatecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */; }; - 2102C23970FB3F22AB46A59B /* LexTADS3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A284E855892F3A9E9E19E854 /* LexTADS3.cxx */; }; - 8AA341CCFB8E3F6AB3523596 /* splash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F8836E29C5A370E80CE070E /* splash.cpp */; }; - 1CC5AEC6C08E3600801CDADA /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 95B4EDF38F8A3E5EBAFF560F /* trees.c */; }; - D9F02AFDA07D3857A905527C /* jdcolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 68B81FBDA49D3C1991B6356A /* jdcolor.c */; }; - 760C729E41D93CC1AA2B4E0E /* hyperlinkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */; }; - 6C7C1CC506CB329FB2D086AA /* LexBasic.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B6AADC1056E03A3B80C20C5B /* LexBasic.cxx */; }; - D4EC9DB5F8DF319EA0FD26A5 /* LexVB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F633793051F371F94C27530 /* LexVB.cxx */; }; - 07C769F64665317BA3E1AC92 /* tif_jpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */; }; - 0B98B6721DEE37A1ADEA382C /* quantize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B890199A37723EFD86C0ADA5 /* quantize.cpp */; }; - A4DEBFA074C93388A1BBCB40 /* pcre2_substitute.c in Sources */ = {isa = PBXBuildFile; fileRef = FAC42945539F362D91D6F559 /* pcre2_substitute.c */; }; - C987310872D1396BAF716E5A /* webrequest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA9E372A64B3B808A64B178 /* webrequest.cpp */; }; - 27E73CA5C35A30CE89946ECB /* slider_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D215A0D67563350CB4EECB06 /* slider_osx.cpp */; }; - BCDAE378D03E37F5994FB9C6 /* XPM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C25521AF59B9324EB2809C73 /* XPM.cxx */; }; - B60AD651E0523DB7B31E4106 /* LexillaAccess.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8052B1625907355894CCF263 /* LexillaAccess.cxx */; }; - F70156C3E68B38FCB72FE254 /* dirdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */; }; - AF1E3338E892336E924AF633 /* pickerbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */; }; - BF8C33B7CB3A3ECE814A95FB /* tokenzr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */; }; - CB078622E90F33BE9D131133 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28824 /* buttonbar.cpp */; }; - 8966F77CC97B3ED780C8F138 /* xh_bmpcbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */; }; - 6B9EEA3CF2E536E3B1ADAC43 /* manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBED392D081335FA80523244 /* manager.cpp */; }; - 8B60964DA1DF3F3DB40BE123 /* datavgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F3D473DC5123EDAB767045C /* datavgen.cpp */; }; + F6B85CD918E93923BE631B95 /* fs_filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */; }; + E63364B7E727383BA8E2B7ED /* datstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81B3DFBB73573FFDBD320334 /* datstrm.cpp */; }; + 0A2A4D2DC8F63FE1AC0BFAB0 /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2024D29170D3B50A4DFDE11 /* base64.cpp */; }; + BD53E095EC1136EF853A47D8 /* m_layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5EE0B8985443BDCB36F781F /* m_layout.cpp */; }; + D13AE659C3AC37B68D39B2C9 /* LexLout.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B14D6E7E15FD3C869E341198 /* LexLout.cxx */; }; + 849B89D1F6AB3DDEAA2D53AD /* xh_styledtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */; }; + 4AEC67BF65B039D99F421666 /* statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C87B071E3593A889704F512 /* statbar.cpp */; }; + 3357BD0518F538E9A949F887 /* xh_tree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */; }; 796311E398FF313C84218824 /* uiactioncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87BF60D0D4A33E2AD2E1E25 /* uiactioncmn.cpp */; }; - A1A7D793B034398B8696EF34 /* utils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 789F45D14FF23E248FCFB5FA /* utils.mm */; }; - E8BBC08597EF383597DA0308 /* LexEiffel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 55EBB18CB4773C788510B14B /* LexEiffel.cxx */; }; - 048986FB629E313EA670CD0E /* webviewfshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */; }; - 32FECED7A7633C4D8C1BFBB5 /* toolbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24DF23D67E693D999B875101 /* toolbkg.cpp */; }; - 25656617A56D342AA3D1BFE3 /* ctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */; }; - 4F99EB97F65330C28EB4D078 /* datectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95B4B2890C3A372DAB8DC7BA /* datectrl_osx.cpp */; }; + FEB073547F3F3AC19D31F698 /* tif_tile.c in Sources */ = {isa = PBXBuildFile; fileRef = BD88495AF72531A28D2201D0 /* tif_tile.c */; }; + 22E90F33B5C9308EBF37A701 /* printdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9E32802E8ED3E729FF34CFC /* printdlg.mm */; }; + 8966F77CC97B3ED780C8F137 /* xh_bmpcbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */; }; + DFEB01E7B97A3515B785DCA9 /* pcre2_string_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */; }; + 324B2BAC54553D45B3C56BFE /* LexOScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */; }; + 9C1F073349FD393E9220C0D3 /* combog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBD7B44E33373BCCB60FC11F /* combog.cpp */; }; + 95826E8528CC32D8934C36EC /* xh_frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */; }; + FE2DBCCC1D0B36A3BE4493C0 /* fs_arc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88F2BA2F0598342186A484B5 /* fs_arc.cpp */; }; + 87092C0C817D343DAB77E23F /* xh_scwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */; }; + EE0EA850822E35F596B5EBBA /* artprov.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29387393C07C39DB8FF1663B /* artprov.cpp */; }; + 774A89998E09308CBFB03EE0 /* imagxpm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C85865D28DC31649440A921 /* imagxpm.cpp */; }; + 4E2737AC738431EB9898B8B6 /* gzwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */; }; + C8C68927DB243AEAB51E11F3 /* pngwio.c in Sources */ = {isa = PBXBuildFile; fileRef = AF9EE701DD653E2299293E5F /* pngwio.c */; }; + 6C46AF0370793AA0B74A5A4A /* tabmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */; }; + 0095084719983B878378CA29 /* pngwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 69A6CAF721E53E83B4820DE6 /* pngwrite.c */; }; + 67EBCE5FA5FF36349ADF0916 /* jdapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */; }; + 9FBC642677C63D01AA2511BE /* evtloop_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */; }; + 1DE75213D296323B815A02BE /* statline.mm in Sources */ = {isa = PBXBuildFile; fileRef = 743EF8DB16CE371DA5C66623 /* statline.mm */; }; + 7C87CC7641033D91823ED689 /* helpfrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */; }; + 07EC76232BB3343FA5CB90B0 /* LexAVE.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */; }; + 5A8638C234133824BDF93BBF /* gbsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */; }; + 7A7439BE66AA3771B4A89048 /* regex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB46BC22F6B23909A938C561 /* regex.cpp */; }; 23A7AF68A03E380785EE7C24 /* object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1731D6708BFE3DE7B101CE74 /* object.cpp */; }; - 5F57C4908E5038D19D68ED7C /* gallery.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */; }; - CE2C937117FE3AB599DD30BB /* sound_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9B2316B32653DA0939A372D /* sound_osx.cpp */; }; - BCDAE378D03E37F5994FB9C7 /* XPM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C25521AF59B9324EB2809C73 /* XPM.cxx */; }; - 7DC4A542372437ECA0790F88 /* art_msw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B540E18F9C91381CA175BABB /* art_msw.cpp */; }; - 2480859662ED399799E120A5 /* pen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA819575B5136B09FA8FEB1 /* pen.cpp */; }; - 7569F0BC3C603EB19168088F /* collpaneg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84758329F2163F00A9C005DF /* collpaneg.cpp */; }; - 46327A3C356D3570B27C6702 /* Lexilla.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */; }; + 6E1FD7D3DEF03748AEE3A29E /* listbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = D324650313003AAD96E12962 /* listbox.mm */; }; + B6BC23F4F3E43315BD4C7CFA /* mediactrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */; }; + 60706F8836A130A2AF282FE1 /* fontutilcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E00E14795F23A8392713A26 /* fontutilcmn.cpp */; }; + 5FE969523BDB3353AEF96810 /* xh_filepicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */; }; + 774EB9F3F7E93A379E1F7551 /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C4762898E5330C28651EE73 /* graphics.cpp */; }; + B181806CC34839E791E54BF0 /* xh_tglbtn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */; }; + 5A459FC1180130C5B705AEDA /* xh_ribbon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */; }; + 67CE7065EE593DAAA2CE4489 /* LexEDIFACT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */; }; + 95AD56D602CF3C5085602AF8 /* geometry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC0A61629E635FAB4E09505 /* geometry.cpp */; }; 39D6435B10073B85A499AFD8 /* dcbufcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBC5A5797B0D369291A76D6E /* dcbufcmn.cpp */; }; - 91BC7802C15337CDA84C3742 /* statline_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */; }; - 2FE10EA678C73523836FCC1C /* richtooltipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */; }; - 1E166FC1A7B3371FB038B172 /* fldlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */; }; - 6D073876E1753549B5EEFDDA /* tif_compress.c in Sources */ = {isa = PBXBuildFile; fileRef = CA0D5D47D62A3148BA51B31B /* tif_compress.c */; }; - 774A89998E09308CBFB03EE0 /* imagxpm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C85865D28DC31649440A921 /* imagxpm.cpp */; }; - 2FE10EA678C73523836FCC1D /* richtooltipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */; }; - DF8CE011EAC23F73BDA1C44D /* scrolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */; }; - 8A662992FFCB32E99D11950D /* commandlinkbuttong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */; }; - 8E674574343A3C009B1BCD01 /* tif_codec.c in Sources */ = {isa = PBXBuildFile; fileRef = 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */; }; - C987310872D1396BAF716E5B /* webrequest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA9E372A64B3B808A64B178 /* webrequest.cpp */; }; - DB9565CC4EAE3BCB9F490620 /* xmltok.c in Sources */ = {isa = PBXBuildFile; fileRef = 8685B8ED68F23DB0B770FD74 /* xmltok.c */; }; - 6C1171E3FB7137CCB9E3F537 /* tif_zstd.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B98123FD57731139044B064 /* tif_zstd.c */; }; - 6E2C2E8AA1713ADE9C338379 /* tif_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 726C0457DF1232C793918DC1 /* tif_zip.c */; }; - 98DF13E96160304EBB905E73 /* jcmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = 810EB7316DF3344197C78EC0 /* jcmainct.c */; }; - 522E6CF2A62F34259BCE2DE4 /* tif_flush.c in Sources */ = {isa = PBXBuildFile; fileRef = 305614D19CF23CB2B14A5B2E /* tif_flush.c */; }; - 81B742D64BEB373DB705947B /* m_list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4028ABB08C63AB59F5F240B /* m_list.cpp */; }; - C259D01CC62533D296EF023A /* scrolbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */; }; - A92439BAFD3A30A29DD93133 /* apptraits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A23A8BC7373D4BBD72851D /* apptraits.cpp */; }; - B01C4EF49CF9390DA93A3504 /* jidctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C131F7BF8A83960ACB26242 /* jidctflt.c */; }; - 159E4248CB1333AD841D9F05 /* LexYAML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9CC7C6FFD67233788EEDFC5E /* LexYAML.cxx */; }; - F1E4D7CA634E33808AE3B524 /* fontenumcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 373242CD08F330208A7CF438 /* fontenumcmn.cpp */; }; - 46395873DB1C3B7FA81DE5FA /* LexerBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */; }; - D6CF7416CA6A3CFF8FDFD49C /* nativewin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9BC8BFDE41F93504B7A51D08 /* nativewin.mm */; }; - 6A032420671B375D81273715 /* valnum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 684D92E552BE313CBE0A88AA /* valnum.cpp */; }; - 32988828498D32B2B3F8A983 /* bmpsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741E9B48274638CD9DD73698 /* bmpsvg.cpp */; }; - 7C52E7CC12463941B0E4D403 /* statbmpcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */; }; - 0FDDE8E193743F3A8CBDC67C /* richtextprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */; }; + 4657E7382E9E3EDC8DE2401E /* mimetype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C97C1F26B5A38C49543060C /* mimetype.cpp */; }; + 27B5431DC79733CD8D403E88 /* pcre2_context.c in Sources */ = {isa = PBXBuildFile; fileRef = 3026D20A03E53F1DB40FB35A /* pcre2_context.c */; }; + CD35A576FD363FD49C3AC4B3 /* LexAda.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 375E7A99FF4C38FA9E223772 /* LexAda.cxx */; }; + FD38B04026F930CC80BC9481 /* m_pre.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61658C3EABB4341AA38C691E /* m_pre.cpp */; }; + 6CA1BAEBBDB4336E9E201F95 /* protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */; }; + C34B8675439F39B4845FFC50 /* xh_listb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */; }; + B59FC7345C383D9099391AC3 /* mimecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */; }; + 603DF49D176737D383CE4F01 /* choice.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F838F853CB03CF7932C08C3 /* choice.mm */; }; + 67A0583ADD8C35B8B9BA3D13 /* checkbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 81708CFA21A03013ACB8DDD7 /* checkbox.mm */; }; + 91364FDD73053139BBAA313B /* Accessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D2DE67C976CF3004A8FE883A /* Accessor.cxx */; }; + 11818B68C5263EB68D708845 /* jdtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 4549845C0751356A907C23E0 /* jdtrans.c */; }; + 0D79F1B4EF44393AA324213F /* LexPLM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */; }; + 76D1A1A49CC831FFB9EBB1F5 /* LexOpal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */; }; + F2F2963D8ECC32D39FDBF102 /* tif_write.c in Sources */ = {isa = PBXBuildFile; fileRef = E9B992CB6C28339FB0CA5E27 /* tif_write.c */; }; + 0C9A379D97B133FA831175A7 /* printdlg_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */; }; + ABBE59AC73E135D48965F209 /* xh_vlistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4466008861AA37CFB13A46EF /* xh_vlistbox.cpp */; }; + 4E2737AC738431EB9898B8B7 /* gzwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */; }; + 00E12455C98032E18378EE5F /* pcre2_newline.c in Sources */ = {isa = PBXBuildFile; fileRef = A208BFC0C8C43847A9620ADA /* pcre2_newline.c */; }; + 9678C2B19D293818AA8E9E0D /* LexSpice.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4592464D4868329897F3864D /* LexSpice.cxx */; }; + 10B5C2A72C713A678458CD9D /* pcre2_ord2utf.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */; }; + C005C2D547E735E9B081658E /* prntdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */; }; + D5A25AC579F436509805335A /* appbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95A156A823B536DE8476E4F9 /* appbase.cpp */; }; + B37802B0A90133C68EF93DDA /* LexInno.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */; }; + 36DB80FD5B153E9099DB6912 /* imaggif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */; }; + 0836590D35FE37988DE70442 /* combobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */; }; + AAC2AC9C49F1366D8BD20F5F /* LexECL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1AD9605C9385374C87FAC9BC /* LexECL.cxx */; }; + 0C2073A011EA36B8AD906DA4 /* LexCIL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7F18C26877336DBE638D75 /* LexCIL.cxx */; }; + 00E12455C98032E18378EE60 /* pcre2_newline.c in Sources */ = {isa = PBXBuildFile; fileRef = A208BFC0C8C43847A9620ADA /* pcre2_newline.c */; }; + CE32C5250F2834D4B81BE898 /* appprogress.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD91A34971FB3D0299B894A5 /* appprogress.mm */; }; + 65E8A5F333D7336C816F0D0D /* variant.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31F4B9B03D52339B8F82C114 /* variant.cpp */; }; + EE0EA850822E35F596B5EBBB /* artprov.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29387393C07C39DB8FF1663B /* artprov.cpp */; }; + 30493B486DFF35AF80D12C49 /* stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */; }; + A92439BAFD3A30A29DD93131 /* apptraits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A23A8BC7373D4BBD72851D /* apptraits.cpp */; }; + 45FE206BBAD13DDCA1EA41D1 /* treebase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BA6ADD758693BD180D3275B /* treebase.cpp */; }; + 30493B486DFF35AF80D12C4A /* stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */; }; + DF3B927516FB365E865A9781 /* LexerModule.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */; }; + 6A081BF19747385CB4C18780 /* radiobut_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */; }; + B6C364CB4AE33708A862B4B4 /* srchctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D46A36564C78312CAC538E93 /* srchctlg.cpp */; }; + 86BE5213D3F131D8A6862679 /* hid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 160EB9744CB63A0B81DC651F /* hid.cpp */; }; + 1CD4F67F48CF3A5FA477D86E /* datavcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */; }; + 15D65A523EB23EC385C05E0B /* jquant1.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */; }; EDD5725CF41336EFA7FB3009 /* framecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A54B80C17F823CB5900AD2E8 /* framecmn.cpp */; }; - 9A178ED42D96329D8CBF9B8A /* tif_predict.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */; }; - 7569F0BC3C603EB191680890 /* collpaneg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84758329F2163F00A9C005DF /* collpaneg.cpp */; }; - 9065A4BE3D0433B88CF45572 /* richtextbuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */; }; - 2020EE3C45743B53BE8C7F39 /* LexCoffeeScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */; }; - B8FEEC2C94183AB69C963178 /* headercolcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */; }; - D54A162E557834A48F4646AB /* advprops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 326723AEB79A305F90D6B41D /* advprops.cpp */; }; - D5A25AC579F436509805335B /* appbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95A156A823B536DE8476E4F9 /* appbase.cpp */; }; - 25B0940CABAB39CD90C6F3C5 /* intel_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 994AF74DF2A13FF09A215853 /* intel_init.c */; }; - 1A70DDEDF9E13FF4BDA390EB /* bmpbndl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */; }; - 21F74D4D4D84375AB155FD5C /* stattext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95186FEF3DEF39D8B1157BD5 /* stattext.mm */; }; + 65FCDBFFF3F138A3ABBAA650 /* xh_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */; }; + 795613831EC8332A83FF26E7 /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7E99B35A98D30818120B002 /* string.cpp */; }; + 1BCC944F5E0936F5830F03E8 /* windowid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B9B85572D0312BBF2878DB /* windowid.cpp */; }; + B189DB62AE9F30A1B613756B /* bmpcboxg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */; }; + BF8C33B7CB3A3ECE814A95FC /* tokenzr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */; }; + DC928C38CA8331F18FF00BCB /* tif_lzma.c in Sources */ = {isa = PBXBuildFile; fileRef = 3088384F07C63A5DB3581656 /* tif_lzma.c */; }; + 4657479AF35533AEB7876676 /* helpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB30516233A39BE809405AA /* helpbase.cpp */; }; + 1749412E53B9311DABA71DDC /* bmpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */; }; 1937FBA0A0DD32A8A743CFE2 /* valtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8701E1CF2B352B945C17E5 /* valtext.cpp */; }; - 8B60964DA1DF3F3DB40BE124 /* datavgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F3D473DC5123EDAB767045C /* datavgen.cpp */; }; - 86B0D280A43C308CAC14BE26 /* CaseFolder.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F52DCBC0442233738B39138E /* CaseFolder.cxx */; }; - 908957F65B7E36F8BF3858DD /* PlatWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47FF6D792CA234C395692118 /* PlatWX.cpp */; }; - A08165E5D38E3EF6962A7AEA /* DefaultLexer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */; }; - 5792675690843C6AA4125A73 /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77F5E7BCD9B2307D8DBCC052 /* font.cpp */; }; - 86BE5213D3F131D8A686267A /* hid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 160EB9744CB63A0B81DC651F /* hid.cpp */; }; - 9455B49669853E71BD4FD965 /* richtextformatdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */; }; - FECC98B53C0F3106AB04E6A0 /* tif_fax3.c in Sources */ = {isa = PBXBuildFile; fileRef = 30FD1048328234E59D319863 /* tif_fax3.c */; }; - 664A54F914443110B7BB692A /* tglbtn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */; }; - EDD5725CF41336EFA7FB300A /* framecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A54B80C17F823CB5900AD2E8 /* framecmn.cpp */; }; - 23CECD8647C037E0B41DF0D6 /* LexA68k.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7020ADB5D3E0375E875B418B /* LexA68k.cxx */; }; - 52C0984A2A4F31BC885519B1 /* xtistrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */; }; - 0D6596A44A8C37DE85D578F6 /* Document.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 71DB140E670738839EC42C2B /* Document.cxx */; }; + A423177BBC0F3BE5A436B4B7 /* propgridpagestate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */; }; + 0E23F212CBDD33848DEBCA6E /* webview_chromium.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBA9036479943A4990CEB3AC /* webview_chromium.mm */; }; + 3D424F4B33653A00AE9B623A /* m_tables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 082CA018FB883999839C1DCE /* m_tables.cpp */; }; + 36B0B923B836358D9DB0AE11 /* xh_panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */; }; + 3C665EA42ECC3E5990BA347B /* EditView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 430739CB8B95336ABB372EC7 /* EditView.cxx */; }; + A486A28E216D320AB57452D3 /* lzmastream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */; }; + A423177BBC0F3BE5A436B4B8 /* propgridpagestate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */; }; + 346D274E17673A01B0177D5B /* sockunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7661E9E09A397790ED9545 /* sockunix.cpp */; }; + A3C4D47A84E8362295867526 /* LexPOV.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8EECA8EB93BF3C7A9CC827AD /* LexPOV.cxx */; }; + CFF73578F04D357E83D1D830 /* lboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */; }; + 49260580A7F23B569A827D40 /* filefn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58421C141C9E31C6A7A3C183 /* filefn.cpp */; }; + 805CCAE64D023561AD334B53 /* popupwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 530DC2E26BF2313E8702AD43 /* popupwin.cpp */; }; + 0ADC8DBEE80D36B0BB9B058A /* LexASY.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A82C367B86F83981803D55DB /* LexASY.cxx */; }; + A4F2426F36653C6D87EC18AE /* activityindicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5814208070CF3D899F132BA1 /* activityindicator.mm */; }; + 16021CFD78623B8CBD08FC20 /* LexVHDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */; }; + 81244C52741332A8B92E5977 /* LexRaku.cxx in Sources */ = {isa = PBXBuildFile; fileRef = ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */; }; + 42ED9BAFD6E936849F1D36CC /* xtixml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4048A3523EC03409BD899BEF /* xtixml.cpp */; }; + 13A71672A59233D3A9B2D5E9 /* CharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B883F991159731DCB2717A21 /* CharacterSet.cxx */; }; + F0B3F484C38C3BA0B9927CDA /* docmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */; }; + CB2E99E8FB7D3269A333A55F /* window_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26D7C4995D7A35A1854B533F /* window_osx.cpp */; }; + 020BBB417207393F8C60EFB6 /* LexFortran.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86A0C3603C8A343AAFBD2CE0 /* LexFortran.cxx */; }; + D8ADDD24BEAC3D94B3388D3E /* LexCOBOL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */; }; + 75DCE6FF00E93C5D93970843 /* arttango.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9988CBB0772A3539970162FA /* arttango.cpp */; }; + D83B32B788EC310D919E0DF7 /* imagpcx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */; }; + DF8124E5E17D386A84CEEA27 /* LexLisp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 40586C8986443431A64EB066 /* LexLisp.cxx */; }; + 8DE45CEAF2DD3C22AA019F75 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CF73F49AEC238C99CE89845 /* deflate.c */; }; + D00AF125FCB63A7A8F9B87DE /* taskbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4692909E4B823F71822B13F8 /* taskbarcmn.cpp */; }; + 0B4AF44DC0C439AD83CDC37E /* Indicator.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4FDE5A962FA234FA83A605AD /* Indicator.cxx */; }; + AC91349D7F0E37739B1F5165 /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEF6B3FB66243812969E5BD1 /* palette.cpp */; }; + AD07124BBA613B47829F0693 /* sockosx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4969528429903F15882F5391 /* sockosx.cpp */; }; + BF068F3C06473D8CBC55D507 /* PositionCache.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BCD873D873A53BBF955D8A4E /* PositionCache.cxx */; }; + 7BD3887F603E3704969A54E1 /* pcre2_chartables.c in Sources */ = {isa = PBXBuildFile; fileRef = 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */; }; + 27E73CA5C35A30CE89946ECA /* slider_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D215A0D67563350CB4EECB06 /* slider_osx.cpp */; }; + F016C51053373E658ED4C9AA /* helpext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF376BC55EA73F5FB7328142 /* helpext.cpp */; }; + CEC6430AEB6E3200BFA75D09 /* jfdctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */; }; + F9C5EAC42CCF3267B4100BAE /* wakeuppipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */; }; + EB52C6A915943813932944FE /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04B /* control.cpp */; }; + F6B85CD918E93923BE631B96 /* fs_filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */; }; + 0743AE8613F535A0ABB79315 /* intl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC8BB1AABB3D393EBA527060 /* intl.cpp */; }; + D4C87E227A28391891D8908A /* filename.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */; }; + B6C364CB4AE33708A862B4B5 /* srchctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D46A36564C78312CAC538E93 /* srchctlg.cpp */; }; + F501AB044AAC39DCB8C0B3E1 /* editors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C7F740A55E39FD890B3C7F /* editors.cpp */; }; + BFD4B8871B3934048B63141A /* languageinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67D76B026121359F9B22F8B0 /* languageinfo.cpp */; }; + 23965E313EDC3BBE9B2FA1C5 /* imagpng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24396D584D053948A3FF0DCD /* imagpng.cpp */; }; + 353B584AD0C03919A57A3048 /* affinematrix2d.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD09A813E10A31C19554B425 /* affinematrix2d.cpp */; }; + 84997126352137E798CD258A /* spinctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59572A234F0636D78BFD9F6B /* spinctlg.cpp */; }; + ABCD15C4AB37396EA17B7B28 /* translation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AC666417602346EA583709E /* translation.cpp */; }; + D98FABF75BCE3AF18C91B42E /* LexHex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */; }; + 3694B007E88A3D8C8CB952F0 /* LexRegistry.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A737317EDE0F3921B1412966 /* LexRegistry.cxx */; }; + 5700B7F9166A37FDAA72E9DD /* dnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E53493CB84A30AE8C1CD721 /* dnd.mm */; }; + 2C95DFA8EE463487956B4EB4 /* infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */; }; + 2DF74933A90E34129F1BEF72 /* dnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA72410F615B3A78A6340532 /* dnd_osx.cpp */; }; + 16A382A265DE32FABC318F70 /* fontdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB170BF78EFE39D692E11985 /* fontdlgg.cpp */; }; + 4B88254FF9963833A276A64D /* snglinst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */; }; + AAABEE399008310A8BC9BE43 /* imagtga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7029BB5751398AA02D8C24 /* imagtga.cpp */; }; + 51F44CB1D9AD3CBDB52EE93D /* LexDiff.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */; }; + EDCA35F1555F3509895CCA6A /* textctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */; }; + 049052C49B0B3810BE0179C9 /* dataview.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB6963739198360DB3DBCC6C /* dataview.mm */; }; + 3D22FC202D903007AEE3D164 /* fdiounix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */; }; + 96B507455762391688B5E502 /* xh_listc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */; }; + 45AB45C6B24A3983B22E56A7 /* dataobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 271B4B77622B3411A7BF6634 /* dataobj.cpp */; }; + DC6B669C9A78398F914AEE55 /* fontutil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FF661188B563D27A11F5716 /* fontutil.cpp */; }; + EE0EA850822E35F596B5EBBC /* artprov.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29387393C07C39DB8FF1663B /* artprov.cpp */; }; + F3CB42BB6D983675862C01F3 /* xh_toolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */; }; + 0FFFFA2F762B3160955D1D89 /* gauge_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC28591B403B32B7AFCC079D /* gauge_osx.cpp */; }; + 33BA7D6B9DC3378B820DEB87 /* notebook.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E8036758CEC3296B555E4DF /* notebook.mm */; }; + 82FA4AA043213728AC266700 /* wizard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */; }; + 57F8001809BC3864A5FA798B /* PlatWXcocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18ABDAF9EF723072A7708009 /* PlatWXcocoa.mm */; }; + 1749412E53B9311DABA71DDD /* bmpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */; }; + 6292B023DBF4337A91404AD0 /* preferencescmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A046179831F63824A67B509B /* preferencescmn.cpp */; }; + 0E024D145DDD38ACAE68F462 /* toplevel_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */; }; + 800CFCEDBB7938338C65EEAC /* notifmsgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B233180893DB3328AF4847DA /* notifmsgcmn.cpp */; }; + 5F6B4F226B473AACB7AC8DF5 /* xh_slidr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */; }; + 028257C52CAE3038AA862C36 /* stdstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE16011AD6323AAC8616F973 /* stdstream.cpp */; }; + 0095084719983B878378CA2A /* pngwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 69A6CAF721E53E83B4820DE6 /* pngwrite.c */; }; + 88A43B1C5A7438838DE97B95 /* tif_luv.c in Sources */ = {isa = PBXBuildFile; fileRef = 66FDA882451239EA8DF2E0B5 /* tif_luv.c */; }; + C2DEE063B5E032C1BD2B5027 /* xmlparse.c in Sources */ = {isa = PBXBuildFile; fileRef = A92B6033D8233DB1821F193B /* xmlparse.c */; }; + 3D424F4B33653A00AE9B623B /* m_tables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 082CA018FB883999839C1DCE /* m_tables.cpp */; }; + 8E674574343A3C009B1BCD00 /* tif_codec.c in Sources */ = {isa = PBXBuildFile; fileRef = 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */; }; + E44265D541BC3970B5F24001 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 32BACA8214D137E684CD8DA5 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 17DA56F9BEEA357F99439BDF /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 17DA56F9BEEA357F99439BE0 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 17DA56F9BEEA357F99439BE1 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 15CCCFC2670F3C2DB66026F5 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + E44265D541BC3970B5F24002 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679B2 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D90290170 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DA6 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D774 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BE2 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 15CCCFC2670F3C2DB66026F6 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A537112F /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + E44265D541BC3970B5F24003 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679B3 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D90290171 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DA7 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D775 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BE3 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 15CCCFC2670F3C2DB66026F7 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A5371130 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + E44265D541BC3970B5F24004 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679B4 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D90290172 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DA8 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D776 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BE4 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 15CCCFC2670F3C2DB66026F8 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A5371131 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + E44265D541BC3970B5F24005 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679B5 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D90290173 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DA9 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D777 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BE5 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 15CCCFC2670F3C2DB66026F9 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A5371132 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + E44265D541BC3970B5F24006 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679B6 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D90290174 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DAA /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D778 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BE6 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 15CCCFC2670F3C2DB66026FA /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A5371133 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + E44265D541BC3970B5F24007 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679B7 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D90290175 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DAB /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D779 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BE7 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 15CCCFC2670F3C2DB66026FB /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + E44265D541BC3970B5F24008 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 32BACA8214D137E684CD8DAC /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 17DA56F9BEEA357F99439BE8 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 181655C7084A31E09E41E03A /* libwx_osx_cocoau_adv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAFC67A0C213E83BC2E072C /* libwx_osx_cocoau_adv.dylib */; }; + 15CCCFC2670F3C2DB66026FC /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A5371134 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + E44265D541BC3970B5F24009 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679B8 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D90290176 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DAD /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D77A /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BE9 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 181655C7084A31E09E41E03B /* libwx_osx_cocoau_adv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAFC67A0C213E83BC2E072C /* libwx_osx_cocoau_adv.dylib */; }; + 15CCCFC2670F3C2DB66026FD /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A5371135 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + 254028D56649374E8D3CC85C /* libwx_osx_cocoau_html.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D9F65758E0363AF9AEC59A47 /* libwx_osx_cocoau_html.dylib */; }; + 60D6496B6C613604978DEDDB /* libwx_baseu_xml.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C6CC76872BA32D2B61EB8AB /* libwx_baseu_xml.dylib */; }; + E44265D541BC3970B5F2400A /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679B9 /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D90290177 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DAE /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D77B /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BEA /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 15CCCFC2670F3C2DB66026FE /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A5371136 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + E44265D541BC3970B5F2400B /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679BA /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D90290178 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DAF /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 289FC2870949331391413017 /* libwxscintilla.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 23268CF4AF7431C3BCEBAEC8 /* libwxscintilla.a */; }; + 70F8AD1F91213D6DB150D77C /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BEB /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 15CCCFC2670F3C2DB66026FF /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A5371137 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + E44265D541BC3970B5F2400C /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679BB /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D90290179 /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DB0 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D77D /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BEC /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 15CCCFC2670F3C2DB6602700 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + E44265D541BC3970B5F2400D /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 32BACA8214D137E684CD8DB1 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 17DA56F9BEEA357F99439BED /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 181655C7084A31E09E41E03C /* libwx_osx_cocoau_adv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAFC67A0C213E83BC2E072C /* libwx_osx_cocoau_adv.dylib */; }; + 15CCCFC2670F3C2DB6602701 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A5371138 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + 254028D56649374E8D3CC85D /* libwx_osx_cocoau_html.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D9F65758E0363AF9AEC59A47 /* libwx_osx_cocoau_html.dylib */; }; + 60D6496B6C613604978DEDDC /* libwx_baseu_xml.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C6CC76872BA32D2B61EB8AB /* libwx_baseu_xml.dylib */; }; + E44265D541BC3970B5F2400E /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679BC /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D9029017A /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DB2 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D77E /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BEE /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 15CCCFC2670F3C2DB6602702 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A5371139 /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + E44265D541BC3970B5F2400F /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679BD /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D9029017B /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DB3 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D77F /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BEF /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + 60D6496B6C613604978DEDDD /* libwx_baseu_xml.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C6CC76872BA32D2B61EB8AB /* libwx_baseu_xml.dylib */; }; + 84B3625464F732C3A79E1315 /* xh_bmpbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */; }; + 181655C7084A31E09E41E03D /* libwx_osx_cocoau_adv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAFC67A0C213E83BC2E072C /* libwx_osx_cocoau_adv.dylib */; }; + 15CCCFC2670F3C2DB6602703 /* libwx_baseu.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */; }; + 56AD3B826DF93C39A537113A /* libwx_osx_cocoau_core.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */; }; + E44265D541BC3970B5F24010 /* libwxexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */; }; + 16C883E8E27D3DA7BBA679BE /* libwxjpeg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */; }; + 49029F880CB8345D9029017C /* libwxpng.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D78E858CE339374FAC0B1401 /* libwxpng.a */; }; + 32BACA8214D137E684CD8DB4 /* libwxregex.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AD4A752750F3200A6C3BE59 /* libwxregex.a */; }; + 70F8AD1F91213D6DB150D780 /* libwxtiff.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */; }; + 17DA56F9BEEA357F99439BF0 /* libwxzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FB355C2107A835E5B8F15C29 /* libwxzlib.a */; }; + C1E5799141603A75A26BEEA7 /* xpmdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C562D5885AFF3E15837325CE /* xpmdecod.cpp */; }; + A3321FE2A87D3BD69E0BB00A /* notebook_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5248A45AB113341EAC361910 /* notebook_osx.cpp */; }; + EC3D181D65F33E09A675FFF3 /* addremovectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 964578C24B9F390AAD08576E /* addremovectrl.cpp */; }; + 25C5C1713C0B39AC8EB6A38E /* taskbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A4D36DE66EC3EB09E883D6B /* taskbar.mm */; }; + 1569BB4728693B6285623A24 /* pngerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A0650754DC2358CA5933B28 /* pngerror.c */; }; + A0BA01A85C303C78A3130711 /* art_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */; }; + 32486A808EBC3E088598D51C /* jcprepct.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FE0455EBDC63D82B2D88587 /* jcprepct.c */; }; + 7B372FEA276438C186F7E341 /* RunStyles.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */; }; + 1C544DADDA6F3D62A5E25E93 /* LexerSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CF502E0E4D853CBBBEC885EF /* LexerSimple.cxx */; }; + 58AABAD40AA236438347DDDE /* evtloop.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D2549709E0133C9A267E3A5 /* evtloop.mm */; }; + F6288F388B8C33FD85E9A157 /* LexerNoExceptions.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */; }; + 3DA70DE666D838A59642A4E7 /* LexAsciidoc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */; }; + 31FEAB56919D372993CAD89C /* pngrio.c in Sources */ = {isa = PBXBuildFile; fileRef = A06AB1974DB93EE2999EC75C /* pngrio.c */; }; + FFF5BFBE600E35FAB7EA522C /* fileback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC12D557950A3B0D89D9F2F3 /* fileback.cpp */; }; + A2769D1659AE3CA3B58C2CAE /* wincmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */; }; + C05BDB0B5F5A33A9A57FF014 /* m_links.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 080597FC0436378E96EDA94B /* m_links.cpp */; }; + E62F8E49FD5035D8BC71BB4A /* LexGAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */; }; + BDB7B2AD26CB356B8BEAAECE /* jchuff.c in Sources */ = {isa = PBXBuildFile; fileRef = DC0FFDC7A6163F2DA73B84EB /* jchuff.c */; }; + 4CB3626391CE34D4B1F71AA0 /* jdatasrc.c in Sources */ = {isa = PBXBuildFile; fileRef = DECAF5DD80383A2CA76EB383 /* jdatasrc.c */; }; + 31380AD4F5BD38A6B9212FE0 /* LexR.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7255468B6D5F3D8697994A53 /* LexR.cxx */; }; + B5C7FD8C27F43F3289A77FC9 /* utilsunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */; }; + 4788F736CD9C324E8A3DFA74 /* LexEScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 58EFF24DE2E737CA8A164F5C /* LexEScript.cxx */; }; + 50D7E093424138C88BB50D27 /* jcsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 53D06E47477B3E32BB6B915E /* jcsample.c */; }; + 4BAFAE70A6B1313B96D86630 /* page.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59ED0C057D8F388A89DC7177 /* page.cpp */; }; + 758629DA468A3EF7B1C15241 /* gifdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */; }; + AAABEE399008310A8BC9BE44 /* imagtga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7029BB5751398AA02D8C24 /* imagtga.cpp */; }; + F07D84D124F23E7FA11CF148 /* extended.c in Sources */ = {isa = PBXBuildFile; fileRef = 033B94A9AC8A3370A794503F /* extended.c */; }; + D3FB75C8E3A73AE38EE8A6F6 /* selectdispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */; }; + F7D10B6E0CBA32EFAF79C77C /* xh_dirpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */; }; 2F35A207C3993DE08E4FE0B2 /* timerunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */; }; - 4788F736CD9C324E8A3DFA75 /* LexEScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 58EFF24DE2E737CA8A164F5C /* LexEScript.cxx */; }; - 595DCB164D55342EB86604EE /* hashmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6636144CDE83E8E85270FAF /* hashmap.cpp */; }; - ACD644CFA85A3B70A3E3B119 /* jcparam.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F41EDEB298538CC86FF6DC1 /* jcparam.c */; }; - 1CC5AEC6C08E3600801CDADB /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 95B4EDF38F8A3E5EBAFF560F /* trees.c */; }; - A1A7B833061C35B4AABD093E /* preferencesg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */; }; - 7F62946D497A32CE857F65C9 /* pcre2_maketables.c in Sources */ = {isa = PBXBuildFile; fileRef = D016F584D14C31E192DB3179 /* pcre2_maketables.c */; }; - C005C2D547E735E9B0816590 /* prntdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */; }; - A9B91FC69E473BE18895ABAB /* InList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCBD877191233EE9984112D2 /* InList.cxx */; }; - 7C5552FA058034238F485902 /* dbgrptg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 182C8AD4F822375495795B43 /* dbgrptg.cpp */; }; - 3C5E1A45A57B3169A4C073DA /* LexVerilog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */; }; - 5519BA1F2463308FAC4A0CA0 /* LexAVS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 57E4784E521339BEB971D81D /* LexAVS.cxx */; }; - 187F921A95DA3594B0AD980E /* gridsel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26381308E32A3A179E7A9B40 /* gridsel.cpp */; }; - F5D2146C94E733FAAB6D286B /* threadpsx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB466912FDA23F8B87A00A3C /* threadpsx.cpp */; }; - 774A89998E09308CBFB03EE1 /* imagxpm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C85865D28DC31649440A921 /* imagxpm.cpp */; }; - BBAABF3C693E37D3B0FF2503 /* colrdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */; }; - 6978D7A20DA93A329DDD1384 /* socket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40CE02524DD4385AB2C3DF95 /* socket.cpp */; }; - 830A61EA04FD367C9EB6A757 /* fswatcher_fsevents.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */; }; - 2386B575BC3931D2AF86CB34 /* fontdlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38CEA4A3579331EF808B8363 /* fontdlgosx.mm */; }; - EBF2D44758003221A22202BC /* colourcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D61240ABD70328BA5789663 /* colourcmn.cpp */; }; - 37DD17F479A1371ABF3589B9 /* xh_wizrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */; }; - F38202271C6131908C358DED /* mstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC3D1E222FD93A69B1D1366E /* mstream.cpp */; }; - D66F55C93D1130F488970C07 /* pcre2_match_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */; }; - BF068F3C06473D8CBC55D508 /* PositionCache.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BCD873D873A53BBF955D8A4E /* PositionCache.cxx */; }; - 020BBB417207393F8C60EFB7 /* LexFortran.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86A0C3603C8A343AAFBD2CE0 /* LexFortran.cxx */; }; - E17048DEEF1138318314F1D1 /* pcre2_valid_utf.c in Sources */ = {isa = PBXBuildFile; fileRef = FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */; }; - 0164A65CDB7A334A8E9AA4C1 /* dynload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */; }; - 2D4D105CA9BE3FA6995A6000 /* tif_dumpmode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */; }; - 1DE75213D296323B815A02BF /* statline.mm in Sources */ = {isa = PBXBuildFile; fileRef = 743EF8DB16CE371DA5C66623 /* statline.mm */; }; - 0813551C951A3AD1A5EF01B2 /* imagbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84098A475939BB9EE87E70 /* imagbmp.cpp */; }; - BD2B17EB72E73A6EB6E0B270 /* dcmemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 343D4FDD5CC030618EF24729 /* dcmemory.cpp */; }; - E6CA1EB5550F3930BFE286CD /* tglbtn.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CFC6875EF4732E88E029065 /* tglbtn.mm */; }; - F24F637D59F637CA9A7E23C9 /* xh_filectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */; }; - 3554C88010CE3D2A8970A135 /* sashwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */; }; - 427E6AF88CF73D799206E37D /* checkboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FC2F076657431458896115A /* checkboxcmn.cpp */; }; - A3C4D47A84E8362295867526 /* LexPOV.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8EECA8EB93BF3C7A9CC827AD /* LexPOV.cxx */; }; - 31DD19A942283FA8810B6382 /* numformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BD8DAB407D231EFA5B2CAE5 /* numformatter.cpp */; }; - 4666CDC48BA9301EA283C000 /* choice_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */; }; - A283187810EB32DAA173BD35 /* artstd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24E82A05E9A9323287CDB15B /* artstd.cpp */; }; - 5116CE330E333724A66982E5 /* rearrangectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972BC9B2B0D438EFB12BCE1E /* rearrangectrl.cpp */; }; - DFEB8DA3D42734949CB1E1AB /* clipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 239D386E9D7D39C5A1E859C6 /* clipcmn.cpp */; }; - 46A4CCF128FC3EB092074DC5 /* property.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E1F571B01F34D4AB70CA18 /* property.cpp */; }; - 7EF89F935314301381802FAD /* filectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2334539088B036BEAB230D1C /* filectrlg.cpp */; }; - 1CD4F67F48CF3A5FA477D86F /* datavcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */; }; - FE2DBCCC1D0B36A3BE4493C2 /* fs_arc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88F2BA2F0598342186A484B5 /* fs_arc.cpp */; }; - 0A2A4D2DC8F63FE1AC0BFAB0 /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2024D29170D3B50A4DFDE11 /* base64.cpp */; }; - 403FBA20CEFE3EAFB4E6B906 /* dir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7332A03D93D3DABB050615D /* dir.cpp */; }; - B0FD1B96EAE635AFBFCF2C93 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C045 /* secretstore.cpp */; }; - E5D698D2606A304DA743AF94 /* grideditors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66426B63AA3E3A279936C034 /* grideditors.cpp */; }; - 0C3F48DBD05E3566A4CA6D45 /* LexAsm.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A65399C8A6D636139E362119 /* LexAsm.cxx */; }; - 14D6D5F8F5ED3C71936DD2AF /* button.mm in Sources */ = {isa = PBXBuildFile; fileRef = C06FED83BF933DF98C2466AE /* button.mm */; }; - 22EC132AEF863BFBAA6EDEC4 /* LexPowerPro.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */; }; - CFDBB80A4C9A3BA092273937 /* animatecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */; }; + BA57708D2D563967A0D1F003 /* LexTxt2tags.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */; }; + ED8D23D79FF33ED380FE09EB /* scrlwing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */; }; + 6BF19C7CA9E93D989C210FE3 /* dseldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1197B997B1D139C5AE4D198A /* dseldlg.cpp */; }; + 3D762A0BBF1B39B88A769633 /* helpwnd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */; }; + 1CBF34ACA39330028A5EA9AC /* xmlreshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */; }; + 4156FDB73D0A397A870E4302 /* overlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD8031E28A3C9CB7C45784 /* overlay.mm */; }; + ABCD15C4AB37396EA17B7B29 /* translation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AC666417602346EA583709E /* translation.cpp */; }; + 4C31B77B28343F20B4973366 /* LexJulia.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */; }; + 7DEC57D6CE8232A09EF74219 /* PropSetSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */; }; + AAC2CB4D851230008AE4ABA1 /* dcscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */; }; + 42AC484FDD7D3E948CEA801C /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = B5370A676AAC32419D7FDD87 /* inflate.c */; }; + 3C665EA42ECC3E5990BA347C /* EditView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 430739CB8B95336ABB372EC7 /* EditView.cxx */; }; + 95AD56D602CF3C5085602AF9 /* geometry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC0A61629E635FAB4E09505 /* geometry.cpp */; }; + 8966F77CC97B3ED780C8F138 /* xh_bmpcbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */; }; + 90BC965B1A1F35A3B2C9D1C9 /* Decoration.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BF1C44D726E63B18A98006EC /* Decoration.cxx */; }; + 3B8A54D5E5A53607A6F7979B /* arrstr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A57CF60203F53459A03951A9 /* arrstr.cpp */; }; + 8E674574343A3C009B1BCD01 /* tif_codec.c in Sources */ = {isa = PBXBuildFile; fileRef = 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */; }; + 760C729E41D93CC1AA2B4E0D /* hyperlinkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */; }; + 2F7328AC75393951B08F75F1 /* pcre2_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 25E03E349FC13E4A9428B94E /* pcre2_error.c */; }; + 0FDDE8E193743F3A8CBDC67C /* richtextprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */; }; + F9C5EAC42CCF3267B4100BAF /* wakeuppipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */; }; DFEB8DA3D42734949CB1E1AC /* clipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 239D386E9D7D39C5A1E859C6 /* clipcmn.cpp */; }; - 84997126352137E798CD258C /* spinctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59572A234F0636D78BFD9F6B /* spinctlg.cpp */; }; - EA02FA6D3B003F8F8A2963C8 /* toolbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */; }; - 758629DA468A3EF7B1C15242 /* gifdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */; }; - 98DF13E96160304EBB905E74 /* jcmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = 810EB7316DF3344197C78EC0 /* jcmainct.c */; }; - FF50EC0EC5F23DF890C6E961 /* colour.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D1F14339D1C331087650931 /* colour.cpp */; }; - 8FDC800D873F30E282691833 /* pngrtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 87799D3168B43EB7B5686826 /* pngrtran.c */; }; - 1E2AB43075973AE59A8D89C3 /* fontdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */; }; - 1CBF34ACA39330028A5EA9AD /* xmlreshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */; }; - EEB0B28903693C7E9D071930 /* glcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E08A51FA8D8A361681B07295 /* glcmn.cpp */; }; - A2769D1659AE3CA3B58C2CAF /* wincmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */; }; - 61A2B54FD2E33C759CF5A5E9 /* pngrutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 358D0A3AC73F322EA732D020 /* pngrutil.c */; }; - D36E76A4CAF5352D9397E1FF /* fdiodispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */; }; - FF7DB2884F6E3C5DB4BDF61D /* fswatcher_kqueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */; }; - 309C0A78D45C3AB7B8778B5A /* pngset.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E463A493FD930DE80E58608 /* pngset.c */; }; - 1E166FC1A7B3371FB038B173 /* fldlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */; }; - 88A43B1C5A7438838DE97B95 /* tif_luv.c in Sources */ = {isa = PBXBuildFile; fileRef = 66FDA882451239EA8DF2E0B5 /* tif_luv.c */; }; - 523FB2A8435A3324A8E1B372 /* PerLine.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9389DAF8B91030B7AAB029FF /* PerLine.cxx */; }; - EB52C6A91594381393294502 /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04A /* control.cpp */; }; - C3AC94EA13C1352790BF5FF9 /* listctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9016355F66D3125919E017D /* listctrl.cpp */; }; - 9FBC642677C63D01AA2511BC /* evtloop_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */; }; - 48A1F28E04603A68A1E70319 /* jidctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = A0DCC5EF59143640BE13AD73 /* jidctfst.c */; }; - E6CA1EB5550F3930BFE286CE /* tglbtn.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CFC6875EF4732E88E029065 /* tglbtn.mm */; }; - 9EC837DA722736119D49868A /* pngpread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CAA325362C73AC8BE20FAA7 /* pngpread.c */; }; - 98AD7D0478BA36249B03C624 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B9586328A1F3C4BA0390AA5 /* time.cpp */; }; + 2047544E505C3BA38F0144E7 /* pcre2_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = B60497805D37375EBFCF3D98 /* pcre2_tables.c */; }; + B5C7FD8C27F43F3289A77FCA /* utilsunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */; }; + E92EB502F79638B0BE569EF4 /* CallTip.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */; }; + BDAB44F5D017395D9D3A1F24 /* frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3019BA65DD73F30A865365F /* frame.cpp */; }; + 65AD3B31319C35F1AC9EC626 /* anybutton.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4020D790AE7363CB29F1C2F /* anybutton.mm */; }; + 86003C8EB906304F9025F78A /* jcinit.c in Sources */ = {isa = PBXBuildFile; fileRef = AA6C6739C3BD3EFA9CF71102 /* jcinit.c */; }; + AF1875145B2537298E4A28D8 /* pcre2_xclass.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */; }; + BB6FE851028C3DE7A070C214 /* convauto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20B922D61CDB3CCEB59A5194 /* convauto.cpp */; }; + 66FD099CE5A338C18329FC37 /* LexAbaqus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CD72950967F33809931D4968 /* LexAbaqus.cxx */; }; + 47F4FC8717AF3A848812DFCD /* xh_radbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */; }; + 31FEAB56919D372993CAD89D /* pngrio.c in Sources */ = {isa = PBXBuildFile; fileRef = A06AB1974DB93EE2999EC75C /* pngrio.c */; }; + CB078622E90F33BE9D131132 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28825 /* buttonbar.cpp */; }; + D997FFC948B73FDA892DB531 /* jdsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCF47A161B3E08B19BFE14 /* jdsample.c */; }; + C8F1FB8C029031A5909DBC58 /* KeyMap.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */; }; + 23479484EC143D34871550C1 /* textmeasurecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */; }; + 0EB6AB38A68D3845AC384A23 /* xh_text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */; }; + F89405757B063F80B111F469 /* datetime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0EBCDDF248638B58B01D9CC /* datetime.cpp */; }; + 1EE845DDFDDE36CA8A218206 /* tif_close.c in Sources */ = {isa = PBXBuildFile; fileRef = F82278F9AF0432529891E6D7 /* tif_close.c */; }; + CFDBB80A4C9A3BA092273937 /* animatecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */; }; + 90BC965B1A1F35A3B2C9D1CA /* Decoration.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BF1C44D726E63B18A98006EC /* Decoration.cxx */; }; + 7F62946D497A32CE857F65CA /* pcre2_maketables.c in Sources */ = {isa = PBXBuildFile; fileRef = D016F584D14C31E192DB3179 /* pcre2_maketables.c */; }; + 93E04642049537EB8A37BA26 /* htmlwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */; }; + 9D003890CB7035A298DB7056 /* LexLua.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5145561C78303EEE9F827962 /* LexLua.cxx */; }; + BD53E095EC1136EF853A47D9 /* m_layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5EE0B8985443BDCB36F781F /* m_layout.cpp */; }; + 0718E7524134312090541D6E /* LexPascal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */; }; + D66F5D4D204B3B789C7F76B9 /* fontdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18044326B5B13A98A49732DD /* fontdlg.cpp */; }; + F3CB42BB6D983675862C01F4 /* xh_toolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */; }; + 77BC918AF05C30E8A0BD27F9 /* tipdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */; }; + 10743B74A58231639C6BF610 /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = 400275BE019D3E5BA47988BE /* inffast.c */; }; + A874AF0B203D3DC99C27469A /* LexNimrod.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */; }; + BCD81FD3D1EC305F801E1C1B /* sckipc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */; }; + 1CC5AEC6C08E3600801CDADA /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 95B4EDF38F8A3E5EBAFF560F /* trees.c */; }; + 7C9EAFF4A0223EE597E0E39E /* xh_srchctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */; }; + A423177BBC0F3BE5A436B4B9 /* propgridpagestate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */; }; + A4F2426F36653C6D87EC18AF /* activityindicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5814208070CF3D899F132BA1 /* activityindicator.mm */; }; + 353B584AD0C03919A57A3049 /* affinematrix2d.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD09A813E10A31C19554B425 /* affinematrix2d.cpp */; }; + 2B13BFC894C63373B7ACFA3E /* xh_hyperlink.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */; }; + 7E6C627A325F32FFB2EF9B9E /* caret.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A82EDCFFBAC30098B238957 /* caret.cpp */; }; + D5C5DD83882B3227A1CCFE0E /* LexSorcus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */; }; + 27B5431DC79733CD8D403E89 /* pcre2_context.c in Sources */ = {isa = PBXBuildFile; fileRef = 3026D20A03E53F1DB40FB35A /* pcre2_context.c */; }; + 319EA32592DA3C74B86DDDFF /* wxcrt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FC98E2305230E2990471E3 /* wxcrt.cpp */; }; + C7B6240E0E213836996A178B /* dockart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD709DEB71623974B9836D69 /* dockart.cpp */; }; + 03BF1610E2FC3BD5ACB754F1 /* bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */; }; + 33BA7D6B9DC3378B820DEB88 /* notebook.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E8036758CEC3296B555E4DF /* notebook.mm */; }; + D66F55C93D1130F488970C05 /* pcre2_match_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */; }; + 6A10511265493FA2BB79CE4D /* propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC93D1DE277395592610085 /* propdlg.cpp */; }; + 5792675690843C6AA4125A72 /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77F5E7BCD9B2307D8DBCC052 /* font.cpp */; }; + 551BF168445E3D7BB54D0175 /* LexPS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = EDB48813110636DBA045BF3A /* LexPS.cxx */; }; + 2B4507BC09563DB5B0F16597 /* tooltip.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31EFBD7D10003A5187348B35 /* tooltip.mm */; }; + 729091CC33C73C989B4E0719 /* timerimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0401B7302088357BB6B7F16F /* timerimpl.cpp */; }; + EBA0986930DA3B59B2FB4F1E /* htmltag.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCCFF49F92B4323D9181CEDA /* htmltag.cpp */; }; + 05814571E7A83F5DBFB6E4C5 /* msgout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E968913A9A593B258BD8EACB /* msgout.cpp */; }; + A486A28E216D320AB57452D4 /* lzmastream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */; }; + 7C20B79175D33852A2E9DE84 /* LexRuby.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8734C52C7559310784396455 /* LexRuby.cxx */; }; + 7BD3887F603E3704969A54E2 /* pcre2_chartables.c in Sources */ = {isa = PBXBuildFile; fileRef = 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */; }; + FBA19C939E1E33EDB05043FF /* cairo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */; }; + B8FEEC2C94183AB69C963177 /* headercolcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */; }; + 7ECC6EE6D5273F75BB6B7B74 /* tif_dirinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 032A38738B58394E8617617B /* tif_dirinfo.c */; }; + 46327A3C356D3570B27C6702 /* Lexilla.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */; }; + 4DA209AEF4AD32AAB97F9719 /* htmlcell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68E5188DB6003C35A8C7754D /* htmlcell.cpp */; }; + 23CECD8647C037E0B41DF0D5 /* LexA68k.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7020ADB5D3E0375E875B418B /* LexA68k.cxx */; }; + 2C95DFA8EE463487956B4EB5 /* infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */; }; + FEB073547F3F3AC19D31F699 /* tif_tile.c in Sources */ = {isa = PBXBuildFile; fileRef = BD88495AF72531A28D2201D0 /* tif_tile.c */; }; + 0A406D2D1ADA343891E3664C /* powercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */; }; + DE26572475EE336B8EEA5D92 /* jerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 108517BCD39230E7A89BC943 /* jerror.c */; }; + 9F608A33D52D327FAA295626 /* sckfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56653FACC7D13804A70556AD /* sckfile.cpp */; }; + 6944AC98F6F83E3D983DABD3 /* tif_getimage.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */; }; + F72020415D713C1BA41C17CF /* richmsgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */; }; + FE9A662A1F9B34D099C45C1D /* xh_cald.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 093B5233861B3F9B8C85762B /* xh_cald.cpp */; }; F43DAE2E829A3A7493531381 /* richtextimagedlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */; }; - 4279D39CAAF834F6A5B99196 /* persist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D9626646773CED82449D5D /* persist.cpp */; }; - 7B372FEA276438C186F7E341 /* RunStyles.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */; }; - 3D424F4B33653A00AE9B623A /* m_tables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 082CA018FB883999839C1DCE /* m_tables.cpp */; }; - A1AF8FF873D6383996995ED0 /* statusbr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 071FEABEA61E3B559A47A7DB /* statusbr.cpp */; }; - BFD3BFBDC8DA3B1EAD141F97 /* LexErlang.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A1276C0E5D48337489DEE8DF /* LexErlang.cxx */; }; - AAAB5DF8E60736D88273DD00 /* strconv_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5F9383D1CE931499F339D85 /* strconv_cf.cpp */; }; - 369BCCFF61D13A058D837836 /* LexPerl.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */; }; - F5B0B26BD0803719A3FCB4D7 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E45F6DF601A34BCB3CC0206 /* adler32.c */; }; - 88E56F89A0DA3AD386F05FD3 /* pcre2_pattern_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */; }; - F43DAE2E829A3A7493531382 /* richtextimagedlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */; }; - 8E674574343A3C009B1BCD02 /* tif_codec.c in Sources */ = {isa = PBXBuildFile; fileRef = 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */; }; - 37DD17F479A1371ABF3589BA /* xh_wizrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */; }; - 0742292656623EC481B3436A /* paper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87D973CA8D673267BD0844D3 /* paper.cpp */; }; - 61FEDBF2D47A3B4E861F8297 /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F5 /* sound.cpp */; }; - 912C69ADB1673ACEB0E6CF08 /* tif_strip.c in Sources */ = {isa = PBXBuildFile; fileRef = B83EDE2D1731311ABDE62F9F /* tif_strip.c */; }; - 9C6E9E4BA54733EF9F87E4B8 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 513033E36E643593AC305B3D /* uncompr.c */; }; - 61C3F7D495FB3E8BA402E4F9 /* jdmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 20E4A10BCD773C84AEC481A1 /* jdmarker.c */; }; - 94E510619F433AE3AC884756 /* xh_bmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */; }; - F89405757B063F80B111F46A /* datetime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0EBCDDF248638B58B01D9CC /* datetime.cpp */; }; - B8A98F209934399DA45C2387 /* fs_data.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */; }; - 61FD5E0E28F732E8AB1729FA /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6AB648BC5173104A96CAE66 /* xml.cpp */; }; - 63F2517EC6B2334CA825A6FA /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEB08798C70E33DDB360E563 /* layout.cpp */; }; - 0F2FD12272023C869CE8600A /* filter_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */; }; + B60AD651E0523DB7B31E4106 /* LexillaAccess.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8052B1625907355894CCF263 /* LexillaAccess.cxx */; }; + 3316A16628B03D5E88529EA7 /* datetimectrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = A0A63980677D371C85A60B75 /* datetimectrl.mm */; }; + 25656617A56D342AA3D1BFE3 /* ctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */; }; + 7B4DA2F5F25B3E188CBAFE39 /* hyperlnkcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */; }; + D5AABE973F3A351EB1C1A5A6 /* fontmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0817D6A1AF83608B050EBC3 /* fontmap.cpp */; }; + D95C5F467D37339AB8DF2355 /* tif_color.c in Sources */ = {isa = PBXBuildFile; fileRef = 149D299A0EDB3D998118EC93 /* tif_color.c */; }; + 0718E7524134312090541D6F /* LexPascal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */; }; + 9D4B67A357D23B5283CA8D99 /* clrpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB8A747FB60239B9AB710264 /* clrpickercmn.cpp */; }; + 7C5552FA058034238F485900 /* dbgrptg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 182C8AD4F822375495795B43 /* dbgrptg.cpp */; }; + 164010B26D363F5FA09785B6 /* listctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1B1FBB2BCC43BA7A45E9438 /* listctrlcmn.cpp */; }; + B1775EF7C72233408044034C /* radiobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 773D91F8280434519BD167EA /* radiobox_osx.cpp */; }; + D13AE659C3AC37B68D39B2CA /* LexLout.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B14D6E7E15FD3C869E341198 /* LexLout.cxx */; }; + B198DA8239E9358A9D56B98A /* menu_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66C21CA37BF63893887FD91B /* menu_osx.cpp */; }; + 97F60B2A9CE93BC8949A8CCD /* LexCrontab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */; }; + D3FB75C8E3A73AE38EE8A6F7 /* selectdispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */; }; + 4958BD2E717A3F03AB030189 /* tbarbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3F32C01D122301AB00D06A5 /* tbarbase.cpp */; }; 1C544DADDA6F3D62A5E25E94 /* LexerSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CF502E0E4D853CBBBEC885EF /* LexerSimple.cxx */; }; - 11DD420E32FB3EFB9DA0AB5B /* jccolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EFF4707641D3F20AB602ED6 /* jccolor.c */; }; - 2F7328AC75393951B08F75F1 /* pcre2_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 25E03E349FC13E4A9428B94E /* pcre2_error.c */; }; - D4EC9DB5F8DF319EA0FD26A6 /* LexVB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F633793051F371F94C27530 /* LexVB.cxx */; }; - 444D3B969B4336E8AD5CCFC1 /* LexStata.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B61D36546E97371FAC5D4565 /* LexStata.cxx */; }; - 87092C0C817D343DAB77E23E /* xh_scwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */; }; + 9836B3D336963795928FE5A2 /* m_dflist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52FE1599218730CC99A3F801 /* m_dflist.cpp */; }; + 2047544E505C3BA38F0144E8 /* pcre2_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = B60497805D37375EBFCF3D98 /* pcre2_tables.c */; }; + 62F1DC80D631335B892610A8 /* splitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C125FA3837C631A9BE0ED5E7 /* splitter.cpp */; }; + 1E17F95DD433379E8C18298C /* odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */; }; + A1A7D793B034398B8696EF33 /* utils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 789F45D14FF23E248FCFB5FA /* utils.mm */; }; + BF9B151DC0543E37878F8B9B /* stattextg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DE635F30F3935099AF1486C /* stattextg.cpp */; }; + 73AA68AB9F1236ED9F1FBB2E /* metafile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2BB2949CC0B387AB6879539 /* metafile.cpp */; }; + E8EE34F0A78C31B489B19FEF /* LexMSSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C71BF55495034FFBE653C80 /* LexMSSQL.cxx */; }; + D9EE059D3C3C3C13AE4419F1 /* stattextcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54BD19211DBD388AA0DEC7A1 /* stattextcmn.cpp */; }; + 8FC1C07FEE793897A1E96D23 /* statbmpg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA2119A7C67D37B290C17989 /* statbmpg.cpp */; }; + 026F90F7492C316A94128916 /* logg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C64705CE9398316D87BAB4DC /* logg.cpp */; }; + 1EA81A0E8E5A3B38B4D80337 /* srchcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF103B09F02315282EC8F44 /* srchcmn.cpp */; }; + 23A7AF68A03E380785EE7C25 /* object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1731D6708BFE3DE7B101CE74 /* object.cpp */; }; + DB3C3AA956A03FB492480266 /* treectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */; }; + 5C3B0ED2EA973DFDBFBCC692 /* richtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */; }; + 069D53F2DFBF370A8CC99630 /* LexCSS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */; }; + 9678C2B19D293818AA8E9E0E /* LexSpice.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4592464D4868329897F3864D /* LexSpice.cxx */; }; + 70F898F8B129380BBECAC559 /* richtexthtml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */; }; + 9A83D365AD1F37FA9C7030C3 /* matrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF330EAACFA53877BE289896 /* matrix.cpp */; }; + 346D274E17673A01B0177D5C /* sockunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7661E9E09A397790ED9545 /* sockunix.cpp */; }; + AB58406CEBA13BC4A2A83B66 /* printmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */; }; + 8B38C6C416BA3A51B37F60C4 /* statlinecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */; }; + B30D10F6257631B0A1926F89 /* statbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 926BDF9C386C3A9A8C24D453 /* statbox.mm */; }; + 8C2B50E3FC7A37C58CC9DC0B /* colour.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8B73BB8C0391E9EC1B2D1 /* colour.mm */; }; + 825EAD51920B387DB4F8C427 /* LexAsn1.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A46D50BEBF523B3F88831086 /* LexAsn1.cxx */; }; + 0C3F48DBD05E3566A4CA6D44 /* LexAsm.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A65399C8A6D636139E362119 /* LexAsm.cxx */; }; + DDC71B80D562303690FDBE4C /* appcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F01DDE448E4C3983ACCE67FD /* appcmn.cpp */; }; + EAE02BA934B43EEE92C496C8 /* dcpsg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEA0945B20913754A54D0FD9 /* dcpsg.cpp */; }; + ACD644CFA85A3B70A3E3B119 /* jcparam.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F41EDEB298538CC86FF6DC1 /* jcparam.c */; }; + 7D615329368D32709CEF4B58 /* headerctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7273A7E255323EB3B391D997 /* headerctrlg.cpp */; }; + 0742292656623EC481B3436A /* paper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87D973CA8D673267BD0844D3 /* paper.cpp */; }; + 7CC211E10D853B958250A4CF /* LexModula.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */; }; + 3D22FC202D903007AEE3D165 /* fdiounix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */; }; + 8A9C3C04D00334418C3446F9 /* dirdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0B0DC125AFFC322E8E496262 /* dirdlg.mm */; }; + A191AA29BDF83BB090A9DF4F /* LexCharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */; }; + EB52C6A915943813932944FF /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04B /* control.cpp */; }; + C67EAE20657E36839BF86690 /* richtooltipg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */; }; + FCE5B139CBE73FCB804EF7DD /* jcomapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EB76F786D7F3FF286948D22 /* jcomapi.c */; }; + 745C39E90E8C3C08A887B51D /* msgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */; }; + BFA6983551B4310DA7C8A405 /* jcdctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DBF3053414F3C448312165A /* jcdctmgr.c */; }; + F0B3F484C38C3BA0B9927CDB /* docmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */; }; + E7921B0472B63E4091F4F517 /* xh_collpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */; }; + F70156C3E68B38FCB72FE253 /* dirdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */; }; + 268DDC88C99A3A64AB8B2FFB /* LexCaml.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B3B8AD0120F3EA6BF5B0AE0 /* LexCaml.cxx */; }; + 3D762A0BBF1B39B88A769634 /* helpwnd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */; }; 2F7328AC75393951B08F75F2 /* pcre2_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 25E03E349FC13E4A9428B94E /* pcre2_error.c */; }; - 26649553E4763EE6BA268B7E /* xh_gdctl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */; }; - 8A662992FFCB32E99D11950E /* commandlinkbuttong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */; }; - D98FABF75BCE3AF18C91B42F /* LexHex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */; }; - F38202271C6131908C358DEE /* mstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC3D1E222FD93A69B1D1366E /* mstream.cpp */; }; - FE5B7C7A84B83C17A38E8405 /* LexSML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */; }; - 0EB6AB38A68D3845AC384A25 /* xh_text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */; }; - 8620088DDD233B139B250DD6 /* filter_sse2_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */; }; - 0D79F1B4EF44393AA3242140 /* LexPLM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */; }; - 50D7E093424138C88BB50D29 /* jcsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 53D06E47477B3E32BB6B915E /* jcsample.c */; }; - 539B586AEAD630A79FC12ED1 /* sstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46EC1508C063C8395CE7A95 /* sstream.cpp */; }; - 98AD7D0478BA36249B03C625 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B9586328A1F3C4BA0390AA5 /* time.cpp */; }; + E882402BEE0330A080A6516F /* strconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FEB8204E530329FA085E5B8 /* strconv.cpp */; }; + CB078622E90F33BE9D131133 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28824 /* buttonbar.cpp */; }; + D83B32B788EC310D919E0DF8 /* imagpcx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */; }; + 056CA84179433AA48D55DA67 /* bar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FDDE855D9F83E4891362EB4 /* bar.cpp */; }; + 6E68759BC2E63CA59C12FDC0 /* popupcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D922063B2F2536629EEEAAF0 /* popupcmn.cpp */; }; + 7C20B79175D33852A2E9DE85 /* LexRuby.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8734C52C7559310784396455 /* LexRuby.cxx */; }; + 182DFDBB58653FD9863D4177 /* dcprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238741BDA2C73E56899CCB04 /* dcprint.cpp */; }; + 6A032420671B375D81273714 /* valnum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 684D92E552BE313CBE0A88AA /* valnum.cpp */; }; + D9EE059D3C3C3C13AE4419F2 /* stattextcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54BD19211DBD388AA0DEC7A1 /* stattextcmn.cpp */; }; + 438EAEA4B30C325C827F6197 /* xh_fontpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */; }; + EB206A0264AD3CAA9F68B8FC /* pcre2_convert.c in Sources */ = {isa = PBXBuildFile; fileRef = BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */; }; + 0FFFFA2F762B3160955D1D8A /* gauge_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC28591B403B32B7AFCC079D /* gauge_osx.cpp */; }; + 6C822F7F313734DCB51F44B9 /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81A30C745CA73E30B788B408 /* image.cpp */; }; + 8B60964DA1DF3F3DB40BE123 /* datavgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F3D473DC5123EDAB767045C /* datavgen.cpp */; }; + F70156C3E68B38FCB72FE254 /* dirdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */; }; + A965348C7FA73CEC90C8FA25 /* filedlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */; }; + 5D3AD309AF39385EBF7D9DF8 /* jaricom.c in Sources */ = {isa = PBXBuildFile; fileRef = 573D0D15EE9E3E629D61EA65 /* jaricom.c */; }; + 61FEDBF2D47A3B4E861F8296 /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F5 /* sound.cpp */; }; + 6FA47EAACE613B039B6EC261 /* containr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3645350F572364BABF50238 /* containr.cpp */; }; + E3AD8574E13B39BDB8D4E92F /* LexKVIrc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */; }; + 028257C52CAE3038AA862C37 /* stdstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE16011AD6323AAC8616F973 /* stdstream.cpp */; }; + C5A8DF376BB13A2A8290C2E5 /* xh_unkwn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */; }; + 8A662992FFCB32E99D11950C /* commandlinkbuttong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */; }; + 2FAE979E6FE23D088C768B7D /* gridcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */; }; + 4958BD2E717A3F03AB03018A /* tbarbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3F32C01D122301AB00D06A5 /* tbarbase.cpp */; }; + 7569F0BC3C603EB191680890 /* collpaneg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84758329F2163F00A9C005DF /* collpaneg.cpp */; }; + 61A2B54FD2E33C759CF5A5E9 /* pngrutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 358D0A3AC73F322EA732D020 /* pngrutil.c */; }; + 159E4248CB1333AD841D9F04 /* LexYAML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9CC7C6FFD67233788EEDFC5E /* LexYAML.cxx */; }; + DE26572475EE336B8EEA5D93 /* jerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 108517BCD39230E7A89BC943 /* jerror.c */; }; + AF1875145B2537298E4A28D9 /* pcre2_xclass.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */; }; + B8A98F209934399DA45C2386 /* fs_data.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */; }; + 6A032420671B375D81273715 /* valnum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 684D92E552BE313CBE0A88AA /* valnum.cpp */; }; + C43A9650A9DC3372AB8F5F78 /* jidctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */; }; + 7B642B17F5D23F4F8ED38BB4 /* graphcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BB59DD194923D6399087A75 /* graphcmn.cpp */; }; + 21F74D4D4D84375AB155FD5C /* stattext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95186FEF3DEF39D8B1157BD5 /* stattext.mm */; }; + 13A71672A59233D3A9B2D5EA /* CharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B883F991159731DCB2717A21 /* CharacterSet.cxx */; }; + 893BDA491EDE3A0E91FADE40 /* nonownedwnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */; }; + 8FB5FBC5730C33F1A3D85D9F /* LexD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */; }; + D54A162E557834A48F4646AA /* advprops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 326723AEB79A305F90D6B41D /* advprops.cpp */; }; + 47C31B7492F33C3EBE53262C /* settings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6831AA74AB5B38D5AA6946D7 /* settings.mm */; }; + EE972E8DC73F310B9B4C949D /* webrequest_curl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5279968877003A8BB8279765 /* webrequest_curl.cpp */; }; + 28ADE8D385A53445A5451F24 /* jdhuff.c in Sources */ = {isa = PBXBuildFile; fileRef = 72869747E68E37998CB0A07E /* jdhuff.c */; }; + 65514CD6A9F23ED98436AC02 /* ftp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB4781DF8C432C688F30CDD /* ftp.cpp */; }; + AE84BC9A1CCA3ADA9C483951 /* xmlrole.c in Sources */ = {isa = PBXBuildFile; fileRef = 59C6B9849FF6325E890942EF /* xmlrole.c */; }; + A191AA29BDF83BB090A9DF50 /* LexCharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */; }; + A1AF8FF873D6383996995ED0 /* statusbr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 071FEABEA61E3B559A47A7DB /* statusbr.cpp */; }; + 9241AAE354C53190BF3D5BA4 /* radiobut.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99E5B6DD00273D978C241BCA /* radiobut.mm */; }; + 3357BD0518F538E9A949F888 /* xh_tree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */; }; + 47EBBB18BDB539C2A948C711 /* chm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E24C6F2A04E30EB95598305 /* chm.cpp */; }; + 13854E7822783719A2530792 /* jddctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5BBC1E494D33D028CA547FF /* jddctmgr.c */; }; + 7EB83F6375BF3E73ABE56C41 /* jcarith.c in Sources */ = {isa = PBXBuildFile; fileRef = AA234ACC79743DA797601AA6 /* jcarith.c */; }; + EB52C6A91594381393294500 /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04B /* control.cpp */; }; + 522E6CF2A62F34259BCE2DE3 /* tif_flush.c in Sources */ = {isa = PBXBuildFile; fileRef = 305614D19CF23CB2B14A5B2E /* tif_flush.c */; }; + 2CCC30C0162131DBBE9D8027 /* dobjcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */; }; + A3586433C4B1398FB1C361D7 /* m_image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 548906E4E72935E48CE4AF87 /* m_image.cpp */; }; + BF1760458996391E8EB4294A /* ctrlsub.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */; }; + C1DCF69200593986A8C606A6 /* hidjoystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018B15DE6F3A3D49B9CDE9DE /* hidjoystick.cpp */; }; + 5F2C2A46781739D897CF293D /* xh_chckl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */; }; + 15735ED6556130F6A14F0BCD /* ScintillaBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */; }; + 84382E5DB3203A73AC5EE391 /* xh_combo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0905A1EBD653F6D82395602 /* xh_combo.cpp */; }; + A53B8C3ED0D33A1D9AA8219B /* toolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3BF8C9FF2D5314591329D0D /* toolbar.mm */; }; + D5AABE973F3A351EB1C1A5A7 /* fontmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0817D6A1AF83608B050EBC3 /* fontmap.cpp */; }; + 0C7E2D5C22A232368F862A60 /* longlong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D7AF345E563587941BD868 /* longlong.cpp */; }; + 9E0B67E34B683412978BA82D /* filtall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */; }; + 46CE8B53D2663927AAE5DF9E /* xh_treebk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */; }; + 20D05D14BFAD3F969666D03B /* timectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA0840034F1386F94D17639 /* timectrl_osx.cpp */; }; + C2B07E2ECDDC3833BDC9B28C /* arcall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75D0C937F2A03ADA8581A2BB /* arcall.cpp */; }; + 9678C2B19D293818AA8E9E0F /* LexSpice.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4592464D4868329897F3864D /* LexSpice.cxx */; }; 0948599C4FD53611A09B52AB /* jfdctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 93D07403FCA530D7A9FD2917 /* jfdctflt.c */; }; - 894D43C8F224394FB3171F26 /* jcapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */; }; - BFD4B8871B3934048B63141A /* languageinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67D76B026121359F9B22F8B0 /* languageinfo.cpp */; }; - 6F5A0D3C7763334396A3783E /* LexCmake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */; }; - 2480859662ED399799E120A6 /* pen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA819575B5136B09FA8FEB1 /* pen.cpp */; }; - FEF99FF6C38D3B488396B144 /* ffile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */; }; - 51D133EC44F830588FEEAEC1 /* LexHaskell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */; }; - 087FF6DE223A32509692F39C /* txtstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */; }; - 9FBC642677C63D01AA2511BD /* evtloop_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */; }; - 3E99016BDE043A08B4D6B3CF /* htmprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 194ADD28300E329E80F7892E /* htmprint.cpp */; }; + 5C44446AB150378696CD6B3D /* bmpcboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */; }; + FD3CC5F0AA41384B9388A1E0 /* htmlfilt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C6C4F5468743265A02D656C /* htmlfilt.cpp */; }; + 675B4E6CBA8632E89B4AC26D /* textctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4E16323A43E36DC8024EDF1 /* textctrl.mm */; }; + 49C873EE448C3CD9A32012CE /* spinctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */; }; + C987310872D1396BAF716E5A /* webrequest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA9E372A64B3B808A64B178 /* webrequest.cpp */; }; + 5EE94793DFCB3BA281A4864F /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = FDB0E2D0966C3E408C4A2D3D /* infback.c */; }; + 33BA7D6B9DC3378B820DEB89 /* notebook.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E8036758CEC3296B555E4DF /* notebook.mm */; }; 88E56F89A0DA3AD386F05FD4 /* pcre2_pattern_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */; }; - E82CB89681FF3747B6A94428 /* anybutton_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */; }; - FD1F6CD8286D3D428FD52A28 /* filepickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B580FD04D0D83601826FD5EE /* filepickerg.cpp */; }; - D83B32B788EC310D919E0DF8 /* imagpcx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */; }; - ABCD15C4AB37396EA17B7B2A /* translation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AC666417602346EA583709E /* translation.cpp */; }; - D759231BC07232C0A52515A6 /* LexAccessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */; }; - 2E4747E0736B30569ACD5424 /* textbuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 701B84EE7C043B539FF5195A /* textbuf.cpp */; }; - 82FA4AA043213728AC266702 /* wizard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */; }; - 05814571E7A83F5DBFB6E4C5 /* msgout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E968913A9A593B258BD8EACB /* msgout.cpp */; }; - D18E2985C48733B2B7B3D442 /* evtloopunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */; }; + 319EA32592DA3C74B86DDE00 /* wxcrt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FC98E2305230E2990471E3 /* wxcrt.cpp */; }; + BD49EC50CB363642BDBF25C9 /* mousemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D037EA567C253DEEA17E822B /* mousemanager.cpp */; }; + FBE4DB30865D3177B3A9993C /* xh_animatctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */; }; + 11DD420E32FB3EFB9DA0AB5B /* jccolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EFF4707641D3F20AB602ED6 /* jccolor.c */; }; + E17048DEEF1138318314F1D1 /* pcre2_valid_utf.c in Sources */ = {isa = PBXBuildFile; fileRef = FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */; }; + E62F8E49FD5035D8BC71BB4B /* LexGAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */; }; + 97BAFEAD53E238B6881178DE /* evtloopcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 640783FBACA43206B782C77B /* evtloopcmn.cpp */; }; 15D65A523EB23EC385C05E0C /* jquant1.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */; }; - 8FDC800D873F30E282691834 /* pngrtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 87799D3168B43EB7B5686826 /* pngrtran.c */; }; - 2315C8692C443ED1AE43172A /* tif_extension.c in Sources */ = {isa = PBXBuildFile; fileRef = AF7CE00168AB33C994374ABA /* tif_extension.c */; }; - 8A4046BD38873D9CAC9C2B5A /* filesys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F263022F3FEA3F75895B644D /* filesys.cpp */; }; - D18E2985C48733B2B7B3D443 /* evtloopunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */; }; - 39FB197CF9EB3D76BE0723D1 /* LexBash.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 78D7866F95C73A28BB540606 /* LexBash.cxx */; }; - 1E17F95DD433379E8C18298C /* odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */; }; - 6E2C2E8AA1713ADE9C33837A /* tif_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 726C0457DF1232C793918DC1 /* tif_zip.c */; }; - 9F70A89D00B03D4894AF763A /* validate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01BA6D45FE4C381493EB4372 /* validate.cpp */; }; - 319EA32592DA3C74B86DDE01 /* wxcrt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FC98E2305230E2990471E3 /* wxcrt.cpp */; }; - DF8124E5E17D386A84CEEA29 /* LexLisp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 40586C8986443431A64EB066 /* LexLisp.cxx */; }; - C2CF6B59914A3183ADE84029 /* tif_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 48F1439BF6C3361296F05A33 /* tif_error.c */; }; - 5AEA6E94FB76371D928D371D /* LexMatlab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC9153A350893820B942D37E /* LexMatlab.cxx */; }; - 7F77E347E1243D77A666FB45 /* clipbrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */; }; - 551BF168445E3D7BB54D0176 /* LexPS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = EDB48813110636DBA045BF3A /* LexPS.cxx */; }; - 1569BB4728693B6285623A25 /* pngerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A0650754DC2358CA5933B28 /* pngerror.c */; }; - BA9F0BBD57F63FD29E484FD4 /* LexScriptol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F1B41B0F10C3DA38188C239 /* LexScriptol.cxx */; }; - 7EB83F6375BF3E73ABE56C42 /* jcarith.c in Sources */ = {isa = PBXBuildFile; fileRef = AA234ACC79743DA797601AA6 /* jcarith.c */; }; - D95C5F467D37339AB8DF2356 /* tif_color.c in Sources */ = {isa = PBXBuildFile; fileRef = 149D299A0EDB3D998118EC93 /* tif_color.c */; }; - 86003C8EB906304F9025F789 /* jcinit.c in Sources */ = {isa = PBXBuildFile; fileRef = AA6C6739C3BD3EFA9CF71102 /* jcinit.c */; }; - 795613831EC8332A83FF26E9 /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7E99B35A98D30818120B002 /* string.cpp */; }; - 3554C88010CE3D2A8970A136 /* sashwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */; }; + 9CC92BB4B0E233A0A7F81279 /* LexVisualProlog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */; }; + 7B372FEA276438C186F7E342 /* RunStyles.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */; }; + BFD3BFBDC8DA3B1EAD141F96 /* LexErlang.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A1276C0E5D48337489DEE8DF /* LexErlang.cxx */; }; + 89046455F49D3D75A21C9DB8 /* imagfill.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 137E01C362E134449BF966ED /* imagfill.cpp */; }; + 7F62946D497A32CE857F65CB /* pcre2_maketables.c in Sources */ = {isa = PBXBuildFile; fileRef = D016F584D14C31E192DB3179 /* pcre2_maketables.c */; }; + C0CDA289E9EC3E20BE70B2E8 /* choiccmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24930711031D35288D28B04B /* choiccmn.cpp */; }; + 67A0583ADD8C35B8B9BA3D14 /* checkbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 81708CFA21A03013ACB8DDD7 /* checkbox.mm */; }; + 9B8E5690A6103FC1BDC6C47E /* pngread.c in Sources */ = {isa = PBXBuildFile; fileRef = 29D6506AEA5A323B8735F126 /* pngread.c */; }; + A93D0E6F0871368EA8FC9FFA /* fswatchercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */; }; + 807450BB072C3C0D9C52A3B7 /* LexGDScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E29A8279BAEE303B95C9D3C6 /* LexGDScript.cxx */; }; + 8F372080E11E382EA0B5ED10 /* rowheightcache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */; }; + B84642DA949638A189032CE7 /* http.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F84F0DB790A23D92A193D2B4 /* http.cpp */; }; + 23965E313EDC3BBE9B2FA1C6 /* imagpng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24396D584D053948A3FF0DCD /* imagpng.cpp */; }; + 61A2B54FD2E33C759CF5A5EA /* pngrutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 358D0A3AC73F322EA732D020 /* pngrutil.c */; }; + 527054445A0D3A00A5C2EC44 /* tif_thunder.c in Sources */ = {isa = PBXBuildFile; fileRef = 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */; }; + B0FD1B96EAE635AFBFCF2C92 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C044 /* secretstore.cpp */; }; + 5116CE330E333724A66982E4 /* rearrangectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972BC9B2B0D438EFB12BCE1E /* rearrangectrl.cpp */; }; + 9B3F9D04FB533D99B58BD519 /* jfdctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */; }; + B4425B59CC27389CA9FF81D1 /* datectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE856D950B8C369EB0FE13BA /* datectlg.cpp */; }; + EE6474BBB4AF34D093E2451D /* MarginView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F951601E73683F27AD8CA99D /* MarginView.cxx */; }; + 4156FDB73D0A397A870E4303 /* overlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD8031E28A3C9CB7C45784 /* overlay.mm */; }; + A52A7D2FEB1434E29C64582D /* RESearch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E145FC31ED523B4AA5080A61 /* RESearch.cxx */; }; + 3C394FBD47B6310C80577E3B /* LexMMIXAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */; }; + EE6474BBB4AF34D093E2451E /* MarginView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F951601E73683F27AD8CA99D /* MarginView.cxx */; }; BDB8EF0E0DA03693BFB77EF8 /* accesscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8555204EBA8930809B732842 /* accesscmn.cpp */; }; - 84382E5DB3203A73AC5EE392 /* xh_combo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0905A1EBD653F6D82395602 /* xh_combo.cpp */; }; - 020BBB417207393F8C60EFB8 /* LexFortran.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86A0C3603C8A343AAFBD2CE0 /* LexFortran.cxx */; }; - D3FB75C8E3A73AE38EE8A6F6 /* selectdispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */; }; - 9678C2B19D293818AA8E9E0F /* LexSpice.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4592464D4868329897F3864D /* LexSpice.cxx */; }; - F6B85CD918E93923BE631B96 /* fs_filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */; }; - FB09720D13673A7B81BCB645 /* xh_datectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C63C964DAFAD311694367C94 /* xh_datectrl.cpp */; }; - 1EA81A0E8E5A3B38B4D80338 /* srchcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF103B09F02315282EC8F44 /* srchcmn.cpp */; }; - 6463C9BE78C0394CB7B451FB /* pcre2_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = BDADEB1DA6433E52972C8934 /* pcre2_compile.c */; }; - F72020415D713C1BA41C17D1 /* richmsgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */; }; - C259D01CC62533D296EF023B /* scrolbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */; }; - 268DDC88C99A3A64AB8B2FFB /* LexCaml.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B3B8AD0120F3EA6BF5B0AE0 /* LexCaml.cxx */; }; - 7C9EAFF4A0223EE597E0E39F /* xh_srchctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */; }; - 087FF6DE223A32509692F39D /* txtstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */; }; - 10743B74A58231639C6BF610 /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = 400275BE019D3E5BA47988BE /* inffast.c */; }; - 0813551C951A3AD1A5EF01B3 /* imagbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84098A475939BB9EE87E70 /* imagbmp.cpp */; }; - 6C1171E3FB7137CCB9E3F538 /* tif_zstd.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B98123FD57731139044B064 /* tif_zstd.c */; }; - 1C52CB9487DF3AB9AF243B49 /* prntbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 242BF97B558634A79322052C /* prntbase.cpp */; }; - 0B98B6721DEE37A1ADEA382D /* quantize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B890199A37723EFD86C0ADA5 /* quantize.cpp */; }; - A4F2426F36653C6D87EC18AF /* activityindicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5814208070CF3D899F132BA1 /* activityindicator.mm */; }; - F24F637D59F637CA9A7E23CA /* xh_filectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */; }; - 30493B486DFF35AF80D12C4A /* stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */; }; - 18A318847EAC37F2B915F082 /* jmemmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */; }; + 9FD99E06F6613A1A958FAF6C /* jdmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */; }; + DB9565CC4EAE3BCB9F490621 /* xmltok.c in Sources */ = {isa = PBXBuildFile; fileRef = 8685B8ED68F23DB0B770FD74 /* xmltok.c */; }; + 4F99EB97F65330C28EB4D077 /* datectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95B4B2890C3A372DAB8DC7BA /* datectrl_osx.cpp */; }; + AEEE6BC41B6531898A61CB16 /* LexHTML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D87406BCF3E833369E12D89A /* LexHTML.cxx */; }; + E3B3E4F75D503DB89B5C622E /* stc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B9C41A4D12345AAA764CAD /* stc.cpp */; }; + BF9B151DC0543E37878F8B9C /* stattextg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DE635F30F3935099AF1486C /* stattextg.cpp */; }; + 87092C0C817D343DAB77E240 /* xh_scwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */; }; + 98AD7D0478BA36249B03C623 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B9586328A1F3C4BA0390AA5 /* time.cpp */; }; + 595DCB164D55342EB86604EC /* hashmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6636144CDE83E8E85270FAF /* hashmap.cpp */; }; + 795613831EC8332A83FF26E8 /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7E99B35A98D30818120B002 /* string.cpp */; }; + C005C2D547E735E9B081658F /* prntdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */; }; + 5557AA36FBCC3ED9A5F5751B /* editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D90D14874FD38079835AF0B /* editlbox.cpp */; }; + B4425B59CC27389CA9FF81D2 /* datectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE856D950B8C369EB0FE13BA /* datectlg.cpp */; }; + E7140F3AB94D3FDFA86D8C06 /* url.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49612306912038DDBCABB4DE /* url.cpp */; }; + E5D698D2606A304DA743AF94 /* grideditors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66426B63AA3E3A279936C034 /* grideditors.cpp */; }; + 49BEDFBC3661339D90EF6935 /* LexTCL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */; }; + F5D2146C94E733FAAB6D286A /* threadpsx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB466912FDA23F8B87A00A3C /* threadpsx.cpp */; }; C5E5AB869065307F83E27DD1 /* htmlpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */; }; - 30493B486DFF35AF80D12C4B /* stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */; }; - 6BF19C7CA9E93D989C210FE4 /* dseldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1197B997B1D139C5AE4D198A /* dseldlg.cpp */; }; - F80C2290D67B345F9CF60085 /* dpycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A37E3D1FB4FB31AFAE88665A /* dpycmn.cpp */; }; - E6CA1EB5550F3930BFE286CF /* tglbtn.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CFC6875EF4732E88E029065 /* tglbtn.mm */; }; - 2DBF5F96CCC63F7481C26A44 /* webview_webkit.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FEECFD764E037288CE94FEB /* webview_webkit.mm */; }; - 4657479AF35533AEB7876677 /* helpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB30516233A39BE809405AA /* helpbase.cpp */; }; - B6891F848CA0325EAB6D1375 /* textentry_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777385D10CCC350C90F02824 /* textentry_osx.cpp */; }; - F46777ABE0743B04A1E1F0A5 /* spinbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */; }; - 14F303FD6B5F383DADDFD789 /* xh_dataview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 616466F521DB3ECAB304289F /* xh_dataview.cpp */; }; - FFF5BFBE600E35FAB7EA522E /* fileback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC12D557950A3B0D89D9F2F3 /* fileback.cpp */; }; - D759231BC07232C0A52515A7 /* LexAccessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */; }; - AF1875145B2537298E4A28DA /* pcre2_xclass.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */; }; - 65514CD6A9F23ED98436AC02 /* ftp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB4781DF8C432C688F30CDD /* ftp.cpp */; }; - AC0B0C52922B30188AE95E95 /* tabart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51054B41BFD83E97BAF76D07 /* tabart.cpp */; }; - 901F659891613419B8643954 /* calctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */; }; - FD3CC5F0AA41384B9388A1E2 /* htmlfilt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C6C4F5468743265A02D656C /* htmlfilt.cpp */; }; - 14EF556997B0350F931EBE8E /* jdinput.c in Sources */ = {isa = PBXBuildFile; fileRef = CCF7564A2B733F759AA8496B /* jdinput.c */; }; - 33BA7D6B9DC3378B820DEB88 /* notebook.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E8036758CEC3296B555E4DF /* notebook.mm */; }; - 9EC837DA722736119D49868B /* pngpread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CAA325362C73AC8BE20FAA7 /* pngpread.c */; }; - FCE5B139CBE73FCB804EF7DE /* jcomapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EB76F786D7F3FF286948D22 /* jcomapi.c */; }; - 3ED6F4B64C283232A79423D0 /* dircmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */; }; - 182DFDBB58653FD9863D4176 /* dcprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238741BDA2C73E56899CCB04 /* dcprint.cpp */; }; - 45AB45C6B24A3983B22E56A7 /* dataobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 271B4B77622B3411A7BF6634 /* dataobj.cpp */; }; - 28ADE8D385A53445A5451F25 /* jdhuff.c in Sources */ = {isa = PBXBuildFile; fileRef = 72869747E68E37998CB0A07E /* jdhuff.c */; }; - 1A4F9F18BBEB3515AC7C7CC6 /* LexMetapost.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */; }; - 3D762A0BBF1B39B88A769633 /* helpwnd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */; }; - 908957F65B7E36F8BF3858DE /* PlatWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47FF6D792CA234C395692118 /* PlatWX.cpp */; }; + EE6474BBB4AF34D093E2451F /* MarginView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F951601E73683F27AD8CA99D /* MarginView.cxx */; }; + 52C0984A2A4F31BC885519B1 /* xtistrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */; }; + 9C6E9E4BA54733EF9F87E4B8 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 513033E36E643593AC305B3D /* uncompr.c */; }; + 88E1AE56FD393C8BA5CF8546 /* stringops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F1E724EA70AB35DDB130F84F /* stringops.cpp */; }; + 9881E3FB23ED3283B6CC71A3 /* filepickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */; }; + 66FD099CE5A338C18329FC38 /* LexAbaqus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CD72950967F33809931D4968 /* LexAbaqus.cxx */; }; + ACD644CFA85A3B70A3E3B11A /* jcparam.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F41EDEB298538CC86FF6DC1 /* jcparam.c */; }; + 65514CD6A9F23ED98436AC03 /* ftp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB4781DF8C432C688F30CDD /* ftp.cpp */; }; + 9A63148F193E33B5964DD029 /* uilocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */; }; + 46A4CCF128FC3EB092074DC5 /* property.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E1F571B01F34D4AB70CA18 /* property.cpp */; }; + 87AA9C5D887B3C31A2AFB49E /* htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD5F11A3646F397BA62EB037 /* htmllbox.cpp */; }; + 4F99EB97F65330C28EB4D078 /* datectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95B4B2890C3A372DAB8DC7BA /* datectrl_osx.cpp */; }; + 0FBF7C9EDFB53D8DA0991B55 /* xh_notbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87662D69F0432FC96701280 /* xh_notbk.cpp */; }; + CCFD3144A22C3A87B67D88AB /* LexRebol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0D9828C9BD9633C1A8F4E0CD /* LexRebol.cxx */; }; + 3D3EA1BAAD1833B1B48E9C86 /* xh_stbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */; }; + D9F02AFDA07D3857A905527C /* jdcolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 68B81FBDA49D3C1991B6356A /* jdcolor.c */; }; + 2E059BFE8E3B3D9299D55969 /* textmeasure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B31409EC6532FC83B0B957 /* textmeasure.cpp */; }; + 57F8001809BC3864A5FA798C /* PlatWXcocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18ABDAF9EF723072A7708009 /* PlatWXcocoa.mm */; }; + C2CF6B59914A3183ADE8402A /* tif_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 48F1439BF6C3361296F05A33 /* tif_error.c */; }; + 99F7D7BFBB543A04AB728376 /* m_hline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */; }; + 12B1DEF410AB34999AB210DB /* LexBatch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 853C2741D98438DA90B87D90 /* LexBatch.cxx */; }; + 19D823E564D932758EA6F8D2 /* UniConversion.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */; }; + 1D726139C977341A97D0C933 /* datetimefmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 864438709B363773B8C3382D /* datetimefmt.cpp */; }; + 0723C4E8B52C39FDBC2158B7 /* dataview_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E53DC332DA23DF4B9BFCDE3 /* dataview_osx.cpp */; }; + EC43AFB3670A3D459D9B388E /* LexMPT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FE3B47058A723243A285594D /* LexMPT.cxx */; }; + FDE14459359334DE9FB03ED6 /* xh_scrol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66411D54BAD338498AC59401 /* xh_scrol.cpp */; }; + 060E095718B03EF98C754799 /* treelist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5190E3E110443FD29F2474FC /* treelist.cpp */; }; + CE2C937117FE3AB599DD30BA /* sound_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9B2316B32653DA0939A372D /* sound_osx.cpp */; }; + 2E8440A2BDD53BE7B01547C2 /* uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4E1DC1869C6327C80D2F5F4 /* uri.cpp */; }; + 069D53F2DFBF370A8CC99631 /* LexCSS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */; }; + 699D88EE2DAA3594B6606890 /* ViewStyle.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C133B838193A35ABBB803151 /* ViewStyle.cxx */; }; + 9110ACFC3CFB3C7994E907B0 /* imagiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A745D1821A32D591D76650 /* imagiff.cpp */; }; + 0E8A0B8FA40E365690C20232 /* gzlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7395814D42CC38F6B8CD81B4 /* gzlib.c */; }; + 6F472413FFA03B53B395BB74 /* LexCLW.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7EE2459D69BA35838C274488 /* LexCLW.cxx */; }; + C5C60B22CE6A3BCB868F69E8 /* pcre2_find_bracket.c in Sources */ = {isa = PBXBuildFile; fileRef = 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */; }; + 98F52D5224B438DFA8887E07 /* timectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741578B590AF3F2CABE615EB /* timectrlg.cpp */; }; + 8FC1C07FEE793897A1E96D24 /* statbmpg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA2119A7C67D37B290C17989 /* statbmpg.cpp */; }; + 4657E7382E9E3EDC8DE2401F /* mimetype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C97C1F26B5A38C49543060C /* mimetype.cpp */; }; + 3C394FBD47B6310C80577E3C /* LexMMIXAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */; }; + 63F2517EC6B2334CA825A6F9 /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEB08798C70E33DDB360E563 /* layout.cpp */; }; + 6F0605F3A4E83BF0BF4C8B7F /* cmdproc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */; }; + A9864F0104FA344BBE79D3BD /* rendcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96CED508FA3C3B6B9265099E /* rendcmn.cpp */; }; + 052331773CF6362C9A6CF38E /* utils_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EED7C691150139EFA35E8EBD /* utils_osx.cpp */; }; + 26BB10834DA1388881BDD1ED /* propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98B72B3A0A73044B85AED60 /* propgrid.cpp */; }; + BAAB6B1D80A33843A8436B10 /* appunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */; }; + 4E2737AC738431EB9898B8B8 /* gzwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */; }; + 502D7B786EAE383B9546F320 /* LexRust.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 24BD2EF635673E819B8406CB /* LexRust.cxx */; }; + 32486A808EBC3E088598D51D /* jcprepct.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FE0455EBDC63D82B2D88587 /* jcprepct.c */; }; + 311840186794346AAAA42092 /* jutils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */; }; + EDD5725CF41336EFA7FB300A /* framecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A54B80C17F823CB5900AD2E8 /* framecmn.cpp */; }; + 0164A65CDB7A334A8E9AA4BF /* dynload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */; }; + D3EC9191D94837CABFF05DC4 /* LexNim.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B1AA9AF75D233FFC9FC90E7C /* LexNim.cxx */; }; + 9E0B67E34B683412978BA82E /* filtall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */; }; + AC0B0C52922B30188AE95E94 /* tabart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51054B41BFD83E97BAF76D07 /* tabart.cpp */; }; + 2EECB3C2F9523D0B95847A7F /* accel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C78A1539462370CAA429508 /* accel.cpp */; }; + 2F50DBC14FE538A49823925C /* calctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 496674699F173A5385EAFF07 /* calctrlg.cpp */; }; + 127E255EE601383A9E0EF7EA /* menuitem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61548D0FE1353D7C846DD721 /* menuitem.mm */; }; + FD3CC5F0AA41384B9388A1E1 /* htmlfilt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C6C4F5468743265A02D656C /* htmlfilt.cpp */; }; + 82FA4AA043213728AC266701 /* wizard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */; }; + 3E99016BDE043A08B4D6B3CF /* htmprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 194ADD28300E329E80F7892E /* htmprint.cpp */; }; C92005CB86C6361BBB9D7C67 /* LexBibTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0851C46057CE3C37991B9E34 /* LexBibTeX.cxx */; }; - BB12132A86E2350AA47414CD /* arm_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 933D7637CAA43F6C99814BC5 /* arm_init.c */; }; - CA155860CE9A3A8189C3A4C2 /* zipstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */; }; - 311840186794346AAAA42093 /* jutils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */; }; - 99E7A46106C03484BA70D2A0 /* tif_unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D2F8259CC99380CB8217DEF /* tif_unix.c */; }; - 4269B85FDC5639BEB76A8AED /* nonownedwnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */; }; - A423177BBC0F3BE5A436B4B9 /* propgridpagestate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */; }; - CB46C7E531903700ADFB11C9 /* tif_jbig.c in Sources */ = {isa = PBXBuildFile; fileRef = F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */; }; - 1D726139C977341A97D0C931 /* datetimefmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 864438709B363773B8C3382D /* datetimefmt.cpp */; }; - 46E331300D8F349DB36AB50C /* imagpnm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC12B97F233B3B9494DA217F /* imagpnm.cpp */; }; - 4D0BA8B9F72C3C31BC170CE3 /* progdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */; }; - 1749412E53B9311DABA71DDD /* bmpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */; }; - 19D823E564D932758EA6F8D1 /* UniConversion.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */; }; - D5AABE973F3A351EB1C1A5A7 /* fontmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0817D6A1AF83608B050EBC3 /* fontmap.cpp */; }; - DE26572475EE336B8EEA5D94 /* jerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 108517BCD39230E7A89BC943 /* jerror.c */; }; - 4958BD2E717A3F03AB030189 /* tbarbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3F32C01D122301AB00D06A5 /* tbarbase.cpp */; }; - 63F895D6F5643E4B9E666B79 /* creddlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */; }; - E0FAB345D2933D42B62917A4 /* bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36296C259D023EAAA240FC79 /* bannerwindow.cpp */; }; - CE32C5250F2834D4B81BE898 /* appprogress.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD91A34971FB3D0299B894A5 /* appprogress.mm */; }; - 9F608A33D52D327FAA295625 /* sckfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56653FACC7D13804A70556AD /* sckfile.cpp */; }; - EBA0986930DA3B59B2FB4F1F /* htmltag.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCCFF49F92B4323D9181CEDA /* htmltag.cpp */; }; - 2480859662ED399799E120A7 /* pen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA819575B5136B09FA8FEB1 /* pen.cpp */; }; - B60AD651E0523DB7B31E4107 /* LexillaAccess.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8052B1625907355894CCF263 /* LexillaAccess.cxx */; }; - F4C0CEADEDC23610BF6983D7 /* artmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0665A40F3FC3F218074C63C /* artmac.cpp */; }; - 49260580A7F23B569A827D3F /* filefn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58421C141C9E31C6A7A3C183 /* filefn.cpp */; }; - 895E7FE46F733C75AE8847E5 /* DBCS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CDF592CBE5193497A26EF978 /* DBCS.cxx */; }; - A80D00249A693F43A9CBE778 /* rgncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63867276260C3F4A980E83D8 /* rgncmn.cpp */; }; - 11DD420E32FB3EFB9DA0AB5C /* jccolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EFF4707641D3F20AB602ED6 /* jccolor.c */; }; - E3136EF5DD843ACE886E286A /* tif_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = E79B2D1F630036129B9677A7 /* tif_dir.c */; }; - DFEB01E7B97A3515B785DCA9 /* pcre2_string_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */; }; - 4666CDC48BA9301EA283C001 /* choice_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */; }; - F7D10B6E0CBA32EFAF79C77D /* xh_dirpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */; }; - 8C6E2BD9C31A3AE18AD17D45 /* pcre2_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */; }; - 70F898F8B129380BBECAC559 /* richtexthtml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */; }; - F80C2290D67B345F9CF60086 /* dpycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A37E3D1FB4FB31AFAE88665A /* dpycmn.cpp */; }; - FD1F6CD8286D3D428FD52A29 /* filepickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B580FD04D0D83601826FD5EE /* filepickerg.cpp */; }; - E3B3E4F75D503DB89B5C622E /* stc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B9C41A4D12345AAA764CAD /* stc.cpp */; }; - B84642DA949638A189032CE8 /* http.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F84F0DB790A23D92A193D2B4 /* http.cpp */; }; - 4F99EB97F65330C28EB4D079 /* datectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95B4B2890C3A372DAB8DC7BA /* datectrl_osx.cpp */; }; - DC6B669C9A78398F914AEE54 /* fontutil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FF661188B563D27A11F5716 /* fontutil.cpp */; }; - CEBAAB0C77983358A601BFFF /* jdmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = ED19EF377E653F71B1876259 /* jdmaster.c */; }; - 1E17F95DD433379E8C18298D /* odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */; }; - 7A84B9471A3238B4B66B1777 /* nbkbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B901252876603DCEA4C66D89 /* nbkbase.cpp */; }; - 6F8129E317EE3486A89D854A /* LexSpecman.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */; }; - FF7DB2884F6E3C5DB4BDF61E /* fswatcher_kqueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */; }; - 96927C5A21FD3ACF936CDF6C /* renderg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49CABA38E78D34DFA260AA06 /* renderg.cpp */; }; - 1937FBA0A0DD32A8A743CFE3 /* valtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8701E1CF2B352B945C17E5 /* valtext.cpp */; }; - 47C31B7492F33C3EBE53262B /* settings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6831AA74AB5B38D5AA6946D7 /* settings.mm */; }; - 9C6E9E4BA54733EF9F87E4B9 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 513033E36E643593AC305B3D /* uncompr.c */; }; - 37749AC3468836FC857BD0D7 /* checklstcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */; }; - CB078622E90F33BE9D131134 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28825 /* buttonbar.cpp */; }; - DB73248401573A5996D8E68F /* jcmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 664736BDE465350C9C4750E9 /* jcmarker.c */; }; - D72D99FC424337CF9EDC2043 /* props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C20E46A504113C899B9DD9B7 /* props.cpp */; }; - 4D9368BD07F131C493232E2E /* LexIndent.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41AE72D4E8FF307F86A02F5F /* LexIndent.cxx */; }; - E741CDA71895344C974D8F51 /* AutoComplete.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */; }; - 0836590D35FE37988DE70442 /* combobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */; }; - 131B879180AE3FB481F81CC9 /* fs_mem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A305CEC03B3085B159B617 /* fs_mem.cpp */; }; - E7D02E64384F37BC8939A2C4 /* jdpostct.c in Sources */ = {isa = PBXBuildFile; fileRef = 375FF97B202F3C359402D13E /* jdpostct.c */; }; - CA4DCD57060B38CC8B2283D8 /* filtfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */; }; - 6BC8B3EDB3AE3EF4BACFC08C /* ContractionState.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5219A792C6A736F193D4A82F /* ContractionState.cxx */; }; + E80BEED62EBF34F09B3F401F /* LexMagik.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 45860601270D318D93BEE1F3 /* LexMagik.cxx */; }; + 50D7E093424138C88BB50D28 /* jcsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 53D06E47477B3E32BB6B915E /* jcsample.c */; }; + 7C9EAFF4A0223EE597E0E39F /* xh_srchctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */; }; + 7E6C627A325F32FFB2EF9B9F /* caret.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A82EDCFFBAC30098B238957 /* caret.cpp */; }; + 2020EE3C45743B53BE8C7F38 /* LexCoffeeScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */; }; + 27759C2FBB0E35FDA847B2B6 /* LexForth.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B181F564935730E89AB00D92 /* LexForth.cxx */; }; + C259D01CC62533D296EF023A /* scrolbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */; }; + 8B87FEC23DB834EDBFB6EA32 /* pcre2_ucd.c in Sources */ = {isa = PBXBuildFile; fileRef = 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */; }; + 4E396D8D2E9138D797F320C6 /* tif_aux.c in Sources */ = {isa = PBXBuildFile; fileRef = D0CDADAF2D893E32A38351E4 /* tif_aux.c */; }; + 523FB2A8435A3324A8E1B370 /* PerLine.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9389DAF8B91030B7AAB029FF /* PerLine.cxx */; }; + 02E8F1195B653D26AAA89462 /* listbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */; }; + 0EB6AB38A68D3845AC384A24 /* xh_text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */; }; + C5A8DF376BB13A2A8290C2E6 /* xh_unkwn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */; }; + 5A459FC1180130C5B705AEDB /* xh_ribbon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */; }; + B791BD05072B3B909A7093C2 /* dcsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */; }; + 6F8129E317EE3486A89D8548 /* LexSpecman.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */; }; + 0F2FD12272023C869CE86009 /* filter_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */; }; + 52C0984A2A4F31BC885519B2 /* xtistrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */; }; + F910C74E48823E0BA7F7885E /* graphicc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BACAA6CE4A0934459F26B27C /* graphicc.cpp */; }; D5AABE973F3A351EB1C1A5A8 /* fontmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0817D6A1AF83608B050EBC3 /* fontmap.cpp */; }; - 51D133EC44F830588FEEAEC2 /* LexHaskell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */; }; - D36E76A4CAF5352D9397E200 /* fdiodispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */; }; - 5C5D0983160A36189A770744 /* webviewarchivehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */; }; - D51B3389209E370489078892 /* tif_dirread.c in Sources */ = {isa = PBXBuildFile; fileRef = F6EA240B3DB93D398A990FAD /* tif_dirread.c */; }; - F5DF7AF0FA9E371BB71EF79A /* xh_listbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */; }; - 0C2073A011EA36B8AD906DA5 /* LexCIL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7F18C26877336DBE638D75 /* LexCIL.cxx */; }; - 779D3480141B3683A6D132C0 /* tif_lzw.c in Sources */ = {isa = PBXBuildFile; fileRef = 346C68F0CCD23823B78267F0 /* tif_lzw.c */; }; - 0B792C3F31713850818EEFEB /* LexDMAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AC62806DE67F33E18C386D4F /* LexDMAP.cxx */; }; - 4E2737AC738431EB9898B8B7 /* gzwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */; }; - FCE5B139CBE73FCB804EF7DF /* jcomapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EB76F786D7F3FF286948D22 /* jcomapi.c */; }; - BD2B17EB72E73A6EB6E0B271 /* dcmemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 343D4FDD5CC030618EF24729 /* dcmemory.cpp */; }; - A3C4D47A84E8362295867527 /* LexPOV.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8EECA8EB93BF3C7A9CC827AD /* LexPOV.cxx */; }; - ACD644CFA85A3B70A3E3B11A /* jcparam.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F41EDEB298538CC86FF6DC1 /* jcparam.c */; }; - EB52C6A91594381393294503 /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04A /* control.cpp */; }; - 55F01295F1D23805BCA12F17 /* srchctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14EF4B028AD63B4A885D29A1 /* srchctrl.mm */; }; - F70156C3E68B38FCB72FE255 /* dirdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */; }; - 98DF13E96160304EBB905E75 /* jcmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = 810EB7316DF3344197C78EC0 /* jcmainct.c */; }; - 7181709A030D3749AB355B75 /* xh_radbx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F43AF44465B335479752116D /* xh_radbx.cpp */; }; - 0FBF7C9EDFB53D8DA0991B56 /* xh_notbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87662D69F0432FC96701280 /* xh_notbk.cpp */; }; - 774EB9F3F7E93A379E1F7551 /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C4762898E5330C28651EE73 /* graphics.cpp */; }; + F5B0B26BD0803719A3FCB4D7 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E45F6DF601A34BCB3CC0206 /* adler32.c */; }; + 4156FDB73D0A397A870E4304 /* overlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD8031E28A3C9CB7C45784 /* overlay.mm */; }; + 4CF9BA40653C3153805D88AB /* arcfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C513377E9E303F778BA9D7ED /* arcfind.cpp */; }; + F5DF7AF0FA9E371BB71EF799 /* xh_listbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */; }; + E741CDA71895344C974D8F50 /* AutoComplete.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */; }; + 4C31B77B28343F20B4973367 /* LexJulia.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */; }; + 1D7442C82B343F50A83B25B0 /* CharClassify.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */; }; + 9A178ED42D96329D8CBF9B8A /* tif_predict.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */; }; + B8FEEC2C94183AB69C963178 /* headercolcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */; }; + 61C3F7D495FB3E8BA402E4F8 /* jdmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 20E4A10BCD773C84AEC481A1 /* jdmarker.c */; }; + 438EAEA4B30C325C827F6198 /* xh_fontpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */; }; + FEA741A9B6663A4C929893C3 /* aboutdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */; }; + EDCA35F1555F3509895CCA6B /* textctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */; }; + 4788F736CD9C324E8A3DFA75 /* LexEScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 58EFF24DE2E737CA8A164F5C /* LexEScript.cxx */; }; + 692FCCABFB963696AFC1E122 /* gdiobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */; }; + A08165E5D38E3EF6962A7AE9 /* DefaultLexer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */; }; + E9EDB5C92D5D3B529E8D73B2 /* valgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7440859617F3B47AF4D3817 /* valgen.cpp */; }; + 2A79B68D20FE3C9B98A15535 /* menu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D799486AD7F336BB1F33DDC /* menu.mm */; }; + A874AF0B203D3DC99C27469B /* LexNimrod.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */; }; + 8966F77CC97B3ED780C8F139 /* xh_bmpcbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */; }; + 779D3480141B3683A6D132BE /* tif_lzw.c in Sources */ = {isa = PBXBuildFile; fileRef = 346C68F0CCD23823B78267F0 /* tif_lzw.c */; }; + B1E30CF6CFA932F5A3DBA950 /* docview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB634FD597793A74B3B3AA7F /* docview.cpp */; }; + 41943A8F82723027A151A46A /* fileconf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */; }; + AD7EEB418C7930CB828EAF87 /* dynlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D272910EC35531E5B4D6E05B /* dynlib.cpp */; }; + D5C304182151365FA9FF8A3D /* xh_bttn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */; }; + 4E396D8D2E9138D797F320C7 /* tif_aux.c in Sources */ = {isa = PBXBuildFile; fileRef = D0CDADAF2D893E32A38351E4 /* tif_aux.c */; }; + 02E8F1195B653D26AAA89463 /* listbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */; }; + D18E2985C48733B2B7B3D443 /* evtloopunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */; }; + 6FA47EAACE613B039B6EC262 /* containr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3645350F572364BABF50238 /* containr.cpp */; }; + 3C36437B2E933F83984D431E /* imagtiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */; }; + 1EDED99760B23A1999E75C13 /* imaglist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */; }; + 07C769F64665317BA3E1AC91 /* tif_jpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */; }; + 3DE2CD678CEB39C2B1E09ACB /* power.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60DFD5962DE3379F801AF78F /* power.mm */; }; + E63364B7E727383BA8E2B7EE /* datstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81B3DFBB73573FFDBD320334 /* datstrm.cpp */; }; + BF8C33B7CB3A3ECE814A95FD /* tokenzr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */; }; + 55D893FDD00633FEA82ABD83 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */; }; + 0FA6E1E47F123FF4A902E4D2 /* xh_odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0080254545B9383ABDF2045C /* xh_odcombo.cpp */; }; + 8093A858CA9E3E9EA2D2185F /* jdarith.c in Sources */ = {isa = PBXBuildFile; fileRef = FA9DD56E399533A5BE7AAD16 /* jdarith.c */; }; + F569D7A3F0E038E9B4CC2A77 /* xh_comboctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */; }; + 7BD3887F603E3704969A54E3 /* pcre2_chartables.c in Sources */ = {isa = PBXBuildFile; fileRef = 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */; }; + 70F898F8B129380BBECAC55A /* richtexthtml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */; }; + CA155860CE9A3A8189C3A4C2 /* zipstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */; }; + 171F09F8DD553FA5B4B3FAE3 /* modalhook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E7C516E2453A269280A404 /* modalhook.cpp */; }; + F5D2146C94E733FAAB6D286B /* threadpsx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB466912FDA23F8B87A00A3C /* threadpsx.cpp */; }; + 182DFDBB58653FD9863D4178 /* dcprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238741BDA2C73E56899CCB04 /* dcprint.cpp */; }; + 729091CC33C73C989B4E071A /* timerimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0401B7302088357BB6B7F16F /* timerimpl.cpp */; }; + DC7D78BABF823480B56528AC /* xh_propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73962222F573116BE63576C /* xh_propgrid.cpp */; }; + E49F0D43B5A63EF1A57A7113 /* fswatcherg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */; }; + F38202271C6131908C358DED /* mstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC3D1E222FD93A69B1D1366E /* mstream.cpp */; }; + 895E7FE46F733C75AE8847E4 /* DBCS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CDF592CBE5193497A26EF978 /* DBCS.cxx */; }; + 834F2ADD0520313FBAC4F928 /* LexCsound.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */; }; + 6978D7A20DA93A329DDD1383 /* socket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40CE02524DD4385AB2C3DF95 /* socket.cpp */; }; + A08165E5D38E3EF6962A7AEA /* DefaultLexer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */; }; + 923F4797A73A3BDD87BBD1E1 /* LineMarker.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AF3DF03795153E039B8F1F87 /* LineMarker.cxx */; }; + DD1B139EA5AD3F6DB92C0FA9 /* EditModel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E685D81FB9FF3081B6C5C321 /* EditModel.cxx */; }; + 2F7F5B9BBCD83D90B237A1A0 /* markupparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA7F7633279936EFA0B9C5CF /* markupparser.cpp */; }; + AE5286C71D1130EAA368A1C4 /* radiobtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 724927B0045F3CC0884878BB /* radiobtncmn.cpp */; }; + 1D7442C82B343F50A83B25B1 /* CharClassify.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */; }; + 6138BCBC8E4438FA91E0EF9F /* xh_chckb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */; }; + 1569BB4728693B6285623A25 /* pngerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A0650754DC2358CA5933B28 /* pngerror.c */; }; 070797A894A03196B7BEC662 /* xh_bookctrlbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */; }; - 68AC8860B0943C1FAF76D96D /* list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 552757A901E732CAA8E3F16D /* list.cpp */; }; - 5AEA6E94FB76371D928D371E /* LexMatlab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC9153A350893820B942D37E /* LexMatlab.cxx */; }; - BAFF04F1680F32DA988EB03D /* stockitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B180290089B139F18B0C7BBA /* stockitem.cpp */; }; - D6B2A64A78AF3F2983B441AA /* ownerdrwcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */; }; - 10743B74A58231639C6BF611 /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = 400275BE019D3E5BA47988BE /* inffast.c */; }; - 7B4DA2F5F25B3E188CBAFE39 /* hyperlnkcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */; }; - 9E0B67E34B683412978BA82E /* filtall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */; }; - 6D073876E1753549B5EEFDDB /* tif_compress.c in Sources */ = {isa = PBXBuildFile; fileRef = CA0D5D47D62A3148BA51B31B /* tif_compress.c */; }; - 6C822F7F313734DCB51F44BA /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81A30C745CA73E30B788B408 /* image.cpp */; }; - AB58406CEBA13BC4A2A83B68 /* printmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */; }; - E1A20811148F31D289AF98B0 /* xh_sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */; }; - BDB8EF0E0DA03693BFB77EF9 /* accesscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8555204EBA8930809B732842 /* accesscmn.cpp */; }; - 02BB539E2AD63C078DA776B1 /* uiaction_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */; }; - 46A4CCF128FC3EB092074DC6 /* property.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E1F571B01F34D4AB70CA18 /* property.cpp */; }; - 14D6D5F8F5ED3C71936DD2B0 /* button.mm in Sources */ = {isa = PBXBuildFile; fileRef = C06FED83BF933DF98C2466AE /* button.mm */; }; - FD38B04026F930CC80BC9481 /* m_pre.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61658C3EABB4341AA38C691E /* m_pre.cpp */; }; - A53B8C3ED0D33A1D9AA8219C /* toolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3BF8C9FF2D5314591329D0D /* toolbar.mm */; }; - EC3A1C620D323B5590AABF04 /* module.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DB43FAB1E563B02ACEFF647 /* module.cpp */; }; - E6D18B2EDE353F678830859F /* odcombocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F23140777B733679D2FAAFC /* odcombocmn.cpp */; }; - AE84BC9A1CCA3ADA9C483951 /* xmlrole.c in Sources */ = {isa = PBXBuildFile; fileRef = 59C6B9849FF6325E890942EF /* xmlrole.c */; }; - 4B88254FF9963833A276A64E /* snglinst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */; }; - 02BB539E2AD63C078DA776B2 /* uiaction_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */; }; - 11818B68C5263EB68D708847 /* jdtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 4549845C0751356A907C23E0 /* jdtrans.c */; }; + 99E7A46106C03484BA70D29E /* tif_unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D2F8259CC99380CB8217DEF /* tif_unix.c */; }; + 6CA1BAEBBDB4336E9E201F96 /* protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */; }; + EBA0986930DA3B59B2FB4F1F /* htmltag.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCCFF49F92B4323D9181CEDA /* htmltag.cpp */; }; + 603DF49D176737D383CE4F02 /* choice.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F838F853CB03CF7932C08C3 /* choice.mm */; }; + AE5286C71D1130EAA368A1C5 /* radiobtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 724927B0045F3CC0884878BB /* radiobtncmn.cpp */; }; + A1A7D793B034398B8696EF34 /* utils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 789F45D14FF23E248FCFB5FA /* utils.mm */; }; + 27E2EABB117334CD89CFD2A4 /* mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B568A7364ECA30288820CCE7 /* mdi.cpp */; }; + 1A70DDEDF9E13FF4BDA390E9 /* bmpbndl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */; }; + 3694B007E88A3D8C8CB952F1 /* LexRegistry.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A737317EDE0F3921B1412966 /* LexRegistry.cxx */; }; + 0B4AF44DC0C439AD83CDC37F /* Indicator.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4FDE5A962FA234FA83A605AD /* Indicator.cxx */; }; + 51D133EC44F830588FEEAEC1 /* LexHaskell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */; }; + 9C1F073349FD393E9220C0D4 /* combog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBD7B44E33373BCCB60FC11F /* combog.cpp */; }; + 3C0EB1DDA5243E31B2D92CE3 /* jquant2.c in Sources */ = {isa = PBXBuildFile; fileRef = 02D9332D5C5632E981936E29 /* jquant2.c */; }; + 1E4832B42B95308299B767B9 /* jdmerge.c in Sources */ = {isa = PBXBuildFile; fileRef = 0890779C662C35889A8C6C2E /* jdmerge.c */; }; + 9F70A89D00B03D4894AF7639 /* validate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01BA6D45FE4C381493EB4372 /* validate.cpp */; }; 50E89226E8D7390D9D21C80A /* debugrpt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */; }; - 060E095718B03EF98C75479B /* treelist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5190E3E110443FD29F2474FC /* treelist.cpp */; }; - AAC2CB4D851230008AE4ABA3 /* dcscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */; }; - 3ACCC2EB8E973C11835EB597 /* bmpbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */; }; - D5A25AC579F436509805335C /* appbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95A156A823B536DE8476E4F9 /* appbase.cpp */; }; - A4DEBFA074C93388A1BBCB41 /* pcre2_substitute.c in Sources */ = {isa = PBXBuildFile; fileRef = FAC42945539F362D91D6F559 /* pcre2_substitute.c */; }; - 0C7E2D5C22A232368F862A62 /* longlong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D7AF345E563587941BD868 /* longlong.cpp */; }; - A1A7D793B034398B8696EF35 /* utils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 789F45D14FF23E248FCFB5FA /* utils.mm */; }; - 30AEDF41EC5C374DBF96EFFD /* slider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B862D1027C4367BBF44420F /* slider.mm */; }; - 246B4FF96BA135258FE45F50 /* encconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */; }; - DFEB01E7B97A3515B785DCAA /* pcre2_string_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */; }; - E80BEED62EBF34F09B3F4021 /* LexMagik.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 45860601270D318D93BEE1F3 /* LexMagik.cxx */; }; - F016C51053373E658ED4C9AB /* helpext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF376BC55EA73F5FB7328142 /* helpext.cpp */; }; - DA0FA502405A37B2A5698D21 /* config.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FE0B33481283D3493613B0F /* config.cpp */; }; + 4657479AF35533AEB7876677 /* helpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB30516233A39BE809405AA /* helpbase.cpp */; }; + 9E37D29DCF7A3945A0EECB39 /* pcre2_serialize.c in Sources */ = {isa = PBXBuildFile; fileRef = BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */; }; + 3E99016BDE043A08B4D6B3D0 /* htmprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 194ADD28300E329E80F7892E /* htmprint.cpp */; }; + EA02FA6D3B003F8F8A2963C7 /* toolbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */; }; + 49FE0228D8FD3F7AB64A4433 /* bmpbuttn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */; }; + BDB7B2AD26CB356B8BEAAECF /* jchuff.c in Sources */ = {isa = PBXBuildFile; fileRef = DC0FFDC7A6163F2DA73B84EB /* jchuff.c */; }; + 32FECED7A7633C4D8C1BFBB5 /* toolbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24DF23D67E693D999B875101 /* toolbkg.cpp */; }; + 1DF3A4F85FCB3BA79A552F3D /* menuitem_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */; }; + 57B41B6BACFB3906ACD1BFB0 /* pcre2_jit_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */; }; + 205520440CD13C0AB9E8915A /* anidecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE959EC7BFDD3A628E856404 /* anidecod.cpp */; }; + FE5285579C7F39C48FC66B10 /* hash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 888BD97139C936679691FF34 /* hash.cpp */; }; + 1C52CB9487DF3AB9AF243B47 /* prntbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 242BF97B558634A79322052C /* prntbase.cpp */; }; + 3694B007E88A3D8C8CB952F2 /* LexRegistry.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A737317EDE0F3921B1412966 /* LexRegistry.cxx */; }; + C40AA245D5773351979A2851 /* filedlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = DC8A52CA69053B27B09F1037 /* filedlg.mm */; }; + F80C2290D67B345F9CF60085 /* dpycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A37E3D1FB4FB31AFAE88665A /* dpycmn.cpp */; }; + C5A8DF376BB13A2A8290C2E7 /* xh_unkwn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */; }; + 2D4D105CA9BE3FA6995A5FFF /* tif_dumpmode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */; }; + E82CB89681FF3747B6A94428 /* anybutton_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */; }; 93E04642049537EB8A37BA27 /* htmlwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */; }; - AD07124BBA613B47829F0692 /* sockosx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4969528429903F15882F5391 /* sockosx.cpp */; }; - 6138BCBC8E4438FA91E0EFA1 /* xh_chckb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */; }; - 8B87FEC23DB834EDBFB6EA34 /* pcre2_ucd.c in Sources */ = {isa = PBXBuildFile; fileRef = 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */; }; - CA155860CE9A3A8189C3A4C3 /* zipstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */; }; + D6B73239BF0E32288161679C /* platinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97FFB03FF6793506B246BAC6 /* platinfo.cpp */; }; + BA9F0BBD57F63FD29E484FD4 /* LexScriptol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F1B41B0F10C3DA38188C239 /* LexScriptol.cxx */; }; + 64DD406C453D39FEBBE66ED2 /* tif_pixarlog.c in Sources */ = {isa = PBXBuildFile; fileRef = 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */; }; + 699D88EE2DAA3594B6606891 /* ViewStyle.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C133B838193A35ABBB803151 /* ViewStyle.cxx */; }; + A9B91FC69E473BE18895ABAB /* InList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCBD877191233EE9984112D2 /* InList.cxx */; }; + A3586433C4B1398FB1C361D8 /* m_image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 548906E4E72935E48CE4AF87 /* m_image.cpp */; }; + 1749412E53B9311DABA71DDE /* bmpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */; }; DEC5F4B34BC037169D3E5F2B /* mediactrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */; }; - E3B3E4F75D503DB89B5C622F /* stc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B9C41A4D12345AAA764CAD /* stc.cpp */; }; - 205520440CD13C0AB9E8915B /* anidecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE959EC7BFDD3A628E856404 /* anidecod.cpp */; }; - 131B879180AE3FB481F81CCA /* fs_mem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A305CEC03B3085B159B617 /* fs_mem.cpp */; }; + 14D6D5F8F5ED3C71936DD2AF /* button.mm in Sources */ = {isa = PBXBuildFile; fileRef = C06FED83BF933DF98C2466AE /* button.mm */; }; + DC928C38CA8331F18FF00BCC /* tif_lzma.c in Sources */ = {isa = PBXBuildFile; fileRef = 3088384F07C63A5DB3581656 /* tif_lzma.c */; }; + 44C6F11C7D1C399F99CF6BD4 /* xh_auitoolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */; }; + 9564A6968D66325DAEADEBA3 /* dcgraph.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */; }; + D542C7819D593112AE5F7C3D /* combocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */; }; + AD07124BBA613B47829F0694 /* sockosx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4969528429903F15882F5391 /* sockosx.cpp */; }; + 4040AE89BF9F34668091064B /* dragimgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A67053D16D63C588E555C84 /* dragimgg.cpp */; }; + 26BB10834DA1388881BDD1EE /* propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98B72B3A0A73044B85AED60 /* propgrid.cpp */; }; + 05814571E7A83F5DBFB6E4C6 /* msgout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E968913A9A593B258BD8EACB /* msgout.cpp */; }; + A8476B3CE46B3FD4A2832F01 /* LexNull.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */; }; + 8B9C9FCB954F3596A4CED9A6 /* jdapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 86884BC843F6337EABF744BB /* jdapimin.c */; }; + AF1E3338E892336E924AF632 /* pickerbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */; }; + 6944AC98F6F83E3D983DABD4 /* tif_getimage.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */; }; + D6CF7416CA6A3CFF8FDFD49C /* nativewin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9BC8BFDE41F93504B7A51D08 /* nativewin.mm */; }; + 07412469921A3E488A2F9BA6 /* checklst_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */; }; + 219304C9DDA33E9AADB515DD /* datetimectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D049F49C75043592B7E318B3 /* datetimectrl_osx.cpp */; }; + 4B996B4C54163D7091427DB7 /* gzread.c in Sources */ = {isa = PBXBuildFile; fileRef = BAD4614CABC934D6AFF8D9CD /* gzread.c */; }; + 5AEA6E94FB76371D928D371C /* LexMatlab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC9153A350893820B942D37E /* LexMatlab.cxx */; }; + 2EECB3C2F9523D0B95847A80 /* accel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C78A1539462370CAA429508 /* accel.cpp */; }; + 02BB539E2AD63C078DA776B1 /* uiaction_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */; }; + 6A032420671B375D81273716 /* valnum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 684D92E552BE313CBE0A88AA /* valnum.cpp */; }; + 6BF19C7CA9E93D989C210FE4 /* dseldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1197B997B1D139C5AE4D198A /* dseldlg.cpp */; }; + CB078622E90F33BE9D131134 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28825 /* buttonbar.cpp */; }; + 026F90F7492C316A94128917 /* logg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C64705CE9398316D87BAB4DC /* logg.cpp */; }; + 0FA6E1E47F123FF4A902E4D3 /* xh_odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0080254545B9383ABDF2045C /* xh_odcombo.cpp */; }; + 135DFCE48FC03D8294D01A8A /* xmlrsall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */; }; + 7B642B17F5D23F4F8ED38BB5 /* graphcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BB59DD194923D6399087A75 /* graphcmn.cpp */; }; + 7A79D9AC608E3B8287229174 /* tif_warning.c in Sources */ = {isa = PBXBuildFile; fileRef = C83C97A1FCC5345896C9D7DE /* tif_warning.c */; }; + 2DF74933A90E34129F1BEF73 /* dnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA72410F615B3A78A6340532 /* dnd_osx.cpp */; }; + 7C52E7CC12463941B0E4D402 /* statbmpcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */; }; + 68AC8860B0943C1FAF76D96C /* list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 552757A901E732CAA8E3F16D /* list.cpp */; }; + 42260A6F1853361083803B0C /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CB467F9898C3952A68D988B /* zutil.c */; }; + 0718E7524134312090541D70 /* LexPascal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */; }; + 056E30EA43753A7CB1AF8C9E /* strvararg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EEAD9C3E180305D8899441E /* strvararg.cpp */; }; F5FF98C231B33E3EB7902C64 /* colordlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = DAAED71A534135A9A61612A6 /* colordlgosx.mm */; }; - 2E930206397C3EDCBD8206FD /* gridctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */; }; - FD3B31CE1E7832218B5D9A15 /* LexPO.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3430B6483E35C3A201BF44 /* LexPO.cxx */; }; - E39021D3CDCD33BAA646B008 /* sckaddr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8238DA30FF3FB984511250 /* sckaddr.cpp */; }; + 923F4797A73A3BDD87BBD1E2 /* LineMarker.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AF3DF03795153E039B8F1F87 /* LineMarker.cxx */; }; + 0C485288EA86379D9FD66537 /* cshelp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67DCEEB6861731319C30817F /* cshelp.cpp */; }; + D7F14BDFFB7F369B842AFC14 /* pcre2_config.c in Sources */ = {isa = PBXBuildFile; fileRef = FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */; }; + D8ADDD24BEAC3D94B3388D3F /* LexCOBOL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */; }; + FCE5B139CBE73FCB804EF7DE /* jcomapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EB76F786D7F3FF286948D22 /* jcomapi.c */; }; + 20F10669703137E68318C6FD /* cmndata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */; }; + CCFD3144A22C3A87B67D88AC /* LexRebol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0D9828C9BD9633C1A8F4E0CD /* LexRebol.cxx */; }; + 5D3AD309AF39385EBF7D9DF9 /* jaricom.c in Sources */ = {isa = PBXBuildFile; fileRef = 573D0D15EE9E3E629D61EA65 /* jaricom.c */; }; + 1AF2B2346C9639DAA4D15F31 /* numdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */; }; + 805CCAE64D023561AD334B54 /* popupwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 530DC2E26BF2313E8702AD43 /* popupwin.cpp */; }; + CB1F37993ECB3B73A51B42FD /* LexMySQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F3EE2E9EE05311497826962 /* LexMySQL.cxx */; }; + CFA91122523B31B9A07A3828 /* pngmem.c in Sources */ = {isa = PBXBuildFile; fileRef = C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */; }; + 215958201947310B88BBEDB4 /* statbmp.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD6B26B5A6A733A89EF5AB9C /* statbmp.mm */; }; + A7692B4D8658347BA16EEB84 /* jmemnobs.c in Sources */ = {isa = PBXBuildFile; fileRef = 374E341C8703367686DEDE93 /* jmemnobs.c */; }; + B0FD1B96EAE635AFBFCF2C93 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C045 /* secretstore.cpp */; }; + 3554C88010CE3D2A8970A136 /* sashwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */; }; + C3C19BD343B235F9909D495A /* xh_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C55AF552EE6931E8BFF7281B /* xh_aui.cpp */; }; + 47EBBB18BDB539C2A948C712 /* chm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E24C6F2A04E30EB95598305 /* chm.cpp */; }; + 46F341B46F80376B962759F6 /* animateg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 580AFC66F3003582B43043B1 /* animateg.cpp */; }; + F22C401903993639AE05A295 /* xh_stbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 147800BBCB80346798B35D75 /* xh_stbox.cpp */; }; + 21F74D4D4D84375AB155FD5D /* stattext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95186FEF3DEF39D8B1157BD5 /* stattext.mm */; }; + D5C304182151365FA9FF8A3E /* xh_bttn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */; }; + 24A5A71C79733E9CB913C5B7 /* LexPB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8744F2C80ECF375999195935 /* LexPB.cxx */; }; + 087FF6DE223A32509692F39C /* txtstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */; }; + 369BCCFF61D13A058D837835 /* LexPerl.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */; }; + F0D892C2618130FEAD46BB86 /* panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00969CBE3B8F32C78C195619 /* panel.cpp */; }; + 91BDA5B04CF33C9AB7358B8A /* timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69F098E47EBF34368ABAE7ED /* timer.cpp */; }; + A0FCE3CF565C3F84B63712AC /* LexCPP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9EF09C7CC5413CC6A5E7B21B /* LexCPP.cxx */; }; + 49BEDFBC3661339D90EF6936 /* LexTCL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */; }; + DB73248401573A5996D8E68D /* jcmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 664736BDE465350C9C4750E9 /* jcmarker.c */; }; + 6AA0EE765330326380989FD1 /* stopwatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */; }; + CE17002B5B7E375582747639 /* xh_choic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */; }; + 91BC7802C15337CDA84C3742 /* statline_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */; }; + 3EB6B8528A0D3B6CADAE1256 /* archive.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02D2E8B5C89939CE90B99E2B /* archive.cpp */; }; + 4269B85FDC5639BEB76A8AEB /* nonownedwnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */; }; + FADD46CB89B135D1AF1D5F8A /* richtextstyledlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */; }; + F569D7A3F0E038E9B4CC2A78 /* xh_comboctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */; }; + CF3082BA1ED232F4B904BD14 /* stdpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */; }; + 89046455F49D3D75A21C9DB9 /* imagfill.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 137E01C362E134449BF966ED /* imagfill.cpp */; }; + AD4A533C4E1633598A6D5C70 /* textentrycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F63BF9430CE371DA04AC900 /* textentrycmn.cpp */; }; + 33ED014A7FF7398794E6E4D0 /* xh_split.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */; }; + E39021D3CDCD33BAA646B007 /* sckaddr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8238DA30FF3FB984511250 /* sckaddr.cpp */; }; + D5C5DD83882B3227A1CCFE0F /* LexSorcus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */; }; + 249C9177B1A33EFEAB30F93F /* tipwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */; }; + 187F921A95DA3594B0AD980E /* gridsel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26381308E32A3A179E7A9B40 /* gridsel.cpp */; }; + 2E930206397C3EDCBD8206FC /* gridctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */; }; + A92439BAFD3A30A29DD93132 /* apptraits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A23A8BC7373D4BBD72851D /* apptraits.cpp */; }; + E741CDA71895344C974D8F51 /* AutoComplete.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */; }; + 2989056891153968B372EA14 /* pngwutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 45D7558DF5E03A2EB41883F0 /* pngwutil.c */; }; + ABCD15C4AB37396EA17B7B2A /* translation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AC666417602346EA583709E /* translation.cpp */; }; + BAAB6B1D80A33843A8436B11 /* appunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */; }; + 0E23F212CBDD33848DEBCA6F /* webview_chromium.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBA9036479943A4990CEB3AC /* webview_chromium.mm */; }; + 1E2AB43075973AE59A8D89C2 /* fontdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */; }; + 1E4832B42B95308299B767BA /* jdmerge.c in Sources */ = {isa = PBXBuildFile; fileRef = 0890779C662C35889A8C6C2E /* jdmerge.c */; }; + 6F472413FFA03B53B395BB75 /* LexCLW.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7EE2459D69BA35838C274488 /* LexCLW.cxx */; }; + 793F542F20AB31F6AF736795 /* tif_open.c in Sources */ = {isa = PBXBuildFile; fileRef = 1731A6096BFC3A468AB4755A /* tif_open.c */; }; + D95C5F467D37339AB8DF2356 /* tif_color.c in Sources */ = {isa = PBXBuildFile; fileRef = 149D299A0EDB3D998118EC93 /* tif_color.c */; }; + E05B06A7FEEE32D5AD87EA4F /* xh_editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05310A868F0B35999C568681 /* xh_editlbox.cpp */; }; + 5E80C103F0853788A2B43E5D /* LexX12.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 17A8A93EF3C03546BE19F43B /* LexX12.cxx */; }; + CCE4ECA9CE883B008065C6FD /* jctrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 725574EF98C4301989181CBF /* jctrans.c */; }; + 36DB80FD5B153E9099DB6913 /* imaggif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */; }; + 20BEEFFA08F3396791596871 /* dlunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA2D9F325F833C408657E7B7 /* dlunix.cpp */; }; + 309C0A78D45C3AB7B8778B5A /* pngset.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E463A493FD930DE80E58608 /* pngset.c */; }; + CB2E99E8FB7D3269A333A560 /* window_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26D7C4995D7A35A1854B533F /* window_osx.cpp */; }; + 9CC92BB4B0E233A0A7F8127A /* LexVisualProlog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */; }; + 3E6AA08E72A030D39D867D4C /* ScintillaWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */; }; + BE99A85EE76236CC8C719A65 /* xh_gauge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */; }; + 6F472413FFA03B53B395BB76 /* LexCLW.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7EE2459D69BA35838C274488 /* LexCLW.cxx */; }; + 1DD1888315513C24BF9C31B4 /* LexSAS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E1B538562B93D148F54645B /* LexSAS.cxx */; }; 1710A4BB0E6339558A187F8D /* xmlres.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 087B66573CD33DA99DA82B1C /* xmlres.cpp */; }; - E0E4885BF4AF34B48EB08B94 /* volume.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6506A965F677374491359FB8 /* volume.mm */; }; - 65514CD6A9F23ED98436AC03 /* ftp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB4781DF8C432C688F30CDD /* ftp.cpp */; }; - F9C5EAC42CCF3267B4100BAF /* wakeuppipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */; }; - 2FB16C6469433F1C9174912A /* renderer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92CCFD77BFB537EAA48E8BD3 /* renderer.mm */; }; - C6DF6F29407B34F29ED1B66E /* jcmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E3043D7BE9C33B59E900CCE /* jcmaster.c */; }; - 8D6B0D48EA843E48AB0FE43F /* LexErrorList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2851EAAEE9B73FE8981912C9 /* LexErrorList.cxx */; }; - E62F8E49FD5035D8BC71BB49 /* LexGAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */; }; - 3E6AA08E72A030D39D867D4B /* ScintillaWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */; }; - B37802B0A90133C68EF93DDB /* LexInno.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */; }; - CCE4ECA9CE883B008065C6FC /* jctrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 725574EF98C4301989181CBF /* jctrans.c */; }; - 4DA209AEF4AD32AAB97F9718 /* htmlcell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68E5188DB6003C35A8C7754D /* htmlcell.cpp */; }; - 31DD19A942283FA8810B6383 /* numformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BD8DAB407D231EFA5B2CAE5 /* numformatter.cpp */; }; - 0FFFFA2F762B3160955D1D89 /* gauge_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC28591B403B32B7AFCC079D /* gauge_osx.cpp */; }; - 36B0B923B836358D9DB0AE11 /* xh_panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */; }; - 1DE75213D296323B815A02C0 /* statline.mm in Sources */ = {isa = PBXBuildFile; fileRef = 743EF8DB16CE371DA5C66623 /* statline.mm */; }; - 2047544E505C3BA38F0144E8 /* pcre2_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = B60497805D37375EBFCF3D98 /* pcre2_tables.c */; }; - 9B3F9D04FB533D99B58BD51B /* jfdctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */; }; - 096BA201623034AD97218369 /* tif_version.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E6F40F4740C3ED29D83E107 /* tif_version.c */; }; - AAC2AC9C49F1366D8BD20F5F /* LexECL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1AD9605C9385374C87FAC9BC /* LexECL.cxx */; }; - 567A32722BA33AEE9FF93D7D /* fs_inet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7581D7140293BAE88E43DBE /* fs_inet.cpp */; }; - A9B91FC69E473BE18895ABAC /* InList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCBD877191233EE9984112D2 /* InList.cxx */; }; - C1E5799141603A75A26BEEA9 /* xpmdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C562D5885AFF3E15837325CE /* xpmdecod.cpp */; }; - 0ADC8DBEE80D36B0BB9B058B /* LexASY.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A82C367B86F83981803D55DB /* LexASY.cxx */; }; - 3554C88010CE3D2A8970A137 /* sashwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */; }; - 7A84B9471A3238B4B66B1778 /* nbkbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B901252876603DCEA4C66D89 /* nbkbase.cpp */; }; - AC07BA4EA5403443914DFDB2 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7013DB195D023C31ADE68546 /* crc32.c */; }; - A0BA01A85C303C78A3130712 /* art_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */; }; - 097BC5E023C33C1DA05606B0 /* Selection.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2AF7739C389536F79DAA31E5 /* Selection.cxx */; }; - 61FEDBF2D47A3B4E861F8298 /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F5 /* sound.cpp */; }; - A1AF8FF873D6383996995ED1 /* statusbr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 071FEABEA61E3B559A47A7DB /* statusbr.cpp */; }; - AC91349D7F0E37739B1F5165 /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEF6B3FB66243812969E5BD1 /* palette.cpp */; }; - B839235BED6F3609BDB732BA /* dndcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */; }; - DA71FBB9EFB2350ABB3CEC82 /* stdpaths.mm in Sources */ = {isa = PBXBuildFile; fileRef = 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */; }; + DC7D78BABF823480B56528AD /* xh_propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73962222F573116BE63576C /* xh_propgrid.cpp */; }; + C1DCF69200593986A8C606A7 /* hidjoystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018B15DE6F3A3D49B9CDE9DE /* hidjoystick.cpp */; }; + 2DBF5F96CCC63F7481C26A43 /* webview_webkit.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FEECFD764E037288CE94FEB /* webview_webkit.mm */; }; + 1FB1622D59593932B25C55BA /* LexPowerShell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */; }; + 7A84B9471A3238B4B66B1777 /* nbkbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B901252876603DCEA4C66D89 /* nbkbase.cpp */; }; + 849B89D1F6AB3DDEAA2D53AE /* xh_styledtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */; }; + 03035C5CE4BC3288A5A18425 /* choicdgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */; }; + B01C4EF49CF9390DA93A3503 /* jidctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C131F7BF8A83960ACB26242 /* jidctflt.c */; }; + 22E90F33B5C9308EBF37A702 /* printdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9E32802E8ED3E729FF34CFC /* printdlg.mm */; }; + 9065A4BE3D0433B88CF45572 /* richtextbuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */; }; + 6D073876E1753549B5EEFDDB /* tif_compress.c in Sources */ = {isa = PBXBuildFile; fileRef = CA0D5D47D62A3148BA51B31B /* tif_compress.c */; }; + 87C67583D36C3465ACD64103 /* vlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA90128E29A03CCCA30F4D35 /* vlbox.cpp */; }; + E46BEC5C8D643BD099AF1D56 /* LexSTTXT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 50859F0155753FDCB8C5222A /* LexSTTXT.cxx */; }; + 8C6E2BD9C31A3AE18AD17D44 /* pcre2_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */; }; + BFD3BFBDC8DA3B1EAD141F97 /* LexErlang.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A1276C0E5D48337489DEE8DF /* LexErlang.cxx */; }; + 3D424F4B33653A00AE9B623C /* m_tables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 082CA018FB883999839C1DCE /* m_tables.cpp */; }; + FF7DB2884F6E3C5DB4BDF61D /* fswatcher_kqueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */; }; + F4C0CEADEDC23610BF6983D6 /* artmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0665A40F3FC3F218074C63C /* artmac.cpp */; }; + AAC2CB4D851230008AE4ABA2 /* dcscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */; }; + D088E7DDE38C31DC9C9B3417 /* dcclient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17772732159304AA7312D72 /* dcclient.cpp */; }; + 8093A858CA9E3E9EA2D21860 /* jdarith.c in Sources */ = {isa = PBXBuildFile; fileRef = FA9DD56E399533A5BE7AAD16 /* jdarith.c */; }; + 1CC5AEC6C08E3600801CDADB /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 95B4EDF38F8A3E5EBAFF560F /* trees.c */; }; + DB73248401573A5996D8E68E /* jcmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 664736BDE465350C9C4750E9 /* jcmarker.c */; }; + F6B85CD918E93923BE631B97 /* fs_filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */; }; + 403FBA20CEFE3EAFB4E6B905 /* dir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7332A03D93D3DABB050615D /* dir.cpp */; }; + 2386B575BC3931D2AF86CB33 /* fontdlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38CEA4A3579331EF808B8363 /* fontdlgosx.mm */; }; + 3399AB7BB1333B5AAF5FAF56 /* wrapsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */; }; + 7A7439BE66AA3771B4A89049 /* regex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB46BC22F6B23909A938C561 /* regex.cpp */; }; + 0A2A4D2DC8F63FE1AC0BFAB1 /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2024D29170D3B50A4DFDE11 /* base64.cpp */; }; + A9A5973552EE30838306D15D /* tif_packbits.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CE73979D0933A43830307E4 /* tif_packbits.c */; }; + 27B5431DC79733CD8D403E8A /* pcre2_context.c in Sources */ = {isa = PBXBuildFile; fileRef = 3026D20A03E53F1DB40FB35A /* pcre2_context.c */; }; + 2D60F289103837EA8925E3F2 /* dcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1EE17722EA937E88A7F0C01 /* dcbase.cpp */; }; + D542C7819D593112AE5F7C3E /* combocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */; }; + 15048519756B33959B15B161 /* floatpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A881F49ADCF33C299B041584 /* floatpane.cpp */; }; + 1710A4BB0E6339558A187F8E /* xmlres.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 087B66573CD33DA99DA82B1C /* xmlres.cpp */; }; + E0FAB345D2933D42B62917A3 /* bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36296C259D023EAAA240FC79 /* bannerwindow.cpp */; }; + 4D0BA8B9F72C3C31BC170CE2 /* progdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */; }; + AC6AC589EFB233C7B65A3226 /* overlaycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 303ACF199BE431BD891C9301 /* overlaycmn.cpp */; }; + 2E4747E0736B30569ACD5422 /* textbuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 701B84EE7C043B539FF5195A /* textbuf.cpp */; }; + 8AB7191F7CB838FC8337C48D /* xh_statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FADE850169F7347F83FE1499 /* xh_statbar.cpp */; }; + 697FC496816F33568E1FB5A6 /* LexTCMD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1CABAEA3B48333CB88B40F08 /* LexTCMD.cxx */; }; + 5F6B4F226B473AACB7AC8DF6 /* xh_slidr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */; }; + FE9A662A1F9B34D099C45C1E /* xh_cald.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 093B5233861B3F9B8C85762B /* xh_cald.cpp */; }; + 0C7E2D5C22A232368F862A61 /* longlong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D7AF345E563587941BD868 /* longlong.cpp */; }; + 444D3B969B4336E8AD5CCFBF /* LexStata.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B61D36546E97371FAC5D4565 /* LexStata.cxx */; }; + 33ED014A7FF7398794E6E4D1 /* xh_split.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */; }; E4B826CE70283D999CB591F4 /* listbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B99CA41708513A599AE275A2 /* listbox_osx.cpp */; }; - D6C3421AD2A537AAA2F0AB81 /* file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 168DB301ACC736FF96D7F581 /* file.cpp */; }; + 6944AC98F6F83E3D983DABD5 /* tif_getimage.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */; }; + DC7D78BABF823480B56528AE /* xh_propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73962222F573116BE63576C /* xh_propgrid.cpp */; }; + 6C80B6049A523836BCD20BCB /* WordList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0E7BF9256DF533EBAE2B945E /* WordList.cxx */; }; + 23A7AF68A03E380785EE7C26 /* object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1731D6708BFE3DE7B101CE74 /* object.cpp */; }; + 98F52D5224B438DFA8887E08 /* timectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741578B590AF3F2CABE615EB /* timectrlg.cpp */; }; + 5A459FC1180130C5B705AEDC /* xh_ribbon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */; }; + 523FB2A8435A3324A8E1B371 /* PerLine.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9389DAF8B91030B7AAB029FF /* PerLine.cxx */; }; + 14EF556997B0350F931EBE8E /* jdinput.c in Sources */ = {isa = PBXBuildFile; fileRef = CCF7564A2B733F759AA8496B /* jdinput.c */; }; + 0EB6AB38A68D3845AC384A25 /* xh_text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */; }; + 4279D39CAAF834F6A5B99197 /* persist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D9626646773CED82449D5D /* persist.cpp */; }; + F7D10B6E0CBA32EFAF79C77D /* xh_dirpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */; }; + 84997126352137E798CD258B /* spinctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59572A234F0636D78BFD9F6B /* spinctlg.cpp */; }; + D772334837693C9D88069D98 /* tif_webp.c in Sources */ = {isa = PBXBuildFile; fileRef = 3716DA7B0C79360CBA26A71E /* tif_webp.c */; }; + 10B5C2A72C713A678458CD9E /* pcre2_ord2utf.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */; }; + DB244DC0A09C379AAA63C0A4 /* bmpbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */; }; + 014AF0BAB1783A5D9D75A7ED /* zstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9B5BC858CCF3477895D2786 /* zstream.cpp */; }; + 2D60F289103837EA8925E3F3 /* dcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1EE17722EA937E88A7F0C01 /* dcbase.cpp */; }; + ED8D23D79FF33ED380FE09EC /* scrlwing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */; }; + 36B0B923B836358D9DB0AE12 /* xh_panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */; }; + DB3C3AA956A03FB492480267 /* treectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */; }; + 7C52E7CC12463941B0E4D403 /* statbmpcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */; }; + 3D22FC202D903007AEE3D166 /* fdiounix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */; }; + 11818B68C5263EB68D708846 /* jdtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 4549845C0751356A907C23E0 /* jdtrans.c */; }; + FE5285579C7F39C48FC66B11 /* hash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 888BD97139C936679691FF34 /* hash.cpp */; }; + 5C5D0983160A36189A770743 /* webviewarchivehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */; }; + 39D6435B10073B85A499AFD9 /* dcbufcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBC5A5797B0D369291A76D6E /* dcbufcmn.cpp */; }; + BFD3BFBDC8DA3B1EAD141F98 /* LexErlang.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A1276C0E5D48337489DEE8DF /* LexErlang.cxx */; }; + 80665EEAE8613DF8A93A7986 /* utilscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4188821BBA833CCAA678B234 /* utilscmn.cpp */; }; + 72AD4417FF7C3094BB1FF62D /* xh_grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93B77251C0E0382D9A8E113D /* xh_grid.cpp */; }; + E7F35B834A163C67B65176C7 /* tif_dirwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */; }; + 2B4507BC09563DB5B0F16598 /* tooltip.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31EFBD7D10003A5187348B35 /* tooltip.mm */; }; + 758629DA468A3EF7B1C15242 /* gifdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */; }; + 8FC1C07FEE793897A1E96D25 /* statbmpg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA2119A7C67D37B290C17989 /* statbmpg.cpp */; }; + 6F5A0D3C7763334396A3783D /* LexCmake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */; }; + BF1760458996391E8EB4294B /* ctrlsub.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */; }; + B1E30CF6CFA932F5A3DBA951 /* docview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB634FD597793A74B3B3AA7F /* docview.cpp */; }; + C987310872D1396BAF716E5B /* webrequest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA9E372A64B3B808A64B178 /* webrequest.cpp */; }; + 45D88A74B3EE3837B9F79595 /* LexFlagship.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */; }; + 070797A894A03196B7BEC663 /* xh_bookctrlbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */; }; + 3C394FBD47B6310C80577E3D /* LexMMIXAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */; }; + 4D9368BD07F131C493232E2D /* LexIndent.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41AE72D4E8FF307F86A02F5F /* LexIndent.cxx */; }; + 7C5552FA058034238F485901 /* dbgrptg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 182C8AD4F822375495795B43 /* dbgrptg.cpp */; }; + 98AD7D0478BA36249B03C624 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B9586328A1F3C4BA0390AA5 /* time.cpp */; }; + BAA75384DA82370298672333 /* helpctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E433D1700631A8907B8227 /* helpctrl.cpp */; }; + 5F2C2A46781739D897CF293E /* xh_chckl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */; }; + 26649553E4763EE6BA268B7D /* xh_gdctl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */; }; + 1A70DDEDF9E13FF4BDA390EA /* bmpbndl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */; }; + 060E095718B03EF98C75479A /* treelist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5190E3E110443FD29F2474FC /* treelist.cpp */; }; + D948CC99521633338B24E2F6 /* LexHollywood.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */; }; + F5DF7AF0FA9E371BB71EF79A /* xh_listbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */; }; + 9241AAE354C53190BF3D5BA5 /* radiobut.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99E5B6DD00273D978C241BCA /* radiobut.mm */; }; + 87C67583D36C3465ACD64104 /* vlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA90128E29A03CCCA30F4D35 /* vlbox.cpp */; }; + 6C46AF0370793AA0B74A5A4B /* tabmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */; }; + 7B642B17F5D23F4F8ED38BB6 /* graphcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BB59DD194923D6399087A75 /* graphcmn.cpp */; }; + 17F0494F87533196904F5314 /* xh_toolbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */; }; + A965348C7FA73CEC90C8FA26 /* filedlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */; }; + 5ED54DFAE28533108C08DF2A /* pcre2_extuni.c in Sources */ = {isa = PBXBuildFile; fileRef = F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */; }; + B6728BCD1A0731299924C8C5 /* pcre2_substring.c in Sources */ = {isa = PBXBuildFile; fileRef = 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */; }; + BFD4B8871B3934048B63141B /* languageinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67D76B026121359F9B22F8B0 /* languageinfo.cpp */; }; + 0654BCC3F0763C50A7949505 /* LexAPDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */; }; + 3DE2CD678CEB39C2B1E09ACC /* power.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60DFD5962DE3379F801AF78F /* power.mm */; }; + FF7DB2884F6E3C5DB4BDF61E /* fswatcher_kqueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */; }; + AE660214E0CB375FBA508A37 /* uilocale.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1B794996B953D00AC7BC2AE /* uilocale.mm */; }; + 44C6F11C7D1C399F99CF6BD5 /* xh_auitoolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */; }; + E0E40333B61C33B58787078F /* LexMarkdown.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */; }; + CA5BD8ABDBA13641BBE7CD68 /* jccoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = E89AC104BF4F33A083F8B382 /* jccoefct.c */; }; + 86B0D280A43C308CAC14BE24 /* CaseFolder.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F52DCBC0442233738B39138E /* CaseFolder.cxx */; }; + D070C3BE95483FE38BABA1BF /* region.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00DA3D3EEF5E305CA73A1871 /* region.cpp */; }; + 9836B3D336963795928FE5A3 /* m_dflist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52FE1599218730CC99A3F801 /* m_dflist.cpp */; }; + C1CDD035AA393ACC9E202C03 /* minifram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693F731B7D1730A79485F9EC /* minifram.cpp */; }; + F6A1AC5CF84E32C19F91A614 /* statbrma.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1F2E9C9052D3E53BBD17DE3 /* statbrma.cpp */; }; + 4CB3626391CE34D4B1F71AA1 /* jdatasrc.c in Sources */ = {isa = PBXBuildFile; fileRef = DECAF5DD80383A2CA76EB383 /* jdatasrc.c */; }; + 0FBF7C9EDFB53D8DA0991B56 /* xh_notbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87662D69F0432FC96701280 /* xh_notbk.cpp */; }; + 064908348009398C8EA8497C /* fontpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */; }; + EAE02BA934B43EEE92C496C9 /* dcpsg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEA0945B20913754A54D0FD9 /* dcpsg.cpp */; }; + 2E4747E0736B30569ACD5423 /* textbuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 701B84EE7C043B539FF5195A /* textbuf.cpp */; }; + BF3D600A93403C589B65C5BF /* xh_stlin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F555177554E398286DBC6FB /* xh_stlin.cpp */; }; + B5470121BB4B35DE9C4836DB /* jdcoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = F1A6F3936A0D31CBB58082BA /* jdcoefct.c */; }; + 7C52E7CC12463941B0E4D404 /* statbmpcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */; }; + 551BF168445E3D7BB54D0176 /* LexPS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = EDB48813110636DBA045BF3A /* LexPS.cxx */; }; + 6C3A459236F736B8A14A13AC /* dialog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83B878A16ABC396E8C03A15E /* dialog.mm */; }; + 14C024EB327435A2A571DA2E /* LexKix.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B303230368143F37B2409DE6 /* LexKix.cxx */; }; 14EF556997B0350F931EBE8F /* jdinput.c in Sources */ = {isa = PBXBuildFile; fileRef = CCF7564A2B733F759AA8496B /* jdinput.c */; }; - 4156FDB73D0A397A870E4304 /* overlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD8031E28A3C9CB7C45784 /* overlay.mm */; }; - AD07124BBA613B47829F0693 /* sockosx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4969528429903F15882F5391 /* sockosx.cpp */; }; - A5775D87FD713CBB930A783E /* bookctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */; }; - F5806029B1BA3924A8FDDBC2 /* busyinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F94CF171F4532B89FECF475 /* busyinfo.cpp */; }; - 3ACCC2EB8E973C11835EB598 /* bmpbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */; }; - B97C178B47173E6AB0CE577C /* CaseConvert.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 274A156457C63EC5801029C2 /* CaseConvert.cxx */; }; - 3E6AA08E72A030D39D867D4C /* ScintillaWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */; }; - 65E8A5F333D7336C816F0D0D /* variant.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31F4B9B03D52339B8F82C114 /* variant.cpp */; }; - 3D424F4B33653A00AE9B623B /* m_tables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 082CA018FB883999839C1DCE /* m_tables.cpp */; }; - D13596A4E3CD31DE810061A2 /* imagjpeg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6876262846EA3569B36D92E9 /* imagjpeg.cpp */; }; - 26BB10834DA1388881BDD1EC /* propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98B72B3A0A73044B85AED60 /* propgrid.cpp */; }; - 23965E313EDC3BBE9B2FA1C7 /* imagpng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24396D584D053948A3FF0DCD /* imagpng.cpp */; }; - 7181709A030D3749AB355B76 /* xh_radbx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F43AF44465B335479752116D /* xh_radbx.cpp */; }; - 6167245C417A32179EC37D2E /* textfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0903EE9B3793303285FF96E3 /* textfile.cpp */; }; - 97BAFEAD53E238B6881178DD /* evtloopcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 640783FBACA43206B782C77B /* evtloopcmn.cpp */; }; - 4D9368BD07F131C493232E2F /* LexIndent.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41AE72D4E8FF307F86A02F5F /* LexIndent.cxx */; }; - 6C3A459236F736B8A14A13AD /* dialog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83B878A16ABC396E8C03A15E /* dialog.mm */; }; - 2E8440A2BDD53BE7B01547C3 /* uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4E1DC1869C6327C80D2F5F4 /* uri.cpp */; }; - 283C3ABE42433244983C27C1 /* stattext_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CF5C09D9A1230EEB42713E1 /* stattext_osx.cpp */; }; - 20D05D14BFAD3F969666D03C /* timectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA0840034F1386F94D17639 /* timectrl_osx.cpp */; }; - 187F921A95DA3594B0AD980F /* gridsel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26381308E32A3A179E7A9B40 /* gridsel.cpp */; }; - EE6474BBB4AF34D093E2451E /* MarginView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F951601E73683F27AD8CA99D /* MarginView.cxx */; }; - 47C31B7492F33C3EBE53262C /* settings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6831AA74AB5B38D5AA6946D7 /* settings.mm */; }; - 45FE206BBAD13DDCA1EA41D0 /* treebase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BA6ADD758693BD180D3275B /* treebase.cpp */; }; - D759231BC07232C0A52515A8 /* LexAccessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */; }; - 5C44446AB150378696CD6B3E /* bmpcboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */; }; - F24F637D59F637CA9A7E23CB /* xh_filectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */; }; - 4CF9BA40653C3153805D88AC /* arcfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C513377E9E303F778BA9D7ED /* arcfind.cpp */; }; - CCFD3144A22C3A87B67D88AC /* LexRebol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0D9828C9BD9633C1A8F4E0CD /* LexRebol.cxx */; }; - 86003C8EB906304F9025F78A /* jcinit.c in Sources */ = {isa = PBXBuildFile; fileRef = AA6C6739C3BD3EFA9CF71102 /* jcinit.c */; }; - 758629DA468A3EF7B1C15243 /* gifdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */; }; - DAAFBED07FF8365B96D20B99 /* unichar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */; }; - 56E1ED31F7CE38978F4A7CA1 /* LexProps.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DE0102314288305D830B9EFE /* LexProps.cxx */; }; - 51437DC2AD7B3BEB9A53CE1C /* cmdline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE1C531185131A89EFF7FAF /* cmdline.cpp */; }; - 9110ACFC3CFB3C7994E907B2 /* imagiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A745D1821A32D591D76650 /* imagiff.cpp */; }; - 0FBF7C9EDFB53D8DA0991B57 /* xh_notbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87662D69F0432FC96701280 /* xh_notbk.cpp */; }; - DC6B669C9A78398F914AEE55 /* fontutil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FF661188B563D27A11F5716 /* fontutil.cpp */; }; - 9FBC642677C63D01AA2511BE /* evtloop_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */; }; - AE5286C71D1130EAA368A1C6 /* radiobtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 724927B0045F3CC0884878BB /* radiobtncmn.cpp */; }; - 14EF556997B0350F931EBE90 /* jdinput.c in Sources */ = {isa = PBXBuildFile; fileRef = CCF7564A2B733F759AA8496B /* jdinput.c */; }; - A191AA29BDF83BB090A9DF51 /* LexCharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */; }; - 10743B74A58231639C6BF612 /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = 400275BE019D3E5BA47988BE /* inffast.c */; }; - 438EAEA4B30C325C827F6199 /* xh_fontpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */; }; - DC928C38CA8331F18FF00BCC /* tif_lzma.c in Sources */ = {isa = PBXBuildFile; fileRef = 3088384F07C63A5DB3581656 /* tif_lzma.c */; }; - 3C0EB1DDA5243E31B2D92CE3 /* jquant2.c in Sources */ = {isa = PBXBuildFile; fileRef = 02D9332D5C5632E981936E29 /* jquant2.c */; }; - 42260A6F1853361083803B0E /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CB467F9898C3952A68D988B /* zutil.c */; }; - 49260580A7F23B569A827D40 /* filefn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58421C141C9E31C6A7A3C183 /* filefn.cpp */; }; - 980ED1DA2F96361985952254 /* webrequest_urlsession.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */; }; - B6BC23F4F3E43315BD4C7CF9 /* mediactrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */; }; - B198DA8239E9358A9D56B989 /* menu_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66C21CA37BF63893887FD91B /* menu_osx.cpp */; }; - 42AC484FDD7D3E948CEA801C /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = B5370A676AAC32419D7FDD87 /* inflate.c */; }; - B559E894684A38238CAAA116 /* dirctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E110907DDC13305E88B90086 /* dirctrlcmn.cpp */; }; - 9D003890CB7035A298DB7058 /* LexLua.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5145561C78303EEE9F827962 /* LexLua.cxx */; }; - AA54EDC7C94730D1A31F05A0 /* LexCharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */; }; - 0948599C4FD53611A09B52AC /* jfdctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 93D07403FCA530D7A9FD2917 /* jfdctflt.c */; }; - 7B372FEA276438C186F7E342 /* RunStyles.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */; }; - BF2585CFA6853023975F1E78 /* iconbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */; }; - 796311E398FF313C84218825 /* uiactioncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87BF60D0D4A33E2AD2E1E25 /* uiactioncmn.cpp */; }; - 4BAFAE70A6B1313B96D86631 /* page.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59ED0C057D8F388A89DC7177 /* page.cpp */; }; - 33ED014A7FF7398794E6E4D0 /* xh_split.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */; }; - F9C5EAC42CCF3267B4100BB0 /* wakeuppipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */; }; - DEB35F871F8E3B90AD207AEF /* printps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF76670146413EEFA005206A /* printps.cpp */; }; - 9D4B67A357D23B5283CA8D99 /* clrpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB8A747FB60239B9AB710264 /* clrpickercmn.cpp */; }; - BF2585CFA6853023975F1E79 /* iconbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */; }; - 4CB3626391CE34D4B1F71AA2 /* jdatasrc.c in Sources */ = {isa = PBXBuildFile; fileRef = DECAF5DD80383A2CA76EB383 /* jdatasrc.c */; }; - F4C0CEADEDC23610BF6983D8 /* artmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0665A40F3FC3F218074C63C /* artmac.cpp */; }; - FEB073547F3F3AC19D31F69A /* tif_tile.c in Sources */ = {isa = PBXBuildFile; fileRef = BD88495AF72531A28D2201D0 /* tif_tile.c */; }; - A8476B3CE46B3FD4A2832F01 /* LexNull.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */; }; - 1EA81A0E8E5A3B38B4D80339 /* srchcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF103B09F02315282EC8F44 /* srchcmn.cpp */; }; - FD3B31CE1E7832218B5D9A16 /* LexPO.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3430B6483E35C3A201BF44 /* LexPO.cxx */; }; - 3399AB7BB1333B5AAF5FAF55 /* wrapsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */; }; - 16021CFD78623B8CBD08FC20 /* LexVHDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */; }; + E8EE34F0A78C31B489B19FF0 /* LexMSSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C71BF55495034FFBE653C80 /* LexMSSQL.cxx */; }; + 95826E8528CC32D8934C36ED /* xh_frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */; }; + 427E6AF88CF73D799206E37E /* checkboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FC2F076657431458896115A /* checkboxcmn.cpp */; }; 6D073876E1753549B5EEFDDC /* tif_compress.c in Sources */ = {isa = PBXBuildFile; fileRef = CA0D5D47D62A3148BA51B31B /* tif_compress.c */; }; - B6C364CB4AE33708A862B4B5 /* srchctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D46A36564C78312CAC538E93 /* srchctlg.cpp */; }; - B791BD05072B3B909A7093C4 /* dcsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */; }; - 3B8A54D5E5A53607A6F7979B /* arrstr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A57CF60203F53459A03951A9 /* arrstr.cpp */; }; - CE32C5250F2834D4B81BE899 /* appprogress.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD91A34971FB3D0299B894A5 /* appprogress.mm */; }; - 5E80C103F0853788A2B43E5F /* LexX12.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 17A8A93EF3C03546BE19F43B /* LexX12.cxx */; }; - 700BBDECBE313E108BA99ABF /* toplvcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 861438BD294335D4B859EA71 /* toplvcmn.cpp */; }; - 371809DA4AD1382F8B532879 /* fontenum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36E1DBA275AD325DB759C180 /* fontenum.cpp */; }; - EC43AFB3670A3D459D9B388E /* LexMPT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FE3B47058A723243A285594D /* LexMPT.cxx */; }; - 743BB23211B336A6A0F26E59 /* jcapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = F83172EE2DAE352FB969D4F2 /* jcapistd.c */; }; + 65E8A5F333D7336C816F0D0E /* variant.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31F4B9B03D52339B8F82C114 /* variant.cpp */; }; + 31DD19A942283FA8810B6382 /* numformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BD8DAB407D231EFA5B2CAE5 /* numformatter.cpp */; }; + 4301AFBA0A193A7EB392EB93 /* LexMake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3D5F00FC91343C35AF99F708 /* LexMake.cxx */; }; + C5419BC04D6234B5A8307B82 /* xti.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25C86D3D4839343BA1D8BDEE /* xti.cpp */; }; + 5ED54DFAE28533108C08DF2B /* pcre2_extuni.c in Sources */ = {isa = PBXBuildFile; fileRef = F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */; }; AD4A533C4E1633598A6D5C71 /* textentrycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F63BF9430CE371DA04AC900 /* textentrycmn.cpp */; }; - D9DCBE799DB634C2A73FD6BF /* statboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73954EB5397301F87881646 /* statboxcmn.cpp */; }; - 0813551C951A3AD1A5EF01B4 /* imagbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84098A475939BB9EE87E70 /* imagbmp.cpp */; }; - 27759C2FBB0E35FDA847B2B6 /* LexForth.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B181F564935730E89AB00D92 /* LexForth.cxx */; }; - 570FA90F526E3F25A8E8FCF4 /* tif_read.c in Sources */ = {isa = PBXBuildFile; fileRef = 64B25B87203E3464BCDD277D /* tif_read.c */; }; - 3141FEDED0943BD6A2EF8591 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA93D41B11683E758D456531 /* log.cpp */; }; - A2769D1659AE3CA3B58C2CB0 /* wincmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */; }; - 7569F0BC3C603EB191680891 /* collpaneg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84758329F2163F00A9C005DF /* collpaneg.cpp */; }; - 59BFB8C8310E37B39AF8B0D5 /* any.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4867546E8B8D3C8683A23ED5 /* any.cpp */; }; - A0FCE3CF565C3F84B63712AD /* LexCPP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9EF09C7CC5413CC6A5E7B21B /* LexCPP.cxx */; }; - CFDBB80A4C9A3BA092273938 /* animatecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */; }; - 26E4813A97DE323E88119164 /* xh_choicbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */; }; - 24A5A71C79733E9CB913C5B9 /* LexPB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8744F2C80ECF375999195935 /* LexPB.cxx */; }; - 6C46AF0370793AA0B74A5A4B /* tabmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */; }; - 1AB50C98FF473B33A3CA4D3A /* xh_cmdlinkbn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */; }; - 2CCC30C0162131DBBE9D8027 /* dobjcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */; }; - A874AF0B203D3DC99C27469C /* LexNimrod.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */; }; - 62331487C17B32E081B8FEA9 /* LexLaTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */; }; - 91BC7802C15337CDA84C3743 /* statline_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */; }; - 6A081BF19747385CB4C18781 /* radiobut_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */; }; - 774A89998E09308CBFB03EE2 /* imagxpm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C85865D28DC31649440A921 /* imagxpm.cpp */; }; - C67EAE20657E36839BF86690 /* richtooltipg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */; }; - 3ED6F4B64C283232A79423D1 /* dircmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */; }; - D542C7819D593112AE5F7C3D /* combocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */; }; - BFD4B8871B3934048B63141B /* languageinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67D76B026121359F9B22F8B0 /* languageinfo.cpp */; }; - 1FB1622D59593932B25C55BB /* LexPowerShell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */; }; - 1EE845DDFDDE36CA8A218206 /* tif_close.c in Sources */ = {isa = PBXBuildFile; fileRef = F82278F9AF0432529891E6D7 /* tif_close.c */; }; - D9496139621533328AE727B8 /* pngget.c in Sources */ = {isa = PBXBuildFile; fileRef = 91300EB871CC39ECBC430D48 /* pngget.c */; }; - 1D726139C977341A97D0C932 /* datetimefmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 864438709B363773B8C3382D /* datetimefmt.cpp */; }; - DEC5F4B34BC037169D3E5F2C /* mediactrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */; }; - 5F2C2A46781739D897CF293E /* xh_chckl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */; }; - 0742292656623EC481B3436B /* paper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87D973CA8D673267BD0844D3 /* paper.cpp */; }; - 0FA6E1E47F123FF4A902E4D4 /* xh_odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0080254545B9383ABDF2045C /* xh_odcombo.cpp */; }; - 6C46AF0370793AA0B74A5A4C /* tabmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */; }; - 5D3AD309AF39385EBF7D9DF9 /* jaricom.c in Sources */ = {isa = PBXBuildFile; fileRef = 573D0D15EE9E3E629D61EA65 /* jaricom.c */; }; - 9455B49669853E71BD4FD966 /* richtextformatdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */; }; - C987310872D1396BAF716E5C /* webrequest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA9E372A64B3B808A64B178 /* webrequest.cpp */; }; - 9881E3FB23ED3283B6CC71A4 /* filepickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */; }; - 894D43C8F224394FB3171F27 /* jcapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */; }; - B6C364CB4AE33708A862B4B6 /* srchctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D46A36564C78312CAC538E93 /* srchctlg.cpp */; }; - 8C6E2BD9C31A3AE18AD17D46 /* pcre2_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */; }; - DF3B927516FB365E865A9780 /* LexerModule.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */; }; - C34B8675439F39B4845FFC51 /* xh_listb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */; }; - E82CB89681FF3747B6A94429 /* anybutton_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */; }; - A8476B3CE46B3FD4A2832F02 /* LexNull.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */; }; - 5303FA25D0773FAEB963D8E3 /* scrolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = CC2E24773D853A77B9FEFA4C /* scrolbar.mm */; }; - FB8B6E4789A3311A98C5B0A9 /* clrpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B5A9DF3206B3954A4B38BFD /* clrpickerg.cpp */; }; - 0C485288EA86379D9FD66537 /* cshelp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67DCEEB6861731319C30817F /* cshelp.cpp */; }; - AE660214E0CB375FBA508A38 /* uilocale.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1B794996B953D00AC7BC2AE /* uilocale.mm */; }; - 60296753A32B39EB8BD0CB44 /* pcre2_study.c in Sources */ = {isa = PBXBuildFile; fileRef = 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */; }; - C259D01CC62533D296EF023C /* scrolbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */; }; - 0095084719983B878378CA29 /* pngwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 69A6CAF721E53E83B4820DE6 /* pngwrite.c */; }; - DC7D78BABF823480B56528AC /* xh_propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73962222F573116BE63576C /* xh_propgrid.cpp */; }; - DEB35F871F8E3B90AD207AF0 /* printps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF76670146413EEFA005206A /* printps.cpp */; }; - 912C69ADB1673ACEB0E6CF09 /* tif_strip.c in Sources */ = {isa = PBXBuildFile; fileRef = B83EDE2D1731311ABDE62F9F /* tif_strip.c */; }; - C2B07E2ECDDC3833BDC9B28D /* arcall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75D0C937F2A03ADA8581A2BB /* arcall.cpp */; }; - CA5BD8ABDBA13641BBE7CD66 /* jccoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = E89AC104BF4F33A083F8B382 /* jccoefct.c */; }; - B30D10F6257631B0A1926F8A /* statbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 926BDF9C386C3A9A8C24D453 /* statbox.mm */; }; - DC5F82733F733D98B39DE74F /* LexDMIS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 910D00F1C9143C6D85C24E7C /* LexDMIS.cxx */; }; - 49FE0228D8FD3F7AB64A4433 /* bmpbuttn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */; }; - EDCA35F1555F3509895CCA6B /* textctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */; }; - E17048DEEF1138318314F1D2 /* pcre2_valid_utf.c in Sources */ = {isa = PBXBuildFile; fileRef = FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */; }; - 3813146434693234965C4F33 /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D6B0D32537D35069C7E053F /* inftrees.c */; }; - 25C5C1713C0B39AC8EB6A38E /* taskbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A4D36DE66EC3EB09E883D6B /* taskbar.mm */; }; - B5C7FD8C27F43F3289A77FCB /* utilsunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */; }; - 4657479AF35533AEB7876678 /* helpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB30516233A39BE809405AA /* helpbase.cpp */; }; - 7C9EAFF4A0223EE597E0E3A0 /* xh_srchctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */; }; - C2E37E798F743A4199C86590 /* fddlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */; }; - 59F995B6E6EE3CA5A4487846 /* glcanvas.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35007225BB683683AA7C5E48 /* glcanvas.mm */; }; - 87092C0C817D343DAB77E23F /* xh_scwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */; }; - 03BF1610E2FC3BD5ACB754F1 /* bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */; }; + 0A406D2D1ADA343891E3664D /* powercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */; }; + 682403FBBD4E3D5E88159501 /* CellBuffer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */; }; + E0E4885BF4AF34B48EB08B91 /* volume.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6506A965F677374491359FB8 /* volume.mm */; }; + 8D6B0D48EA843E48AB0FE43E /* LexErrorList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2851EAAEE9B73FE8981912C9 /* LexErrorList.cxx */; }; + 8620088DDD233B139B250DD4 /* filter_sse2_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */; }; + 815AE3FED68330F4933AA16F /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = C94DC3402FAE3C4FA776DEEA /* window.mm */; }; + 311840186794346AAAA42093 /* jutils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */; }; + D98FABF75BCE3AF18C91B42F /* LexHex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */; }; + 9110ACFC3CFB3C7994E907B1 /* imagiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A745D1821A32D591D76650 /* imagiff.cpp */; }; + BAA75384DA82370298672334 /* helpctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E433D1700631A8907B8227 /* helpctrl.cpp */; }; 014AF0BAB1783A5D9D75A7EE /* zstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9B5BC858CCF3477895D2786 /* zstream.cpp */; }; - 97BAFEAD53E238B6881178DE /* evtloopcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 640783FBACA43206B782C77B /* evtloopcmn.cpp */; }; - 8B9C9FCB954F3596A4CED9A7 /* jdapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 86884BC843F6337EABF744BB /* jdapimin.c */; }; - 05814571E7A83F5DBFB6E4C6 /* msgout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E968913A9A593B258BD8EACB /* msgout.cpp */; }; - 7F62946D497A32CE857F65CA /* pcre2_maketables.c in Sources */ = {isa = PBXBuildFile; fileRef = D016F584D14C31E192DB3179 /* pcre2_maketables.c */; }; - 2CAD4DF9505F36E4A2EAD53F /* helpdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C466F32CCBD13DBC87285B3D /* helpdata.cpp */; }; - 97F60B2A9CE93BC8949A8CCE /* LexCrontab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */; }; - 2C53221A318E37529E6460ED /* tif_fax3sm.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */; }; - B0E94A59C83637C09FAAE71E /* app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 757B31FCCA1F381C95B30DF8 /* app.cpp */; }; - 2CCC30C0162131DBBE9D8028 /* dobjcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */; }; - 1B06622C8D8731FC832199E4 /* init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB82939EDC593F9CA95C3098 /* init.cpp */; }; - EDD92822EBD93E86AE5A2ED1 /* slidercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8072CA67D19346ABF4D465F /* slidercmn.cpp */; }; - CA5BD8ABDBA13641BBE7CD67 /* jccoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = E89AC104BF4F33A083F8B382 /* jccoefct.c */; }; - 63F2517EC6B2334CA825A6FB /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEB08798C70E33DDB360E563 /* layout.cpp */; }; - 5EE94793DFCB3BA281A48650 /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = FDB0E2D0966C3E408C4A2D3D /* infback.c */; }; - BB6FE851028C3DE7A070C215 /* convauto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20B922D61CDB3CCEB59A5194 /* convauto.cpp */; }; - D13AE659C3AC37B68D39B2CB /* LexLout.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B14D6E7E15FD3C869E341198 /* LexLout.cxx */; }; - CFF73578F04D357E83D1D830 /* lboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */; }; - 3399AB7BB1333B5AAF5FAF56 /* wrapsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */; }; - 3B7E035ECF3D3FFB9827AC1E /* xh_dlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06B4A895955B32258DCD62BF /* xh_dlg.cpp */; }; - 31380AD4F5BD38A6B9212FE2 /* LexR.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7255468B6D5F3D8697994A53 /* LexR.cxx */; }; - AC91349D7F0E37739B1F5166 /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEF6B3FB66243812969E5BD1 /* palette.cpp */; }; - EEB0B28903693C7E9D071931 /* glcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E08A51FA8D8A361681B07295 /* glcmn.cpp */; }; - 5C3B0ED2EA973DFDBFBCC693 /* richtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */; }; - 13A71672A59233D3A9B2D5EA /* CharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B883F991159731DCB2717A21 /* CharacterSet.cxx */; }; - 8B38C6C416BA3A51B37F60C5 /* statlinecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */; }; - 4AEC67BF65B039D99F421667 /* statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C87B071E3593A889704F512 /* statbar.cpp */; }; - 83616D33080E3F0F9FA5FBB4 /* xh_html.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 889FFA9573A835F280A21CB4 /* xh_html.cpp */; }; - CEE0D7A7D5D8323B9957A781 /* notifmsgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */; }; - 8EE5A2467401365C8217AF30 /* preferences.mm in Sources */ = {isa = PBXBuildFile; fileRef = 835C22B71A0F3C469310E1E0 /* preferences.mm */; }; - 5D3AD309AF39385EBF7D9DFA /* jaricom.c in Sources */ = {isa = PBXBuildFile; fileRef = 573D0D15EE9E3E629D61EA65 /* jaricom.c */; }; - 96927C5A21FD3ACF936CDF6D /* renderg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49CABA38E78D34DFA260AA06 /* renderg.cpp */; }; - 793F542F20AB31F6AF736797 /* tif_open.c in Sources */ = {isa = PBXBuildFile; fileRef = 1731A6096BFC3A468AB4755A /* tif_open.c */; }; - A3A898DA3114311EB7F02228 /* sckstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D784A32C094730FEAA391A9B /* sckstrm.cpp */; }; - A3321FE2A87D3BD69E0BB00B /* notebook_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5248A45AB113341EAC361910 /* notebook_osx.cpp */; }; - 85F9828B80B03178A274BD18 /* selstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ED2105A5A033E3384EBC4ED /* selstore.cpp */; }; - AD07124BBA613B47829F0694 /* sockosx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4969528429903F15882F5391 /* sockosx.cpp */; }; - C2DEE063B5E032C1BD2B5027 /* xmlparse.c in Sources */ = {isa = PBXBuildFile; fileRef = A92B6033D8233DB1821F193B /* xmlparse.c */; }; - 1B69C40CD7493FED9A272836 /* notifmsg.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9446ADCCDCD32E6BCF95599 /* notifmsg.mm */; }; + 796311E398FF313C84218825 /* uiactioncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87BF60D0D4A33E2AD2E1E25 /* uiactioncmn.cpp */; }; + 4D0BA8B9F72C3C31BC170CE3 /* progdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */; }; + B6728BCD1A0731299924C8C6 /* pcre2_substring.c in Sources */ = {isa = PBXBuildFile; fileRef = 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */; }; + 8B87FEC23DB834EDBFB6EA33 /* pcre2_ucd.c in Sources */ = {isa = PBXBuildFile; fileRef = 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */; }; + 4D0BA8B9F72C3C31BC170CE4 /* progdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */; }; + 0BB3BF0909A134BA93CF5621 /* xh_richtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */; }; + 324B2BAC54553D45B3C56BFF /* LexOScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */; }; + 064908348009398C8EA8497D /* fontpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */; }; + 1DBDF75500D73A3098015E80 /* cfstring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */; }; + 46395873DB1C3B7FA81DE5F8 /* LexerBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */; }; + FEF99FF6C38D3B488396B143 /* ffile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */; }; + F3AC352D6DAE3A12A5664768 /* styleparams.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */; }; + 9FA6C4275F0D3E1A884ED563 /* pcre2_auto_possess.c in Sources */ = {isa = PBXBuildFile; fileRef = C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */; }; + 87AA9C5D887B3C31A2AFB49F /* htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD5F11A3646F397BA62EB037 /* htmllbox.cpp */; }; + F85D632964383F29BC3B30B7 /* tif_next.c in Sources */ = {isa = PBXBuildFile; fileRef = DFDC805DD3063C389F93642D /* tif_next.c */; }; + 1CBF34ACA39330028A5EA9AD /* xmlreshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */; }; + BDAB44F5D017395D9D3A1F25 /* frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3019BA65DD73F30A865365F /* frame.cpp */; }; + A3A898DA3114311EB7F02228 /* sckstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D784A32C094730FEAA391A9B /* sckstrm.cpp */; }; + A1A7D793B034398B8696EF35 /* utils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 789F45D14FF23E248FCFB5FA /* utils.mm */; }; + 213CE0DD5B2335D0AD53B54A /* gzclose.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A24E9101688368296C21EBE /* gzclose.c */; }; + 32988828498D32B2B3F8A983 /* bmpsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741E9B48274638CD9DD73698 /* bmpsvg.cpp */; }; + 8F372080E11E382EA0B5ED11 /* rowheightcache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */; }; + 91EA325FCE3A3A6A8D1D21A5 /* srchctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */; }; + 91BC7802C15337CDA84C3743 /* statline_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */; }; + 99F7D7BFBB543A04AB728377 /* m_hline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */; }; + 67EBCE5FA5FF36349ADF0917 /* jdapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */; }; + 5B5B8DF915D438AA9FCEB39E /* imagall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FFDFB4D208F37569AC548B0 /* imagall.cpp */; }; + BCDAE378D03E37F5994FB9C5 /* XPM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C25521AF59B9324EB2809C73 /* XPM.cxx */; }; + 980ED1DA2F96361985952254 /* webrequest_urlsession.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */; }; + 652CFDD9A1C1366E99B5D6BD /* socketiohandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */; }; + BBAABF3C693E37D3B0FF2503 /* colrdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */; }; C5E5AB869065307F83E27DD2 /* htmlpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */; }; - EBF2D44758003221A22202BD /* colourcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D61240ABD70328BA5789663 /* colourcmn.cpp */; }; - 0D79F1B4EF44393AA3242141 /* LexPLM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */; }; - B0FD1B96EAE635AFBFCF2C94 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C045 /* secretstore.cpp */; }; - AC07BA4EA5403443914DFDB3 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7013DB195D023C31ADE68546 /* crc32.c */; }; - E6D18B2EDE353F67883085A0 /* odcombocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F23140777B733679D2FAAFC /* odcombocmn.cpp */; }; - 46F341B46F80376B962759F7 /* animateg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 580AFC66F3003582B43043B1 /* animateg.cpp */; }; - 052331773CF6362C9A6CF38F /* utils_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EED7C691150139EFA35E8EBD /* utils_osx.cpp */; }; - 33BA7D6B9DC3378B820DEB89 /* notebook.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E8036758CEC3296B555E4DF /* notebook.mm */; }; - 9A83D365AD1F37FA9C7030C3 /* matrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF330EAACFA53877BE289896 /* matrix.cpp */; }; - 39CC380F801F3EE984523276 /* auibar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A4437E9697300390FDE14E /* auibar.cpp */; }; - BFA6983551B4310DA7C8A405 /* jcdctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DBF3053414F3C448312165A /* jcdctmgr.c */; }; - 8093A858CA9E3E9EA2D21860 /* jdarith.c in Sources */ = {isa = PBXBuildFile; fileRef = FA9DD56E399533A5BE7AAD16 /* jdarith.c */; }; - 1142E2D85FD93E9AB5D8A55B /* pcre2_script_run.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F4CDF9048EC36788619769D /* pcre2_script_run.c */; }; - 097BC5E023C33C1DA05606B1 /* Selection.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2AF7739C389536F79DAA31E5 /* Selection.cxx */; }; - FE9A662A1F9B34D099C45C1E /* xh_cald.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 093B5233861B3F9B8C85762B /* xh_cald.cpp */; }; - 729091CC33C73C989B4E0719 /* timerimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0401B7302088357BB6B7F16F /* timerimpl.cpp */; }; - 97F60B2A9CE93BC8949A8CCF /* LexCrontab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */; }; - 32988828498D32B2B3F8A984 /* bmpsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741E9B48274638CD9DD73698 /* bmpsvg.cpp */; }; - 9B6A35E706543CDAA6A5014A /* LexGui4Cli.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */; }; - 346D274E17673A01B0177D5C /* sockunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7661E9E09A397790ED9545 /* sockunix.cpp */; }; - D070C3BE95483FE38BABA1BF /* region.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00DA3D3EEF5E305CA73A1871 /* region.cpp */; }; - 6CA1BAEBBDB4336E9E201F96 /* protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */; }; - 59BFB8C8310E37B39AF8B0D6 /* any.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4867546E8B8D3C8683A23ED5 /* any.cpp */; }; - 056E30EA43753A7CB1AF8C9F /* strvararg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EEAD9C3E180305D8899441E /* strvararg.cpp */; }; - D00AF125FCB63A7A8F9B87E0 /* taskbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4692909E4B823F71822B13F8 /* taskbarcmn.cpp */; }; - 95826E8528CC32D8934C36EE /* xh_frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */; }; - DA0FA502405A37B2A5698D22 /* config.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FE0B33481283D3493613B0F /* config.cpp */; }; - 63F0C8EEDF4B3641878A8B4E /* dlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9051902662BE38B3912B34EA /* dlgcmn.cpp */; }; - D9EE059D3C3C3C13AE4419F3 /* stattextcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54BD19211DBD388AA0DEC7A1 /* stattextcmn.cpp */; }; - 71CCB06E790C3C54BFF1199F /* LexSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */; }; - 1710A4BB0E6339558A187F8E /* xmlres.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 087B66573CD33DA99DA82B1C /* xmlres.cpp */; }; - 4AEC67BF65B039D99F421668 /* statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C87B071E3593A889704F512 /* statbar.cpp */; }; - 4040AE89BF9F34668091064B /* dragimgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A67053D16D63C588E555C84 /* dragimgg.cpp */; }; - 70F898F8B129380BBECAC55A /* richtexthtml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */; }; - E515EAE375AE390688CBF8D4 /* pngtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B32A13D5B3336098B1B9765 /* pngtrans.c */; }; - 96B507455762391688B5E502 /* xh_listc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */; }; - 22C76BF2C3E331CD87657E6F /* LexNsis.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1BC0322549563787A21CE8F1 /* LexNsis.cxx */; }; - 7A79D9AC608E3B8287229175 /* tif_warning.c in Sources */ = {isa = PBXBuildFile; fileRef = C83C97A1FCC5345896C9D7DE /* tif_warning.c */; }; - 6292B023DBF4337A91404AD1 /* preferencescmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A046179831F63824A67B509B /* preferencescmn.cpp */; }; - A08165E5D38E3EF6962A7AEB /* DefaultLexer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */; }; - 2E930206397C3EDCBD8206FE /* gridctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */; }; + 96927C5A21FD3ACF936CDF6D /* renderg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49CABA38E78D34DFA260AA06 /* renderg.cpp */; }; + 779D3480141B3683A6D132BF /* tif_lzw.c in Sources */ = {isa = PBXBuildFile; fileRef = 346C68F0CCD23823B78267F0 /* tif_lzw.c */; }; + 319FB8E64CE731D6A58AD301 /* clntdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C904B4BA8273355869812B2 /* clntdata.cpp */; }; + 1B69C40CD7493FED9A272837 /* notifmsg.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9446ADCCDCD32E6BCF95599 /* notifmsg.mm */; }; + 2B13BFC894C63373B7ACFA3F /* xh_hyperlink.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */; }; + 6E2C2E8AA1713ADE9C33837B /* tif_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 726C0457DF1232C793918DC1 /* tif_zip.c */; }; + 15735ED6556130F6A14F0BCE /* ScintillaBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */; }; + 7569F0BC3C603EB191680891 /* collpaneg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84758329F2163F00A9C005DF /* collpaneg.cpp */; }; + 64F11C549E3035DF85691060 /* tif_ojpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */; }; + F501AB044AAC39DCB8C0B3E2 /* editors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C7F740A55E39FD890B3C7F /* editors.cpp */; }; + 07412469921A3E488A2F9BA7 /* checklst_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */; }; + 0164A65CDB7A334A8E9AA4C0 /* dynload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */; }; + 427E6AF88CF73D799206E37F /* checkboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FC2F076657431458896115A /* checkboxcmn.cpp */; }; + 4B88254FF9963833A276A64E /* snglinst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */; }; + CB46C7E531903700ADFB11C8 /* tif_jbig.c in Sources */ = {isa = PBXBuildFile; fileRef = F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */; }; + F016C51053373E658ED4C9AB /* helpext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF376BC55EA73F5FB7328142 /* helpext.cpp */; }; + 7FC3D17B3C853FE58841002E /* timercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7195E665E0F233839B967FC9 /* timercmn.cpp */; }; + BF3D600A93403C589B65C5C0 /* xh_stlin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F555177554E398286DBC6FB /* xh_stlin.cpp */; }; + D17E3053DA0D3F7EA4D0951B /* helpdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81821049E39B32C6ABCF6820 /* helpdlg.cpp */; }; + 37749AC3468836FC857BD0D5 /* checklstcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */; }; + DC5F82733F733D98B39DE74E /* LexDMIS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 910D00F1C9143C6D85C24E7C /* LexDMIS.cxx */; }; + C5419BC04D6234B5A8307B83 /* xti.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25C86D3D4839343BA1D8BDEE /* xti.cpp */; }; + 0D6596A44A8C37DE85D578F8 /* Document.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 71DB140E670738839EC42C2B /* Document.cxx */; }; + D6CF7416CA6A3CFF8FDFD49D /* nativewin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9BC8BFDE41F93504B7A51D08 /* nativewin.mm */; }; + E80BEED62EBF34F09B3F4020 /* LexMagik.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 45860601270D318D93BEE1F3 /* LexMagik.cxx */; }; + 502D7B786EAE383B9546F321 /* LexRust.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 24BD2EF635673E819B8406CB /* LexRust.cxx */; }; + F5806029B1BA3924A8FDDBC1 /* busyinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F94CF171F4532B89FECF475 /* busyinfo.cpp */; }; + DF8CE011EAC23F73BDA1C44D /* scrolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */; }; + 830A61EA04FD367C9EB6A757 /* fswatcher_fsevents.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */; }; + A5775D87FD713CBB930A783F /* bookctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */; }; + 00E2F82590B33BDCA1F6D0C5 /* xh_htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */; }; + 1FB1622D59593932B25C55BB /* LexPowerShell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */; }; + 371809DA4AD1382F8B532879 /* fontenum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36E1DBA275AD325DB759C180 /* fontenum.cpp */; }; + 246B4FF96BA135258FE45F50 /* encconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */; }; + BA7B12396B873FDA8F3A2748 /* xlocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 418AD9241B673308BE31DC06 /* xlocale.cpp */; }; + 0E60E17BA4B23347A4F20160 /* gdicmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998D611109EC33A9A6A11C5A /* gdicmn.cpp */; }; + 9C1F073349FD393E9220C0D5 /* combog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBD7B44E33373BCCB60FC11F /* combog.cpp */; }; + 16021CFD78623B8CBD08FC21 /* LexVHDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */; }; + 00E2F82590B33BDCA1F6D0C6 /* xh_htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */; }; + F3CB42BB6D983675862C01F5 /* xh_toolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */; }; + B5470121BB4B35DE9C4836DC /* jdcoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = F1A6F3936A0D31CBB58082BA /* jdcoefct.c */; }; + 84B3625464F732C3A79E1316 /* xh_bmpbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */; }; + 215958201947310B88BBEDB5 /* statbmp.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD6B26B5A6A733A89EF5AB9C /* statbmp.mm */; }; + 75DCE6FF00E93C5D93970844 /* arttango.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9988CBB0772A3539970162FA /* arttango.cpp */; }; + 9A63148F193E33B5964DD02A /* uilocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */; }; + E2A73751CECF32A68FFAEE83 /* panelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E9B2C076673C87B4218A01 /* panelcmn.cpp */; }; + 71CCB06E790C3C54BFF1199E /* LexSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */; }; + 3141FEDED0943BD6A2EF8590 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA93D41B11683E758D456531 /* log.cpp */; }; + BF3D600A93403C589B65C5C1 /* xh_stlin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F555177554E398286DBC6FB /* xh_stlin.cpp */; }; + BD49EC50CB363642BDBF25CA /* mousemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D037EA567C253DEEA17E822B /* mousemanager.cpp */; }; + 81B742D64BEB373DB705947B /* m_list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4028ABB08C63AB59F5F240B /* m_list.cpp */; }; + A2769D1659AE3CA3B58C2CAF /* wincmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */; }; + C7B6240E0E213836996A178C /* dockart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD709DEB71623974B9836D69 /* dockart.cpp */; }; + DC928C38CA8331F18FF00BCD /* tif_lzma.c in Sources */ = {isa = PBXBuildFile; fileRef = 3088384F07C63A5DB3581656 /* tif_lzma.c */; }; + 86BE5213D3F131D8A686267A /* hid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 160EB9744CB63A0B81DC651F /* hid.cpp */; }; + AA54EDC7C94730D1A31F059F /* LexCharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */; }; + D5C5DD83882B3227A1CCFE10 /* LexSorcus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */; }; + 27E2EABB117334CD89CFD2A5 /* mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B568A7364ECA30288820CCE7 /* mdi.cpp */; }; + AAAB5DF8E60736D88273DD00 /* strconv_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5F9383D1CE931499F339D85 /* strconv_cf.cpp */; }; + 7D615329368D32709CEF4B59 /* headerctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7273A7E255323EB3B391D997 /* headerctrlg.cpp */; }; + 049052C49B0B3810BE0179CA /* dataview.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB6963739198360DB3DBCC6C /* dataview.mm */; }; + 22EC132AEF863BFBAA6EDEC3 /* LexPowerPro.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */; }; + 4442EA28B0B3373B9A2D0863 /* collheaderctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */; }; + 2A7640E4210334AC93366900 /* winpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FCA75FE592C3469AE351FBF /* winpars.cpp */; }; + 187F921A95DA3594B0AD980F /* gridsel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26381308E32A3A179E7A9B40 /* gridsel.cpp */; }; + B0E94A59C83637C09FAAE71C /* app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 757B31FCCA1F381C95B30DF8 /* app.cpp */; }; + A139B846584436BCBEBAE3BF /* grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76337016F2CA3C85831702E6 /* grid.cpp */; }; + B8A98F209934399DA45C2387 /* fs_data.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */; }; + 901F659891613419B8643952 /* calctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */; }; + 7D0E549020D33ED39751DFC8 /* LexTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */; }; + 5519BA1F2463308FAC4A0CA0 /* LexAVS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 57E4784E521339BEB971D81D /* LexAVS.cxx */; }; + A0BA01A85C303C78A3130712 /* art_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */; }; + CB46C7E531903700ADFB11C9 /* tif_jbig.c in Sources */ = {isa = PBXBuildFile; fileRef = F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */; }; + A39B0D7EB43137F7BA50A35C /* xh_simplebook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */; }; + 9E0B67E34B683412978BA82F /* filtall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */; }; + 552708E6296D33EBB5F6A493 /* tif_swab.c in Sources */ = {isa = PBXBuildFile; fileRef = AAC12B4456E13F57BEA25A5E /* tif_swab.c */; }; + 9FB1E1763EFA334CA0C07C49 /* tarstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */; }; + BA57708D2D563967A0D1F004 /* LexTxt2tags.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */; }; + 779D3480141B3683A6D132C0 /* tif_lzw.c in Sources */ = {isa = PBXBuildFile; fileRef = 346C68F0CCD23823B78267F0 /* tif_lzw.c */; }; 83616D33080E3F0F9FA5FBB5 /* xh_html.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 889FFA9573A835F280A21CB4 /* xh_html.cpp */; }; - F55F3887CDE633D7877C607C /* LexSmalltalk.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */; }; - 76D1A1A49CC831FFB9EBB1F7 /* LexOpal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */; }; - 335DD610974A33D4B6581E2C /* colourdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */; }; - 750C716389AD3ADBABC9D689 /* statbmp_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */; }; - A7692B4D8658347BA16EEB85 /* jmemnobs.c in Sources */ = {isa = PBXBuildFile; fileRef = 374E341C8703367686DEDE93 /* jmemnobs.c */; }; - 8DE45CEAF2DD3C22AA019F76 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CF73F49AEC238C99CE89845 /* deflate.c */; }; - 6F0605F3A4E83BF0BF4C8B80 /* cmdproc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */; }; - F6A1AC5CF84E32C19F91A614 /* statbrma.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1F2E9C9052D3E53BBD17DE3 /* statbrma.cpp */; }; - 44C6F11C7D1C399F99CF6BD6 /* xh_auitoolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */; }; - 4DA9DE940E043C58BEACBB58 /* UniqueString.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */; }; - B97C178B47173E6AB0CE577D /* CaseConvert.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 274A156457C63EC5801029C2 /* CaseConvert.cxx */; }; - F747991E5C973F9B8C9D800C /* fontcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */; }; - 0FFFFA2F762B3160955D1D8A /* gauge_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC28591B403B32B7AFCC079D /* gauge_osx.cpp */; }; - 369BCCFF61D13A058D837837 /* LexPerl.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */; }; - 6463C9BE78C0394CB7B451FC /* pcre2_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = BDADEB1DA6433E52972C8934 /* pcre2_compile.c */; }; - 552708E6296D33EBB5F6A494 /* tif_swab.c in Sources */ = {isa = PBXBuildFile; fileRef = AAC12B4456E13F57BEA25A5E /* tif_swab.c */; }; - 1CBF34ACA39330028A5EA9AE /* xmlreshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */; }; - A486A28E216D320AB57452D5 /* lzmastream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */; }; - 912C69ADB1673ACEB0E6CF0A /* tif_strip.c in Sources */ = {isa = PBXBuildFile; fileRef = B83EDE2D1731311ABDE62F9F /* tif_strip.c */; }; - DC7D78BABF823480B56528AD /* xh_propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73962222F573116BE63576C /* xh_propgrid.cpp */; }; D3EC9191D94837CABFF05DC5 /* LexNim.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B1AA9AF75D233FFC9FC90E7C /* LexNim.cxx */; }; - 20F10669703137E68318C6FE /* cmndata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */; }; - C67EAE20657E36839BF86691 /* richtooltipg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */; }; - 2E8440A2BDD53BE7B01547C4 /* uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4E1DC1869C6327C80D2F5F4 /* uri.cpp */; }; - B640A8A74D973A8FBEF63918 /* LexConf.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 04082EC1C91334379425802D /* LexConf.cxx */; }; - CEBAAB0C77983358A601C000 /* jdmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = ED19EF377E653F71B1876259 /* jdmaster.c */; }; - 3399AB7BB1333B5AAF5FAF57 /* wrapsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */; }; - BF3D600A93403C589B65C5BF /* xh_stlin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F555177554E398286DBC6FB /* xh_stlin.cpp */; }; - 3B8A54D5E5A53607A6F7979C /* arrstr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A57CF60203F53459A03951A9 /* arrstr.cpp */; }; - 3C665EA42ECC3E5990BA347C /* EditView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 430739CB8B95336ABB372EC7 /* EditView.cxx */; }; - F5D0BCF1A6C839E5829199E4 /* sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */; }; - EAA469E1A0CC33E4A21A3F7C /* gaugecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */; }; - 60296753A32B39EB8BD0CB45 /* pcre2_study.c in Sources */ = {isa = PBXBuildFile; fileRef = 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */; }; - 6167245C417A32179EC37D2F /* textfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0903EE9B3793303285FF96E3 /* textfile.cpp */; }; - 91BC7802C15337CDA84C3744 /* statline_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */; }; - 3694B007E88A3D8C8CB952F1 /* LexRegistry.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A737317EDE0F3921B1412966 /* LexRegistry.cxx */; }; - 36B0B923B836358D9DB0AE12 /* xh_panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */; }; + 6AC347D2DCC730149A0A83D9 /* button_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF4F4F5211933057824B5621 /* button_osx.cpp */; }; + B640A8A74D973A8FBEF63917 /* LexConf.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 04082EC1C91334379425802D /* LexConf.cxx */; }; + 2020EE3C45743B53BE8C7F39 /* LexCoffeeScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */; }; + D772334837693C9D88069D99 /* tif_webp.c in Sources */ = {isa = PBXBuildFile; fileRef = 3716DA7B0C79360CBA26A71E /* tif_webp.c */; }; + 9FB1E1763EFA334CA0C07C4A /* tarstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */; }; + F747991E5C973F9B8C9D800B /* fontcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */; }; + EEB0B28903693C7E9D071930 /* glcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E08A51FA8D8A361681B07295 /* glcmn.cpp */; }; + 3D3EA1BAAD1833B1B48E9C87 /* xh_stbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */; }; + 164010B26D363F5FA09785B7 /* listctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1B1FBB2BCC43BA7A45E9438 /* listctrlcmn.cpp */; }; + 68C300D096BF39239876D043 /* utils_base.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2ED0C0702D2734D9B08FC31D /* utils_base.mm */; }; + D36E76A4CAF5352D9397E1FF /* fdiodispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */; }; + 6B9EEA3CF2E536E3B1ADAC42 /* manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBED392D081335FA80523244 /* manager.cpp */; }; + CA85901B9E2538CFB7E44217 /* process.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B35DA585CFDD32468868E892 /* process.cpp */; }; + 8B60964DA1DF3F3DB40BE124 /* datavgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F3D473DC5123EDAB767045C /* datavgen.cpp */; }; + 42260A6F1853361083803B0D /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CB467F9898C3952A68D988B /* zutil.c */; }; + 6CA1BAEBBDB4336E9E201F97 /* protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */; }; + D66F55C93D1130F488970C06 /* pcre2_match_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */; }; + 91BDA5B04CF33C9AB7358B8B /* timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69F098E47EBF34368ABAE7ED /* timer.cpp */; }; + 1E4832B42B95308299B767BB /* jdmerge.c in Sources */ = {isa = PBXBuildFile; fileRef = 0890779C662C35889A8C6C2E /* jdmerge.c */; }; + C34B8675439F39B4845FFC51 /* xh_listb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */; }; + F5FF98C231B33E3EB7902C65 /* colordlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = DAAED71A534135A9A61612A6 /* colordlgosx.mm */; }; + 10743B74A58231639C6BF611 /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = 400275BE019D3E5BA47988BE /* inffast.c */; }; + E1A20811148F31D289AF98B1 /* xh_sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */; }; + 8B60964DA1DF3F3DB40BE125 /* datavgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F3D473DC5123EDAB767045C /* datavgen.cpp */; }; + E3AD8574E13B39BDB8D4E930 /* LexKVIrc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */; }; + 25C5C1713C0B39AC8EB6A38F /* taskbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A4D36DE66EC3EB09E883D6B /* taskbar.mm */; }; + 0E024D145DDD38ACAE68F463 /* toplevel_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */; }; + 8620088DDD233B139B250DD5 /* filter_sse2_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */; }; + EA10DA3199813E90B39C70D3 /* xh_infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45C65E309F3A39598C043657 /* xh_infobar.cpp */; }; + 2102C23970FB3F22AB46A59B /* LexTADS3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A284E855892F3A9E9E19E854 /* LexTADS3.cxx */; }; + F34D240EB4513FE996179182 /* xh_mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */; }; + AF1875145B2537298E4A28DA /* pcre2_xclass.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */; }; + 2FE10EA678C73523836FCC1D /* richtooltipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */; }; + A53B8C3ED0D33A1D9AA8219C /* toolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3BF8C9FF2D5314591329D0D /* toolbar.mm */; }; + 603DF49D176737D383CE4F03 /* choice.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F838F853CB03CF7932C08C3 /* choice.mm */; }; + 2FA1A8FE3644325ABAD273A4 /* fmapbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832BBBFE664736D5978420C6 /* fmapbase.cpp */; }; + 805CCAE64D023561AD334B55 /* popupwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 530DC2E26BF2313E8702AD43 /* popupwin.cpp */; }; + E515EAE375AE390688CBF8D4 /* pngtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B32A13D5B3336098B1B9765 /* pngtrans.c */; }; + CBBD7B32DB7B3E24AE745D78 /* epolldispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */; }; + D36E76A4CAF5352D9397E200 /* fdiodispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */; }; + 27E2EABB117334CD89CFD2A6 /* mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B568A7364ECA30288820CCE7 /* mdi.cpp */; }; + 86787E4138CC334BB74EC7B5 /* palette_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */; }; + 68AC8860B0943C1FAF76D96D /* list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 552757A901E732CAA8E3F16D /* list.cpp */; }; + 346D274E17673A01B0177D5D /* sockunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7661E9E09A397790ED9545 /* sockunix.cpp */; }; + 22EC132AEF863BFBAA6EDEC4 /* LexPowerPro.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */; }; + 700BBDECBE313E108BA99ABF /* toplvcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 861438BD294335D4B859EA71 /* toplvcmn.cpp */; }; + 86787E4138CC334BB74EC7B6 /* palette_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */; }; + 127E255EE601383A9E0EF7EB /* menuitem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61548D0FE1353D7C846DD721 /* menuitem.mm */; }; + 6E68759BC2E63CA59C12FDC1 /* popupcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D922063B2F2536629EEEAAF0 /* popupcmn.cpp */; }; + 4279D39CAAF834F6A5B99198 /* persist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D9626646773CED82449D5D /* persist.cpp */; }; + FE5285579C7F39C48FC66B12 /* hash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 888BD97139C936679691FF34 /* hash.cpp */; }; + 3141FEDED0943BD6A2EF8591 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA93D41B11683E758D456531 /* log.cpp */; }; + D54D3CA9E73336A08DB20706 /* LexBaan.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */; }; + D997FFC948B73FDA892DB532 /* jdsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCF47A161B3E08B19BFE14 /* jdsample.c */; }; + 65FCDBFFF3F138A3ABBAA651 /* xh_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */; }; + 2315C8692C443ED1AE431729 /* tif_extension.c in Sources */ = {isa = PBXBuildFile; fileRef = AF7CE00168AB33C994374ABA /* tif_extension.c */; }; + 2DBF5F96CCC63F7481C26A44 /* webview_webkit.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FEECFD764E037288CE94FEB /* webview_webkit.mm */; }; + 8AA341CCFB8E3F6AB3523596 /* splash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F8836E29C5A370E80CE070E /* splash.cpp */; }; + F38202271C6131908C358DEE /* mstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC3D1E222FD93A69B1D1366E /* mstream.cpp */; }; + EB52C6A91594381393294501 /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04A /* control.cpp */; }; + AA54EDC7C94730D1A31F05A0 /* LexCharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */; }; + 45D88A74B3EE3837B9F79596 /* LexFlagship.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */; }; + 9CC92BB4B0E233A0A7F8127B /* LexVisualProlog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */; }; 5417332FE2DB3CD3A647B15D /* cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF1F491B8A8376E8E2E8182 /* cursor.cpp */; }; - CEE0D7A7D5D8323B9957A782 /* notifmsgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */; }; - 5DA146A9F7653F53BF5299E9 /* spinbutt.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C4A7A93CAFC3E22A2A5F7F3 /* spinbutt.mm */; }; - 8C2B50E3FC7A37C58CC9DC0B /* colour.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8B73BB8C0391E9EC1B2D1 /* colour.mm */; }; + 76A83A293C9F33BCB7DFDE27 /* jdatadst.c in Sources */ = {isa = PBXBuildFile; fileRef = 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */; }; + 7A84B9471A3238B4B66B1778 /* nbkbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B901252876603DCEA4C66D89 /* nbkbase.cpp */; }; + 2386B575BC3931D2AF86CB34 /* fontdlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38CEA4A3579331EF808B8363 /* fontdlgosx.mm */; }; + F1E4D7CA634E33808AE3B522 /* fontenumcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 373242CD08F330208A7CF438 /* fontenumcmn.cpp */; }; + EE972E8DC73F310B9B4C949E /* webrequest_curl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5279968877003A8BB8279765 /* webrequest_curl.cpp */; }; + 567A32722BA33AEE9FF93D7D /* fs_inet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7581D7140293BAE88E43DBE /* fs_inet.cpp */; }; + 31DD19A942283FA8810B6383 /* numformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BD8DAB407D231EFA5B2CAE5 /* numformatter.cpp */; }; + 8A9C3C04D00334418C3446FA /* dirdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0B0DC125AFFC322E8E496262 /* dirdlg.mm */; }; + E7F35B834A163C67B65176C8 /* tif_dirwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */; }; + 26E4813A97DE323E88119165 /* xh_choicbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */; }; + 76A83A293C9F33BCB7DFDE28 /* jdatadst.c in Sources */ = {isa = PBXBuildFile; fileRef = 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */; }; + CEBAAB0C77983358A601BFFE /* jdmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = ED19EF377E653F71B1876259 /* jdmaster.c */; }; + 00F1531404F832C6AE0748F3 /* spinbutt_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */; }; + 2E059BFE8E3B3D9299D5596A /* textmeasure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B31409EC6532FC83B0B957 /* textmeasure.cpp */; }; + 0B4AF44DC0C439AD83CDC380 /* Indicator.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4FDE5A962FA234FA83A605AD /* Indicator.cxx */; }; + 61FEDBF2D47A3B4E861F8297 /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F4 /* sound.cpp */; }; + 7D0E549020D33ED39751DFC9 /* LexTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */; }; + 4E712589FAA837F589B72F4D /* LexMaxima.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */; }; + C6DF6F29407B34F29ED1B66D /* jcmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E3043D7BE9C33B59E900CCE /* jcmaster.c */; }; + 57AE7FCF768F3965BD39B47B /* m_span.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 727F25F832AD32D4B12D8E39 /* m_span.cpp */; }; + 3ACCC2EB8E973C11835EB597 /* bmpbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */; }; + 50D7E093424138C88BB50D29 /* jcsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 53D06E47477B3E32BB6B915E /* jcsample.c */; }; + 159E4248CB1333AD841D9F05 /* LexYAML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9CC7C6FFD67233788EEDFC5E /* LexYAML.cxx */; }; + 76D1A1A49CC831FFB9EBB1F6 /* LexOpal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */; }; + 014AF0BAB1783A5D9D75A7EF /* zstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9B5BC858CCF3477895D2786 /* zstream.cpp */; }; + 8C52B1985BAA371FA22CCEBC /* combobox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57C06D5DB5F733A4A235B206 /* combobox.mm */; }; + BA57708D2D563967A0D1F005 /* LexTxt2tags.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */; }; + 309C0A78D45C3AB7B8778B5B /* pngset.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E463A493FD930DE80E58608 /* pngset.c */; }; + 46327A3C356D3570B27C6703 /* Lexilla.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */; }; + C2E37E798F743A4199C8658E /* fddlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */; }; + 1EA81A0E8E5A3B38B4D80338 /* srchcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF103B09F02315282EC8F44 /* srchcmn.cpp */; }; + 0ADC8DBEE80D36B0BB9B058B /* LexASY.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A82C367B86F83981803D55DB /* LexASY.cxx */; }; + EB52C6A91594381393294502 /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04A /* control.cpp */; }; + 61FEDBF2D47A3B4E861F8298 /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F4 /* sound.cpp */; }; + D54A162E557834A48F4646AB /* advprops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 326723AEB79A305F90D6B41D /* advprops.cpp */; }; + 6C46AF0370793AA0B74A5A4C /* tabmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */; }; + 23CECD8647C037E0B41DF0D6 /* LexA68k.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7020ADB5D3E0375E875B418B /* LexA68k.cxx */; }; + B6891F848CA0325EAB6D1374 /* textentry_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777385D10CCC350C90F02824 /* textentry_osx.cpp */; }; + 22EC132AEF863BFBAA6EDEC5 /* LexPowerPro.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */; }; + F34D240EB4513FE996179183 /* xh_mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */; }; + E3136EF5DD843ACE886E2868 /* tif_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = E79B2D1F630036129B9677A7 /* tif_dir.c */; }; + 4C9BA36123E43589956864C6 /* Style.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C28429A964C337A192D76CC8 /* Style.cxx */; }; + 0FDDE8E193743F3A8CBDC67D /* richtextprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */; }; + E0E40333B61C33B587870790 /* LexMarkdown.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */; }; + 59BFB8C8310E37B39AF8B0D4 /* any.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4867546E8B8D3C8683A23ED5 /* any.cpp */; }; + FBE4DB30865D3177B3A9993D /* xh_animatctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */; }; + 78E15D8200F635529F396099 /* LexBullant.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6718204F4700318E89EAC906 /* LexBullant.cxx */; }; + E7140F3AB94D3FDFA86D8C07 /* url.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49612306912038DDBCABB4DE /* url.cpp */; }; + F89405757B063F80B111F46A /* datetime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0EBCDDF248638B58B01D9CC /* datetime.cpp */; }; + 47F4FC8717AF3A848812DFCE /* xh_radbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */; }; + 6138BCBC8E4438FA91E0EFA0 /* xh_chckb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */; }; + DEB35F871F8E3B90AD207AEE /* printps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF76670146413EEFA005206A /* printps.cpp */; }; + 65514CD6A9F23ED98436AC04 /* ftp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB4781DF8C432C688F30CDD /* ftp.cpp */; }; + 2F7328AC75393951B08F75F3 /* pcre2_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 25E03E349FC13E4A9428B94E /* pcre2_error.c */; }; + 9D003890CB7035A298DB7057 /* LexLua.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5145561C78303EEE9F827962 /* LexLua.cxx */; }; + A3C4D47A84E8362295867527 /* LexPOV.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8EECA8EB93BF3C7A9CC827AD /* LexPOV.cxx */; }; + 98DF13E96160304EBB905E74 /* jcmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = 810EB7316DF3344197C78EC0 /* jcmainct.c */; }; + EB52C6A91594381393294503 /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04A /* control.cpp */; }; + D8ADDD24BEAC3D94B3388D40 /* LexCOBOL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */; }; + 2E8440A2BDD53BE7B01547C3 /* uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4E1DC1869C6327C80D2F5F4 /* uri.cpp */; }; + 07158EBC05A637ECA9DC7B4F /* utilscocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */; }; + 90BC965B1A1F35A3B2C9D1CB /* Decoration.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BF1C44D726E63B18A98006EC /* Decoration.cxx */; }; + AC07BA4EA5403443914DFDB1 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7013DB195D023C31ADE68546 /* crc32.c */; }; + B4425B59CC27389CA9FF81D3 /* datectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE856D950B8C369EB0FE13BA /* datectlg.cpp */; }; + 901F659891613419B8643953 /* calctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */; }; + 30AEDF41EC5C374DBF96EFFB /* slider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B862D1027C4367BBF44420F /* slider.mm */; }; + 5ED54DFAE28533108C08DF2C /* pcre2_extuni.c in Sources */ = {isa = PBXBuildFile; fileRef = F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */; }; + F24F637D59F637CA9A7E23CB /* xh_filectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */; }; + 28ADE8D385A53445A5451F25 /* jdhuff.c in Sources */ = {isa = PBXBuildFile; fileRef = 72869747E68E37998CB0A07E /* jdhuff.c */; }; F85D632964383F29BC3B30B8 /* tif_next.c in Sources */ = {isa = PBXBuildFile; fileRef = DFDC805DD3063C389F93642D /* tif_next.c */; }; - D18E2985C48733B2B7B3D444 /* evtloopunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */; }; - 98F52D5224B438DFA8887E08 /* timectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741578B590AF3F2CABE615EB /* timectrlg.cpp */; }; - 81B742D64BEB373DB705947C /* m_list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4028ABB08C63AB59F5F240B /* m_list.cpp */; }; - 72AD4417FF7C3094BB1FF62D /* xh_grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93B77251C0E0382D9A8E113D /* xh_grid.cpp */; }; - CA85901B9E2538CFB7E44217 /* process.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B35DA585CFDD32468868E892 /* process.cpp */; }; - 371809DA4AD1382F8B53287A /* fontenum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36E1DBA275AD325DB759C180 /* fontenum.cpp */; }; - 45D88A74B3EE3837B9F79596 /* LexFlagship.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */; }; - 2A7640E4210334AC93366900 /* winpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FCA75FE592C3469AE351FBF /* winpars.cpp */; }; - 4D0BA8B9F72C3C31BC170CE4 /* progdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */; }; - 6B9EEA3CF2E536E3B1ADAC44 /* manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBED392D081335FA80523244 /* manager.cpp */; }; - E62F8E49FD5035D8BC71BB4A /* LexGAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */; }; - 4CFB7E6E5BD53E2BB39BEF65 /* m_style.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EB95BCFA255323183A996C9 /* m_style.cpp */; }; - D83B32B788EC310D919E0DF9 /* imagpcx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */; }; - 8292D346BFC33D6E8D3CDDC0 /* xh_sttxt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */; }; - B181806CC34839E791E54BF0 /* xh_tglbtn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */; }; - 89200B144075388BA69A07E3 /* xh_timectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25A81E9028793C109D868068 /* xh_timectrl.cpp */; }; - 7A7439BE66AA3771B4A8904A /* regex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB46BC22F6B23909A938C561 /* regex.cpp */; }; - FBA19C939E1E33EDB05043FF /* cairo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */; }; - CBBD7B32DB7B3E24AE745D7A /* epolldispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */; }; - 1EE845DDFDDE36CA8A218207 /* tif_close.c in Sources */ = {isa = PBXBuildFile; fileRef = F82278F9AF0432529891E6D7 /* tif_close.c */; }; - 9B6A35E706543CDAA6A5014B /* LexGui4Cli.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */; }; - 8B38C6C416BA3A51B37F60C6 /* statlinecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */; }; - 0836590D35FE37988DE70443 /* combobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */; }; - CB1F37993ECB3B73A51B42FD /* LexMySQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F3EE2E9EE05311497826962 /* LexMySQL.cxx */; }; - 96927C5A21FD3ACF936CDF6E /* renderg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49CABA38E78D34DFA260AA06 /* renderg.cpp */; }; - 23A7AF68A03E380785EE7C25 /* object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1731D6708BFE3DE7B101CE74 /* object.cpp */; }; - 8F949B9010863F66A58FFEF2 /* xh_activityindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */; }; - 75DCE6FF00E93C5D93970843 /* arttango.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9988CBB0772A3539970162FA /* arttango.cpp */; }; - 1A4F9F18BBEB3515AC7C7CC7 /* LexMetapost.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */; }; - 552708E6296D33EBB5F6A495 /* tif_swab.c in Sources */ = {isa = PBXBuildFile; fileRef = AAC12B4456E13F57BEA25A5E /* tif_swab.c */; }; - C8F1FB8C029031A5909DBC56 /* KeyMap.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */; }; - 182DFDBB58653FD9863D4177 /* dcprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238741BDA2C73E56899CCB04 /* dcprint.cpp */; }; - 15735ED6556130F6A14F0BCE /* ScintillaBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */; }; - 2102C23970FB3F22AB46A59C /* LexTADS3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A284E855892F3A9E9E19E854 /* LexTADS3.cxx */; }; - 5B5B8DF915D438AA9FCEB3A0 /* imagall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FFDFB4D208F37569AC548B0 /* imagall.cpp */; }; - D13596A4E3CD31DE810061A3 /* imagjpeg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6876262846EA3569B36D92E9 /* imagjpeg.cpp */; }; - E882402BEE0330A080A65171 /* strconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FEB8204E530329FA085E5B8 /* strconv.cpp */; }; - 15048519756B33959B15B162 /* floatpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A881F49ADCF33C299B041584 /* floatpane.cpp */; }; - 4958BD2E717A3F03AB03018A /* tbarbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3F32C01D122301AB00D06A5 /* tbarbase.cpp */; }; - CD241361D4693785A0B8939F /* StyleContext.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */; }; - 894D43C8F224394FB3171F28 /* jcapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */; }; - 48A1F28E04603A68A1E7031A /* jidctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = A0DCC5EF59143640BE13AD73 /* jidctfst.c */; }; - FE9A662A1F9B34D099C45C1F /* xh_cald.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 093B5233861B3F9B8C85762B /* xh_cald.cpp */; }; - 14F303FD6B5F383DADDFD78A /* xh_dataview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 616466F521DB3ECAB304289F /* xh_dataview.cpp */; }; - 5417332FE2DB3CD3A647B15E /* cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF1F491B8A8376E8E2E8182 /* cursor.cpp */; }; - 14DEBD7C01FC358B917FDAF3 /* aboutdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 207F0F88390138B6B41183EB /* aboutdlg.mm */; }; - 8EE5A2467401365C8217AF31 /* preferences.mm in Sources */ = {isa = PBXBuildFile; fileRef = 835C22B71A0F3C469310E1E0 /* preferences.mm */; }; - 46CE8B53D2663927AAE5DF9F /* xh_treebk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */; }; - F84D59648206349A9768157E /* msgdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */; }; - 91364FDD73053139BBAA313D /* Accessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D2DE67C976CF3004A8FE883A /* Accessor.cxx */; }; - A4DEBFA074C93388A1BBCB42 /* pcre2_substitute.c in Sources */ = {isa = PBXBuildFile; fileRef = FAC42945539F362D91D6F559 /* pcre2_substitute.c */; }; - A965348C7FA73CEC90C8FA27 /* filedlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */; }; - 0095084719983B878378CA2A /* pngwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 69A6CAF721E53E83B4820DE6 /* pngwrite.c */; }; - FB09720D13673A7B81BCB646 /* xh_datectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C63C964DAFAD311694367C94 /* xh_datectrl.cpp */; }; - BD53E095EC1136EF853A47D9 /* m_layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5EE0B8985443BDCB36F781F /* m_layout.cpp */; }; - 0F8C79010EF0316AA1B7392F /* LexTACL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E5C91072D533919A78D8ED2 /* LexTACL.cxx */; }; - EE0EA850822E35F596B5EBBA /* artprov.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29387393C07C39DB8FF1663B /* artprov.cpp */; }; - A36B5107860E326591940741 /* LexPython.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CC2713393AB132AA8E337AE1 /* LexPython.cxx */; }; - BF3D600A93403C589B65C5C0 /* xh_stlin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F555177554E398286DBC6FB /* xh_stlin.cpp */; }; - D17E3053DA0D3F7EA4D0951C /* helpdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81821049E39B32C6ABCF6820 /* helpdlg.cpp */; }; - E741CDA71895344C974D8F52 /* AutoComplete.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */; }; - EBA0986930DA3B59B2FB4F20 /* htmltag.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCCFF49F92B4323D9181CEDA /* htmltag.cpp */; }; - 3C394FBD47B6310C80577E3C /* LexMMIXAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */; }; - 3C665EA42ECC3E5990BA347D /* EditView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 430739CB8B95336ABB372EC7 /* EditView.cxx */; }; + 5792675690843C6AA4125A73 /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77F5E7BCD9B2307D8DBCC052 /* font.cpp */; }; + 00F1531404F832C6AE0748F4 /* spinbutt_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */; }; + 2FE10EA678C73523836FCC1E /* richtooltipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */; }; + 07EC76232BB3343FA5CB90B1 /* LexAVE.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */; }; + D5C304182151365FA9FF8A3F /* xh_bttn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */; }; + 1BCC944F5E0936F5830F03E9 /* windowid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B9B85572D0312BBF2878DB /* windowid.cpp */; }; + B0FD1B96EAE635AFBFCF2C94 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C045 /* secretstore.cpp */; }; + 1AB50C98FF473B33A3CA4D39 /* xh_cmdlinkbn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */; }; + 743BB23211B336A6A0F26E58 /* jcapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = F83172EE2DAE352FB969D4F2 /* jcapistd.c */; }; + CB1F37993ECB3B73A51B42FE /* LexMySQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F3EE2E9EE05311497826962 /* LexMySQL.cxx */; }; + 03BF1610E2FC3BD5ACB754F2 /* bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */; }; + 4666CDC48BA9301EA283C000 /* choice_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */; }; + DDC71B80D562303690FDBE4D /* appcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F01DDE448E4C3983ACCE67FD /* appcmn.cpp */; }; + A336FD218BE63B19991CA514 /* ipcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C090A76B6F23E6481A27282 /* ipcbase.cpp */; }; + A80D00249A693F43A9CBE778 /* rgncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63867276260C3F4A980E83D8 /* rgncmn.cpp */; }; + DAAFBED07FF8365B96D20B9B /* unichar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */; }; + 49BEDFBC3661339D90EF6937 /* LexTCL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */; }; + DB3C3AA956A03FB492480268 /* treectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */; }; + 6FA47EAACE613B039B6EC263 /* containr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3645350F572364BABF50238 /* containr.cpp */; }; + F07D84D124F23E7FA11CF149 /* extended.c in Sources */ = {isa = PBXBuildFile; fileRef = 033B94A9AC8A3370A794503F /* extended.c */; }; + 3554C88010CE3D2A8970A137 /* sashwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */; }; + C2DEE063B5E032C1BD2B5028 /* xmlparse.c in Sources */ = {isa = PBXBuildFile; fileRef = A92B6033D8233DB1821F193B /* xmlparse.c */; }; + F46777ABE0743B04A1E1F0A4 /* spinbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */; }; + 66584BC871303041BA622DE0 /* m_fonts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1F3C70512D93501B0478F3E /* m_fonts.cpp */; }; + 9B3F9D04FB533D99B58BD51A /* jfdctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */; }; + D7F14BDFFB7F369B842AFC15 /* pcre2_config.c in Sources */ = {isa = PBXBuildFile; fileRef = FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */; }; + CE17002B5B7E37558274763A /* xh_choic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */; }; + 2E4747E0736B30569ACD5424 /* textbuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 701B84EE7C043B539FF5195A /* textbuf.cpp */; }; + 95AD56D602CF3C5085602AFA /* geometry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC0A61629E635FAB4E09505 /* geometry.cpp */; }; + 97F60B2A9CE93BC8949A8CCE /* LexCrontab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */; }; + 5F78DB0417BF3CE1B4E35C7F /* stackwalk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA2520F427493A22A70A5C09 /* stackwalk.cpp */; }; + BEAC2449AFA7304989BA301E /* fontpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */; }; + C2D45B334BE03F6C941CA041 /* utilsexc_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95E2B80B2D7033808504DA8D /* utilsexc_cf.cpp */; }; + 4DA9DE940E043C58BEACBB56 /* UniqueString.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */; }; + A139B846584436BCBEBAE3C0 /* grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76337016F2CA3C85831702E6 /* grid.cpp */; }; + 774A89998E09308CBFB03EE1 /* imagxpm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C85865D28DC31649440A921 /* imagxpm.cpp */; }; + BB12132A86E2350AA47414CE /* arm_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 933D7637CAA43F6C99814BC5 /* arm_init.c */; }; + 7181709A030D3749AB355B75 /* xh_radbx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F43AF44465B335479752116D /* xh_radbx.cpp */; }; + A93D0E6F0871368EA8FC9FFB /* fswatchercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */; }; + 76D1A1A49CC831FFB9EBB1F7 /* LexOpal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */; }; + 2A7640E4210334AC93366901 /* winpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FCA75FE592C3469AE351FBF /* winpars.cpp */; }; + F07D84D124F23E7FA11CF14A /* extended.c in Sources */ = {isa = PBXBuildFile; fileRef = 033B94A9AC8A3370A794503F /* extended.c */; }; + 052331773CF6362C9A6CF38F /* utils_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EED7C691150139EFA35E8EBD /* utils_osx.cpp */; }; + 39FB197CF9EB3D76BE0723D0 /* LexBash.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 78D7866F95C73A28BB540606 /* LexBash.cxx */; }; + 0B792C3F31713850818EEFEB /* LexDMAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AC62806DE67F33E18C386D4F /* LexDMAP.cxx */; }; + 4657E7382E9E3EDC8DE24020 /* mimetype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C97C1F26B5A38C49543060C /* mimetype.cpp */; }; + 91364FDD73053139BBAA313C /* Accessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D2DE67C976CF3004A8FE883A /* Accessor.cxx */; }; + F5806029B1BA3924A8FDDBC2 /* busyinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F94CF171F4532B89FECF475 /* busyinfo.cpp */; }; 83616D33080E3F0F9FA5FBB6 /* xh_html.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 889FFA9573A835F280A21CB4 /* xh_html.cpp */; }; - F5B0B26BD0803719A3FCB4D8 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E45F6DF601A34BCB3CC0206 /* adler32.c */; }; - 89200B144075388BA69A07E4 /* xh_timectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25A81E9028793C109D868068 /* xh_timectrl.cpp */; }; - 13A71672A59233D3A9B2D5EB /* CharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B883F991159731DCB2717A21 /* CharacterSet.cxx */; }; - 6292B023DBF4337A91404AD2 /* preferencescmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A046179831F63824A67B509B /* preferencescmn.cpp */; }; - B5470121BB4B35DE9C4836DC /* jdcoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = F1A6F3936A0D31CBB58082BA /* jdcoefct.c */; }; - 9FD99E06F6613A1A958FAF6C /* jdmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */; }; - 5DA146A9F7653F53BF5299EA /* spinbutt.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C4A7A93CAFC3E22A2A5F7F3 /* spinbutt.mm */; }; - 60706F8836A130A2AF282FE3 /* fontutilcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E00E14795F23A8392713A26 /* fontutilcmn.cpp */; }; - 8C52B1985BAA371FA22CCEBC /* combobox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57C06D5DB5F733A4A235B206 /* combobox.mm */; }; - 2B13BFC894C63373B7ACFA3E /* xh_hyperlink.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */; }; - 9241AAE354C53190BF3D5BA5 /* radiobut.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99E5B6DD00273D978C241BCA /* radiobut.mm */; }; + 4CFB7E6E5BD53E2BB39BEF63 /* m_style.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EB95BCFA255323183A996C9 /* m_style.cpp */; }; + 1C52CB9487DF3AB9AF243B48 /* prntbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 242BF97B558634A79322052C /* prntbase.cpp */; }; + 86B0D280A43C308CAC14BE25 /* CaseFolder.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F52DCBC0442233738B39138E /* CaseFolder.cxx */; }; + A2473402D8B83628B1F66749 /* wxprintf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 607EF0043E723B7B9BE101EA /* wxprintf.cpp */; }; + 595DCB164D55342EB86604ED /* hashmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6636144CDE83E8E85270FAF /* hashmap.cpp */; }; + C259D01CC62533D296EF023B /* scrolbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */; }; + FE5B7C7A84B83C17A38E8403 /* LexSML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */; }; + D4EC9DB5F8DF319EA0FD26A5 /* LexVB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F633793051F371F94C27530 /* LexVB.cxx */; }; + 30AEDF41EC5C374DBF96EFFC /* slider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B862D1027C4367BBF44420F /* slider.mm */; }; + BA7B12396B873FDA8F3A2749 /* xlocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 418AD9241B673308BE31DC06 /* xlocale.cpp */; }; + 4666CDC48BA9301EA283C001 /* choice_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */; }; + 652CFDD9A1C1366E99B5D6BE /* socketiohandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */; }; + 8E674574343A3C009B1BCD02 /* tif_codec.c in Sources */ = {isa = PBXBuildFile; fileRef = 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */; }; + 61FD5E0E28F732E8AB1729F9 /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6AB648BC5173104A96CAE66 /* xml.cpp */; }; + 5A8638C234133824BDF93BC0 /* gbsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */; }; + 13854E7822783719A2530793 /* jddctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5BBC1E494D33D028CA547FF /* jddctmgr.c */; }; + E0E4885BF4AF34B48EB08B92 /* volume.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6506A965F677374491359FB8 /* volume.mm */; }; + D6C3421AD2A537AAA2F0AB80 /* file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 168DB301ACC736FF96D7F581 /* file.cpp */; }; + 171F09F8DD553FA5B4B3FAE4 /* modalhook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E7C516E2453A269280A404 /* modalhook.cpp */; }; + 815AE3FED68330F4933AA170 /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = C94DC3402FAE3C4FA776DEEA /* window.mm */; }; + 5417332FE2DB3CD3A647B15E /* cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF1F491B8A8376E8E2E8182 /* cursor.cpp */; }; + 42ED9BAFD6E936849F1D36CD /* xtixml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4048A3523EC03409BD899BEF /* xtixml.cpp */; }; + CFF73578F04D357E83D1D831 /* lboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */; }; + 6C822F7F313734DCB51F44BA /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81A30C745CA73E30B788B408 /* image.cpp */; }; + 0813551C951A3AD1A5EF01B2 /* imagbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84098A475939BB9EE87E70 /* imagbmp.cpp */; }; + 8AA341CCFB8E3F6AB3523597 /* splash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F8836E29C5A370E80CE070E /* splash.cpp */; }; 4788F736CD9C324E8A3DFA76 /* LexEScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 58EFF24DE2E737CA8A164F5C /* LexEScript.cxx */; }; - 7B4DA2F5F25B3E188CBAFE3A /* hyperlnkcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */; }; - 6C80B6049A523836BCD20BCB /* WordList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0E7BF9256DF533EBAE2B945E /* WordList.cxx */; }; - 014AF0BAB1783A5D9D75A7EF /* zstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9B5BC858CCF3477895D2786 /* zstream.cpp */; }; - B37802B0A90133C68EF93DDC /* LexInno.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */; }; - 17F0494F87533196904F5315 /* xh_toolbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */; }; - 9836B3D336963795928FE5A1 /* m_dflist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52FE1599218730CC99A3F801 /* m_dflist.cpp */; }; - 7ECC6EE6D5273F75BB6B7B75 /* tif_dirinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 032A38738B58394E8617617B /* tif_dirinfo.c */; }; - 3D424F4B33653A00AE9B623C /* m_tables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 082CA018FB883999839C1DCE /* m_tables.cpp */; }; - BAFF04F1680F32DA988EB03E /* stockitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B180290089B139F18B0C7BBA /* stockitem.cpp */; }; - EE972E8DC73F310B9B4C949D /* webrequest_curl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5279968877003A8BB8279765 /* webrequest_curl.cpp */; }; - 8966F77CC97B3ED780C8F139 /* xh_bmpcbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */; }; - 427E6AF88CF73D799206E37E /* checkboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FC2F076657431458896115A /* checkboxcmn.cpp */; }; - 15D65A523EB23EC385C05E0D /* jquant1.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */; }; - 32486A808EBC3E088598D51E /* jcprepct.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FE0455EBDC63D82B2D88587 /* jcprepct.c */; }; - F80C2290D67B345F9CF60087 /* dpycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A37E3D1FB4FB31AFAE88665A /* dpycmn.cpp */; }; - 7C52E7CC12463941B0E4D404 /* statbmpcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */; }; - A9A5973552EE30838306D15D /* tif_packbits.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CE73979D0933A43830307E4 /* tif_packbits.c */; }; - 4E396D8D2E9138D797F320C6 /* tif_aux.c in Sources */ = {isa = PBXBuildFile; fileRef = D0CDADAF2D893E32A38351E4 /* tif_aux.c */; }; - 6A032420671B375D81273716 /* valnum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 684D92E552BE313CBE0A88AA /* valnum.cpp */; }; - 7ECC6EE6D5273F75BB6B7B76 /* tif_dirinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 032A38738B58394E8617617B /* tif_dirinfo.c */; }; - 67EBCE5FA5FF36349ADF0917 /* jdapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */; }; - 283C3ABE42433244983C27C2 /* stattext_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CF5C09D9A1230EEB42713E1 /* stattext_osx.cpp */; }; - C5A8DF376BB13A2A8290C2E7 /* xh_unkwn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */; }; - 66584BC871303041BA622DE2 /* m_fonts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1F3C70512D93501B0478F3E /* m_fonts.cpp */; }; - 2A7640E4210334AC93366901 /* winpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FCA75FE592C3469AE351FBF /* winpars.cpp */; }; - 1710A4BB0E6339558A187F8F /* xmlres.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 087B66573CD33DA99DA82B1C /* xmlres.cpp */; }; - 5303FA25D0773FAEB963D8E4 /* scrolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = CC2E24773D853A77B9FEFA4C /* scrolbar.mm */; }; - 39D6435B10073B85A499AFD9 /* dcbufcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBC5A5797B0D369291A76D6E /* dcbufcmn.cpp */; }; - 6AA0EE765330326380989FD3 /* stopwatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */; }; - BF3D600A93403C589B65C5C1 /* xh_stlin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F555177554E398286DBC6FB /* xh_stlin.cpp */; }; - D54D3CA9E73336A08DB20705 /* LexBaan.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */; }; - 91EA325FCE3A3A6A8D1D21A6 /* srchctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */; }; - 164010B26D363F5FA09785B7 /* listctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1B1FBB2BCC43BA7A45E9438 /* listctrlcmn.cpp */; }; - 51F44CB1D9AD3CBDB52EE93E /* LexDiff.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */; }; - E7140F3AB94D3FDFA86D8C06 /* url.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49612306912038DDBCABB4DE /* url.cpp */; }; - 26649553E4763EE6BA268B7F /* xh_gdctl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */; }; + A1AF8FF873D6383996995ED1 /* statusbr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 071FEABEA61E3B559A47A7DB /* statusbr.cpp */; }; + 13A71672A59233D3A9B2D5EB /* CharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B883F991159731DCB2717A21 /* CharacterSet.cxx */; }; + 6AA0EE765330326380989FD2 /* stopwatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */; }; + 94B1C88076793400810FAC30 /* png.c in Sources */ = {isa = PBXBuildFile; fileRef = AF26BAB1F4733114926F1724 /* png.c */; }; + F4C0CEADEDC23610BF6983D7 /* artmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0665A40F3FC3F218074C63C /* artmac.cpp */; }; + 0813551C951A3AD1A5EF01B3 /* imagbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84098A475939BB9EE87E70 /* imagbmp.cpp */; }; + D13596A4E3CD31DE810061A3 /* imagjpeg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6876262846EA3569B36D92E9 /* imagjpeg.cpp */; }; + 67CE7065EE593DAAA2CE448A /* LexEDIFACT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */; }; + A39B0D7EB43137F7BA50A35D /* xh_simplebook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */; }; + FFF5BFBE600E35FAB7EA522D /* fileback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC12D557950A3B0D89D9F2F3 /* fileback.cpp */; }; + C5C60B22CE6A3BCB868F69E9 /* pcre2_find_bracket.c in Sources */ = {isa = PBXBuildFile; fileRef = 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */; }; + 3B8A54D5E5A53607A6F7979C /* arrstr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A57CF60203F53459A03951A9 /* arrstr.cpp */; }; + 8A4046BD38873D9CAC9C2B59 /* filesys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F263022F3FEA3F75895B644D /* filesys.cpp */; }; + C3A63D7091913CD39094AE0D /* btncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A7A3B499503ECABC6A838F /* btncmn.cpp */; }; + 1DD1888315513C24BF9C31B5 /* LexSAS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E1B538562B93D148F54645B /* LexSAS.cxx */; }; + C43A9650A9DC3372AB8F5F79 /* jidctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */; }; + 63F895D6F5643E4B9E666B79 /* creddlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */; }; + 795613831EC8332A83FF26E9 /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7E99B35A98D30818120B002 /* string.cpp */; }; + 682403FBBD4E3D5E88159502 /* CellBuffer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */; }; + BEAC2449AFA7304989BA301F /* fontpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */; }; + 46395873DB1C3B7FA81DE5F9 /* LexerBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */; }; + 319FB8E64CE731D6A58AD302 /* clntdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C904B4BA8273355869812B2 /* clntdata.cpp */; }; + DD1B139EA5AD3F6DB92C0FAA /* EditModel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E685D81FB9FF3081B6C5C321 /* EditModel.cxx */; }; + 955D2199F1893D37BA2D7479 /* laywin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3784C240C2F330683494926 /* laywin.cpp */; }; + 1C544DADDA6F3D62A5E25E95 /* LexerSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CF502E0E4D853CBBBEC885EF /* LexerSimple.cxx */; }; + BF068F3C06473D8CBC55D508 /* PositionCache.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BCD873D873A53BBF955D8A4E /* PositionCache.cxx */; }; + A569A33A2097316D8110C2C1 /* toolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */; }; + 8B87FEC23DB834EDBFB6EA34 /* pcre2_ucd.c in Sources */ = {isa = PBXBuildFile; fileRef = 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */; }; + 62F1DC80D631335B892610A9 /* splitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C125FA3837C631A9BE0ED5E7 /* splitter.cpp */; }; + 62331487C17B32E081B8FEA7 /* LexLaTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */; }; + 25B0940CABAB39CD90C6F3C5 /* intel_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 994AF74DF2A13FF09A215853 /* intel_init.c */; }; + 9D4B67A357D23B5283CA8D9A /* clrpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB8A747FB60239B9AB710264 /* clrpickercmn.cpp */; }; + 07EC76232BB3343FA5CB90B2 /* LexAVE.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */; }; + 6AC347D2DCC730149A0A83DA /* button_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF4F4F5211933057824B5621 /* button_osx.cpp */; }; + 0C3F48DBD05E3566A4CA6D45 /* LexAsm.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A65399C8A6D636139E362119 /* LexAsm.cxx */; }; + 5EE94793DFCB3BA281A48650 /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = FDB0E2D0966C3E408C4A2D3D /* infback.c */; }; + 8EE5A2467401365C8217AF30 /* preferences.mm in Sources */ = {isa = PBXBuildFile; fileRef = 835C22B71A0F3C469310E1E0 /* preferences.mm */; }; + 0C9A379D97B133FA831175A8 /* printdlg_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */; }; + 6463C9BE78C0394CB7B451FB /* pcre2_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = BDADEB1DA6433E52972C8934 /* pcre2_compile.c */; }; + F2813BF297C73A3ABD02EC98 /* glcanvas_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */; }; 026F90F7492C316A94128918 /* logg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C64705CE9398316D87BAB4DC /* logg.cpp */; }; - 2B4507BC09563DB5B0F16597 /* tooltip.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31EFBD7D10003A5187348B35 /* tooltip.mm */; }; - F34D240EB4513FE996179184 /* xh_mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */; }; - D9F02AFDA07D3857A905527D /* jdcolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 68B81FBDA49D3C1991B6356A /* jdcolor.c */; }; - BDB7B2AD26CB356B8BEAAECF /* jchuff.c in Sources */ = {isa = PBXBuildFile; fileRef = DC0FFDC7A6163F2DA73B84EB /* jchuff.c */; }; - 5A459FC1180130C5B705AEDC /* xh_ribbon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */; }; - 97C551F8AEF133D680D1FD38 /* LexProgress.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */; }; - DC928C38CA8331F18FF00BCD /* tif_lzma.c in Sources */ = {isa = PBXBuildFile; fileRef = 3088384F07C63A5DB3581656 /* tif_lzma.c */; }; + E741CDA71895344C974D8F52 /* AutoComplete.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */; }; + 56E1ED31F7CE38978F4A7CA0 /* LexProps.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DE0102314288305D830B9EFE /* LexProps.cxx */; }; + 9A63148F193E33B5964DD02B /* uilocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */; }; + 383A6993E90936D39A5F12BD /* headerctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */; }; + 14F303FD6B5F383DADDFD78A /* xh_dataview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 616466F521DB3ECAB304289F /* xh_dataview.cpp */; }; + 14D6D5F8F5ED3C71936DD2B0 /* button.mm in Sources */ = {isa = PBXBuildFile; fileRef = C06FED83BF933DF98C2466AE /* button.mm */; }; + 5F78DB0417BF3CE1B4E35C80 /* stackwalk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA2520F427493A22A70A5C09 /* stackwalk.cpp */; }; + 0C2CBD7246993527A829BD95 /* LexDataflex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */; }; + 830A61EA04FD367C9EB6A758 /* fswatcher_fsevents.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */; }; + A2473402D8B83628B1F6674A /* wxprintf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 607EF0043E723B7B9BE101EA /* wxprintf.cpp */; }; + 6138BCBC8E4438FA91E0EFA1 /* xh_chckb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */; }; + 5388468A6F8F3141B25CD401 /* treebkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7925E38823563BCDB5565DCF /* treebkg.cpp */; }; + F70156C3E68B38FCB72FE255 /* dirdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */; }; + 64A716F87A5136F9A790EC5B /* webview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DA80913C0E33144A42BD30F /* webview.cpp */; }; + 750C716389AD3ADBABC9D689 /* statbmp_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */; }; + 5792675690843C6AA4125A74 /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77F5E7BCD9B2307D8DBCC052 /* font.cpp */; }; + 3ACCC2EB8E973C11835EB598 /* bmpbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */; }; + 0948599C4FD53611A09B52AC /* jfdctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 93D07403FCA530D7A9FD2917 /* jfdctflt.c */; }; + 6C80B6049A523836BCD20BCC /* WordList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0E7BF9256DF533EBAE2B945E /* WordList.cxx */; }; + 895E7FE46F733C75AE8847E5 /* DBCS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CDF592CBE5193497A26EF978 /* DBCS.cxx */; }; + 67EBCE5FA5FF36349ADF0918 /* jdapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */; }; + DB9565CC4EAE3BCB9F490622 /* xmltok.c in Sources */ = {isa = PBXBuildFile; fileRef = 8685B8ED68F23DB0B770FD74 /* xmltok.c */; }; + 02E8F1195B653D26AAA89464 /* listbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */; }; + A4DEBFA074C93388A1BBCB40 /* pcre2_substitute.c in Sources */ = {isa = PBXBuildFile; fileRef = FAC42945539F362D91D6F559 /* pcre2_substitute.c */; }; + 4DD98A9436C83CF3B9425A78 /* sysopt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */; }; + 87C67583D36C3465ACD64105 /* vlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA90128E29A03CCCA30F4D35 /* vlbox.cpp */; }; + EBF2D44758003221A22202BD /* colourcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D61240ABD70328BA5789663 /* colourcmn.cpp */; }; + 2FAE979E6FE23D088C768B7E /* gridcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */; }; + 849B89D1F6AB3DDEAA2D53AF /* xh_styledtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */; }; + 94B1C88076793400810FAC31 /* png.c in Sources */ = {isa = PBXBuildFile; fileRef = AF26BAB1F4733114926F1724 /* png.c */; }; + 3316A16628B03D5E88529EA8 /* datetimectrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = A0A63980677D371C85A60B75 /* datetimectrl.mm */; }; + 4BAFAE70A6B1313B96D86631 /* page.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59ED0C057D8F388A89DC7177 /* page.cpp */; }; + BCDAE378D03E37F5994FB9C6 /* XPM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C25521AF59B9324EB2809C73 /* XPM.cxx */; }; + 0D79F1B4EF44393AA3242140 /* LexPLM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */; }; + DE43350F6C9D3148A64F0AF9 /* art_internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C4649974D8B3A109D1BF145 /* art_internal.cpp */; }; + CA155860CE9A3A8189C3A4C3 /* zipstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */; }; + BAFF04F1680F32DA988EB03E /* stockitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B180290089B139F18B0C7BBA /* stockitem.cpp */; }; + 2D4D105CA9BE3FA6995A6000 /* tif_dumpmode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */; }; + C1CDD035AA393ACC9E202C04 /* minifram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693F731B7D1730A79485F9EC /* minifram.cpp */; }; + E7921B0472B63E4091F4F518 /* xh_collpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */; }; + 37749AC3468836FC857BD0D6 /* checklstcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */; }; + 59F995B6E6EE3CA5A4487845 /* glcanvas.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35007225BB683683AA7C5E48 /* glcanvas.mm */; }; + 096BA201623034AD97218368 /* tif_version.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E6F40F4740C3ED29D83E107 /* tif_version.c */; }; + F1F484DD591337399FCD0463 /* display.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5617D10CB7136EC9A4194EF /* display.cpp */; }; + A2769D1659AE3CA3B58C2CB0 /* wincmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */; }; + 27E73CA5C35A30CE89946ECB /* slider_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D215A0D67563350CB4EECB06 /* slider_osx.cpp */; }; + 7DC4A542372437ECA0790F88 /* art_msw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B540E18F9C91381CA175BABB /* art_msw.cpp */; }; + 8AB7191F7CB838FC8337C48E /* xh_statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FADE850169F7347F83FE1499 /* xh_statbar.cpp */; }; + 9CA687845B3F30CCA44A89D1 /* choicbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */; }; + E49F0D43B5A63EF1A57A7114 /* fswatcherg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */; }; + 49260580A7F23B569A827D41 /* filefn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58421C141C9E31C6A7A3C183 /* filefn.cpp */; }; 0C3F48DBD05E3566A4CA6D46 /* LexAsm.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A65399C8A6D636139E362119 /* LexAsm.cxx */; }; - C5C60B22CE6A3BCB868F69EA /* pcre2_find_bracket.c in Sources */ = {isa = PBXBuildFile; fileRef = 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */; }; - 22C76BF2C3E331CD87657E70 /* LexNsis.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1BC0322549563787A21CE8F1 /* LexNsis.cxx */; }; + A08165E5D38E3EF6962A7AEB /* DefaultLexer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */; }; + 702616D38A5B345D9CC87114 /* xh_bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3116006345D833509865FF7F /* xh_bannerwindow.cpp */; }; + 745C39E90E8C3C08A887B51E /* msgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */; }; + E6D18B2EDE353F67883085A0 /* odcombocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F23140777B733679D2FAAFC /* odcombocmn.cpp */; }; + 1710A4BB0E6339558A187F8F /* xmlres.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 087B66573CD33DA99DA82B1C /* xmlres.cpp */; }; + 5F2C2A46781739D897CF293F /* xh_chckl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */; }; + D088E7DDE38C31DC9C9B3418 /* dcclient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17772732159304AA7312D72 /* dcclient.cpp */; }; + BE3ED6EF34303867B8C8E924 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = D4C4495603293C07A3B09D54 /* compress.c */; }; + FD3B31CE1E7832218B5D9A15 /* LexPO.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3430B6483E35C3A201BF44 /* LexPO.cxx */; }; + D948CC99521633338B24E2F7 /* LexHollywood.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */; }; + 07412469921A3E488A2F9BA8 /* checklst_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */; }; + 702616D38A5B345D9CC87115 /* xh_bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3116006345D833509865FF7F /* xh_bannerwindow.cpp */; }; + A52A7D2FEB1434E29C64582E /* RESearch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E145FC31ED523B4AA5080A61 /* RESearch.cxx */; }; + F4C0CEADEDC23610BF6983D8 /* artmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0665A40F3FC3F218074C63C /* artmac.cpp */; }; + 8B9C9FCB954F3596A4CED9A7 /* jdapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 86884BC843F6337EABF744BB /* jdapimin.c */; }; + 1EA81A0E8E5A3B38B4D80339 /* srchcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF103B09F02315282EC8F44 /* srchcmn.cpp */; }; + 6167245C417A32179EC37D2E /* textfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0903EE9B3793303285FF96E3 /* textfile.cpp */; }; + 8C6E2BD9C31A3AE18AD17D45 /* pcre2_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */; }; + AC07BA4EA5403443914DFDB2 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7013DB195D023C31ADE68546 /* crc32.c */; }; + F2813BF297C73A3ABD02EC99 /* glcanvas_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */; }; + 81B742D64BEB373DB705947C /* m_list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4028ABB08C63AB59F5F240B /* m_list.cpp */; }; + 93E04642049537EB8A37BA28 /* htmlwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */; }; + 702616D38A5B345D9CC87116 /* xh_bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3116006345D833509865FF7F /* xh_bannerwindow.cpp */; }; + D070C3BE95483FE38BABA1C0 /* region.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00DA3D3EEF5E305CA73A1871 /* region.cpp */; }; + 1DE75213D296323B815A02BF /* statline.mm in Sources */ = {isa = PBXBuildFile; fileRef = 743EF8DB16CE371DA5C66623 /* statline.mm */; }; + 0836590D35FE37988DE70443 /* combobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */; }; + EA10DA3199813E90B39C70D4 /* xh_infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45C65E309F3A39598C043657 /* xh_infobar.cpp */; }; + A1A7B833061C35B4AABD093D /* preferencesg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */; }; + 2CAD4DF9505F36E4A2EAD53D /* helpdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C466F32CCBD13DBC87285B3D /* helpdata.cpp */; }; + 5DA146A9F7653F53BF5299E8 /* spinbutt.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C4A7A93CAFC3E22A2A5F7F3 /* spinbutt.mm */; }; + 2102C23970FB3F22AB46A59C /* LexTADS3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A284E855892F3A9E9E19E854 /* LexTADS3.cxx */; }; + 60296753A32B39EB8BD0CB46 /* pcre2_study.c in Sources */ = {isa = PBXBuildFile; fileRef = 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */; }; + EAA469E1A0CC33E4A21A3F7B /* gaugecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */; }; + 8DE45CEAF2DD3C22AA019F76 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CF73F49AEC238C99CE89845 /* deflate.c */; }; + CFF73578F04D357E83D1D832 /* lboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */; }; + 0730A107A2B935A9923C8EF3 /* filehistorycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7B3307E56B332769901E99F /* filehistorycmn.cpp */; }; + D5A25AC579F436509805335B /* appbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95A156A823B536DE8476E4F9 /* appbase.cpp */; }; + F0D892C2618130FEAD46BB87 /* panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00969CBE3B8F32C78C195619 /* panel.cpp */; }; + 2CCC30C0162131DBBE9D8028 /* dobjcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */; }; + BFA6983551B4310DA7C8A406 /* jcdctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DBF3053414F3C448312165A /* jcdctmgr.c */; }; + 830A61EA04FD367C9EB6A759 /* fswatcher_fsevents.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */; }; + 46E331300D8F349DB36AB50B /* imagpnm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC12B97F233B3B9494DA217F /* imagpnm.cpp */; }; + 57B41B6BACFB3906ACD1BFB1 /* pcre2_jit_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */; }; + A0BA01A85C303C78A3130713 /* art_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */; }; + 8B38C6C416BA3A51B37F60C5 /* statlinecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */; }; + F84D59648206349A9768157D /* msgdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */; }; + BDB8EF0E0DA03693BFB77EF9 /* accesscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8555204EBA8930809B732842 /* accesscmn.cpp */; }; + 9FD99E06F6613A1A958FAF6D /* jdmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */; }; + DEB35F871F8E3B90AD207AEF /* printps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF76670146413EEFA005206A /* printps.cpp */; }; + 7181709A030D3749AB355B76 /* xh_radbx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F43AF44465B335479752116D /* xh_radbx.cpp */; }; + FE2DBCCC1D0B36A3BE4493C1 /* fs_arc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88F2BA2F0598342186A484B5 /* fs_arc.cpp */; }; + AD7EEB418C7930CB828EAF88 /* dynlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D272910EC35531E5B4D6E05B /* dynlib.cpp */; }; + 912C69ADB1673ACEB0E6CF08 /* tif_strip.c in Sources */ = {isa = PBXBuildFile; fileRef = B83EDE2D1731311ABDE62F9F /* tif_strip.c */; }; + 2C95DFA8EE463487956B4EB6 /* infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */; }; + CEBAAB0C77983358A601BFFF /* jdmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = ED19EF377E653F71B1876259 /* jdmaster.c */; }; + 9744994E8A813AA6938A7CE2 /* textcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */; }; + 815AE3FED68330F4933AA171 /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = C94DC3402FAE3C4FA776DEEA /* window.mm */; }; + C32EF2EC1A103BC3A6254321 /* xh_spin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950D51915EF83B57B5E8306F /* xh_spin.cpp */; }; + 8F949B9010863F66A58FFEF1 /* xh_activityindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */; }; + 4DD98A9436C83CF3B9425A79 /* sysopt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */; }; + 522E6CF2A62F34259BCE2DE4 /* tif_flush.c in Sources */ = {isa = PBXBuildFile; fileRef = 305614D19CF23CB2B14A5B2E /* tif_flush.c */; }; + F5D2146C94E733FAAB6D286C /* threadpsx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB466912FDA23F8B87A00A3C /* threadpsx.cpp */; }; + 07158EBC05A637ECA9DC7B50 /* utilscocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */; }; + F1E4D7CA634E33808AE3B523 /* fontenumcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 373242CD08F330208A7CF438 /* fontenumcmn.cpp */; }; + F1E4D7CA634E33808AE3B524 /* fontenumcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 373242CD08F330208A7CF438 /* fontenumcmn.cpp */; }; + D9DCBE799DB634C2A73FD6BF /* statboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73954EB5397301F87881646 /* statboxcmn.cpp */; }; + 664A54F914443110B7BB6929 /* tglbtn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */; }; 2989056891153968B372EA15 /* pngwutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 45D7558DF5E03A2EB41883F0 /* pngwutil.c */; }; - E6D18B2EDE353F67883085A1 /* odcombocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F23140777B733679D2FAAFC /* odcombocmn.cpp */; }; - 403FBA20CEFE3EAFB4E6B907 /* dir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7332A03D93D3DABB050615D /* dir.cpp */; }; - 33ED014A7FF7398794E6E4D1 /* xh_split.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */; }; - 750C716389AD3ADBABC9D68A /* statbmp_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */; }; - 64A716F87A5136F9A790EC5B /* webview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DA80913C0E33144A42BD30F /* webview.cpp */; }; - 296692A7A3783E3A83D005C8 /* brush.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 302A13BC64C238A297F4399F /* brush.cpp */; }; - BB12132A86E2350AA47414CE /* arm_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 933D7637CAA43F6C99814BC5 /* arm_init.c */; }; - EE0EA850822E35F596B5EBBB /* artprov.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29387393C07C39DB8FF1663B /* artprov.cpp */; }; - 4040AE89BF9F34668091064C /* dragimgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A67053D16D63C588E555C84 /* dragimgg.cpp */; }; - 51F44CB1D9AD3CBDB52EE93F /* LexDiff.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */; }; - 68C300D096BF39239876D044 /* utils_base.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2ED0C0702D2734D9B08FC31D /* utils_base.mm */; }; - 42ED9BAFD6E936849F1D36CD /* xtixml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4048A3523EC03409BD899BEF /* xtixml.cpp */; }; - E8BBC08597EF383597DA0309 /* LexEiffel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 55EBB18CB4773C788510B14B /* LexEiffel.cxx */; }; - BF8C33B7CB3A3ECE814A95FC /* tokenzr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */; }; - 4E712589FAA837F589B72F4E /* LexMaxima.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */; }; - 52C0984A2A4F31BC885519B2 /* xtistrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */; }; - 6E68759BC2E63CA59C12FDC2 /* popupcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D922063B2F2536629EEEAAF0 /* popupcmn.cpp */; }; - B181806CC34839E791E54BF1 /* xh_tglbtn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */; }; - 9A178ED42D96329D8CBF9B8B /* tif_predict.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */; }; - 8A4046BD38873D9CAC9C2B5B /* filesys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F263022F3FEA3F75895B644D /* filesys.cpp */; }; - C1CDD035AA393ACC9E202C05 /* minifram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693F731B7D1730A79485F9EC /* minifram.cpp */; }; - 26BB10834DA1388881BDD1ED /* propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98B72B3A0A73044B85AED60 /* propgrid.cpp */; }; - CF3082BA1ED232F4B904BD16 /* stdpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */; }; - A93D0E6F0871368EA8FC9FFA /* fswatchercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */; }; - CA4DCD57060B38CC8B2283D9 /* filtfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */; }; - A3A898DA3114311EB7F02229 /* sckstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D784A32C094730FEAA391A9B /* sckstrm.cpp */; }; - 652CFDD9A1C1366E99B5D6BE /* socketiohandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */; }; - BBAABF3C693E37D3B0FF2504 /* colrdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */; }; - 3DE2CD678CEB39C2B1E09ACC /* power.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60DFD5962DE3379F801AF78F /* power.mm */; }; - 324B2BAC54553D45B3C56BFF /* LexOScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */; }; - D3FB75C8E3A73AE38EE8A6F7 /* selectdispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */; }; - 1A4F9F18BBEB3515AC7C7CC8 /* LexMetapost.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */; }; - 65AD3B31319C35F1AC9EC626 /* anybutton.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4020D790AE7363CB29F1C2F /* anybutton.mm */; }; - D51B3389209E370489078893 /* tif_dirread.c in Sources */ = {isa = PBXBuildFile; fileRef = F6EA240B3DB93D398A990FAD /* tif_dirread.c */; }; - 2020EE3C45743B53BE8C7F3A /* LexCoffeeScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */; }; - 8AA341CCFB8E3F6AB3523597 /* splash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F8836E29C5A370E80CE070E /* splash.cpp */; }; - B8A98F209934399DA45C2388 /* fs_data.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */; }; - 26E4813A97DE323E88119165 /* xh_choicbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */; }; - 2F50DBC14FE538A49823925B /* calctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 496674699F173A5385EAFF07 /* calctrlg.cpp */; }; - CB078622E90F33BE9D131135 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28825 /* buttonbar.cpp */; }; - D997FFC948B73FDA892DB533 /* jdsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCF47A161B3E08B19BFE14 /* jdsample.c */; }; - 6C822F7F313734DCB51F44BB /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81A30C745CA73E30B788B408 /* image.cpp */; }; - 25656617A56D342AA3D1BFE4 /* ctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */; }; - 81244C52741332A8B92E5977 /* LexRaku.cxx in Sources */ = {isa = PBXBuildFile; fileRef = ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */; }; - 603DF49D176737D383CE4F02 /* choice.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F838F853CB03CF7932C08C3 /* choice.mm */; }; - BE99A85EE76236CC8C719A65 /* xh_gauge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */; }; - D72D99FC424337CF9EDC2044 /* props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C20E46A504113C899B9DD9B7 /* props.cpp */; }; - 4E396D8D2E9138D797F320C7 /* tif_aux.c in Sources */ = {isa = PBXBuildFile; fileRef = D0CDADAF2D893E32A38351E4 /* tif_aux.c */; }; - C92005CB86C6361BBB9D7C68 /* LexBibTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0851C46057CE3C37991B9E34 /* LexBibTeX.cxx */; }; - C92005CB86C6361BBB9D7C69 /* LexBibTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0851C46057CE3C37991B9E34 /* LexBibTeX.cxx */; }; - 9744994E8A813AA6938A7CE4 /* textcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */; }; - 1D7442C82B343F50A83B25B2 /* CharClassify.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */; }; - 2E059BFE8E3B3D9299D5596B /* textmeasure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B31409EC6532FC83B0B957 /* textmeasure.cpp */; }; - 6E2C2E8AA1713ADE9C33837B /* tif_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 726C0457DF1232C793918DC1 /* tif_zip.c */; }; - 3C0EB1DDA5243E31B2D92CE4 /* jquant2.c in Sources */ = {isa = PBXBuildFile; fileRef = 02D9332D5C5632E981936E29 /* jquant2.c */; }; - 22E90F33B5C9308EBF37A701 /* printdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9E32802E8ED3E729FF34CFC /* printdlg.mm */; }; - B60AD651E0523DB7B31E4108 /* LexillaAccess.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8052B1625907355894CCF263 /* LexillaAccess.cxx */; }; - 27759C2FBB0E35FDA847B2B7 /* LexForth.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B181F564935730E89AB00D92 /* LexForth.cxx */; }; - C8F1FB8C029031A5909DBC57 /* KeyMap.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */; }; - 72AD4417FF7C3094BB1FF62E /* xh_grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93B77251C0E0382D9A8E113D /* xh_grid.cpp */; }; - 2F7328AC75393951B08F75F3 /* pcre2_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 25E03E349FC13E4A9428B94E /* pcre2_error.c */; }; - EE6474BBB4AF34D093E2451F /* MarginView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F951601E73683F27AD8CA99D /* MarginView.cxx */; }; - B0FD1B96EAE635AFBFCF2C95 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C044 /* secretstore.cpp */; }; - 221DC4F6678A3EC5ACDDEA51 /* statbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */; }; - 1AF2B2346C9639DAA4D15F32 /* numdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */; }; + 8D6B0D48EA843E48AB0FE43F /* LexErrorList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2851EAAEE9B73FE8981912C9 /* LexErrorList.cxx */; }; + 91BDA5B04CF33C9AB7358B8C /* timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69F098E47EBF34368ABAE7ED /* timer.cpp */; }; + 4CFB7E6E5BD53E2BB39BEF64 /* m_style.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EB95BCFA255323183A996C9 /* m_style.cpp */; }; + 6C7C1CC506CB329FB2D086A9 /* LexBasic.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B6AADC1056E03A3B80C20C5B /* LexBasic.cxx */; }; DF861EBD9C483E79ADF98603 /* CharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */; }; - 81244C52741332A8B92E5978 /* LexRaku.cxx in Sources */ = {isa = PBXBuildFile; fileRef = ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */; }; - FE5285579C7F39C48FC66B11 /* hash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 888BD97139C936679691FF34 /* hash.cpp */; }; - 47EBBB18BDB539C2A948C713 /* chm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E24C6F2A04E30EB95598305 /* chm.cpp */; }; - 2F50DBC14FE538A49823925C /* calctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 496674699F173A5385EAFF07 /* calctrlg.cpp */; }; - 19D823E564D932758EA6F8D2 /* UniConversion.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */; }; - 096BA201623034AD9721836A /* tif_version.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E6F40F4740C3ED29D83E107 /* tif_version.c */; }; - 39D6435B10073B85A499AFDA /* dcbufcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBC5A5797B0D369291A76D6E /* dcbufcmn.cpp */; }; - DDC71B80D562303690FDBE4E /* appcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F01DDE448E4C3983ACCE67FD /* appcmn.cpp */; }; - EA10DA3199813E90B39C70D4 /* xh_infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45C65E309F3A39598C043657 /* xh_infobar.cpp */; }; - AE95E3BDEDB7358DBE9E7E5B /* webview_chromium.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2718D06670953933B897B0D8 /* webview_chromium.cpp */; }; - FE5285579C7F39C48FC66B12 /* hash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 888BD97139C936679691FF34 /* hash.cpp */; }; - DF861EBD9C483E79ADF98604 /* CharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */; }; - 49BEDFBC3661339D90EF6935 /* LexTCL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */; }; + E0FAB345D2933D42B62917A4 /* bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36296C259D023EAAA240FC79 /* bannerwindow.cpp */; }; + E7921B0472B63E4091F4F519 /* xh_collpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */; }; + 0F2FD12272023C869CE8600A /* filter_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */; }; + 56E1ED31F7CE38978F4A7CA1 /* LexProps.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DE0102314288305D830B9EFE /* LexProps.cxx */; }; + AAC2CB4D851230008AE4ABA3 /* dcscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */; }; + 633DD2E870263F42A8DBF9BF /* markuptext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */; }; + 056E30EA43753A7CB1AF8C9F /* strvararg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EEAD9C3E180305D8899441E /* strvararg.cpp */; }; + C32EF2EC1A103BC3A6254322 /* xh_spin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950D51915EF83B57B5E8306F /* xh_spin.cpp */; }; + 20F10669703137E68318C6FE /* cmndata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */; }; + 221DC4F6678A3EC5ACDDEA51 /* statbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */; }; + 249C9177B1A33EFEAB30F940 /* tipwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */; }; + 539B586AEAD630A79FC12ED0 /* sstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46EC1508C063C8395CE7A95 /* sstream.cpp */; }; + 3813146434693234965C4F33 /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D6B0D32537D35069C7E053F /* inftrees.c */; }; + 37715483D08335B790FFE059 /* filectrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */; }; + 527054445A0D3A00A5C2EC45 /* tif_thunder.c in Sources */ = {isa = PBXBuildFile; fileRef = 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */; }; + 15048519756B33959B15B162 /* floatpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A881F49ADCF33C299B041584 /* floatpane.cpp */; }; + 25B0940CABAB39CD90C6F3C6 /* intel_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 994AF74DF2A13FF09A215853 /* intel_init.c */; }; + EB206A0264AD3CAA9F68B8FD /* pcre2_convert.c in Sources */ = {isa = PBXBuildFile; fileRef = BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */; }; + E39021D3CDCD33BAA646B008 /* sckaddr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8238DA30FF3FB984511250 /* sckaddr.cpp */; }; + D6B2A64A78AF3F2983B441A9 /* ownerdrwcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */; }; + C2B07E2ECDDC3833BDC9B28D /* arcall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75D0C937F2A03ADA8581A2BB /* arcall.cpp */; }; + DE43350F6C9D3148A64F0AFA /* art_internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C4649974D8B3A109D1BF145 /* art_internal.cpp */; }; + C3C19BD343B235F9909D495B /* xh_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C55AF552EE6931E8BFF7281B /* xh_aui.cpp */; }; + 6F5A0D3C7763334396A3783E /* LexCmake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */; }; + 36EB5D19429D3BD1A01001D7 /* framemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26632A254717372BAA4D514D /* framemanager.cpp */; }; + 4D9368BD07F131C493232E2E /* LexIndent.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41AE72D4E8FF307F86A02F5F /* LexIndent.cxx */; }; + 7A7439BE66AA3771B4A8904A /* regex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB46BC22F6B23909A938C561 /* regex.cpp */; }; + 99E7A46106C03484BA70D29F /* tif_unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D2F8259CC99380CB8217DEF /* tif_unix.c */; }; + 6C1171E3FB7137CCB9E3F537 /* tif_zstd.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B98123FD57731139044B064 /* tif_zstd.c */; }; + B0C44C3054CB3E0590DDCBDB /* LexJSON.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */; }; + 1AB50C98FF473B33A3CA4D3A /* xh_cmdlinkbn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */; }; + 6A10511265493FA2BB79CE4E /* propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC93D1DE277395592610085 /* propdlg.cpp */; }; + 2A7640E4210334AC93366902 /* winpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FCA75FE592C3469AE351FBF /* winpars.cpp */; }; + E92EB502F79638B0BE569EF5 /* CallTip.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */; }; + 14DEBD7C01FC358B917FDAF3 /* aboutdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 207F0F88390138B6B41183EB /* aboutdlg.mm */; }; + B640A8A74D973A8FBEF63918 /* LexConf.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 04082EC1C91334379425802D /* LexConf.cxx */; }; + A4DEBFA074C93388A1BBCB41 /* pcre2_substitute.c in Sources */ = {isa = PBXBuildFile; fileRef = FAC42945539F362D91D6F559 /* pcre2_substitute.c */; }; + B0E94A59C83637C09FAAE71D /* app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 757B31FCCA1F381C95B30DF8 /* app.cpp */; }; + 955D2199F1893D37BA2D747A /* laywin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3784C240C2F330683494926 /* laywin.cpp */; }; + 22AE900003F73134BBEE8BB8 /* dirctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */; }; + AEB9099819B33F4A8AAB9F55 /* radiocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */; }; + EA10DA3199813E90B39C70D5 /* xh_infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45C65E309F3A39598C043657 /* xh_infobar.cpp */; }; + F43DAE2E829A3A7493531382 /* richtextimagedlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */; }; + F80C2290D67B345F9CF60086 /* dpycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A37E3D1FB4FB31AFAE88665A /* dpycmn.cpp */; }; + E104017EE1A4357DAF84E1E7 /* auibook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A298576700C33F018616E7BD /* auibook.cpp */; }; + 17F0494F87533196904F5315 /* xh_toolbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */; }; + 8292D346BFC33D6E8D3CDDC0 /* xh_sttxt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */; }; + 1EE845DDFDDE36CA8A218207 /* tif_close.c in Sources */ = {isa = PBXBuildFile; fileRef = F82278F9AF0432529891E6D7 /* tif_close.c */; }; + 5417332FE2DB3CD3A647B15F /* cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF1F491B8A8376E8E2E8182 /* cursor.cpp */; }; + 26649553E4763EE6BA268B7E /* xh_gdctl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */; }; + AEEE6BC41B6531898A61CB17 /* LexHTML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D87406BCF3E833369E12D89A /* LexHTML.cxx */; }; + 750C716389AD3ADBABC9D68A /* statbmp_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */; }; + 912C69ADB1673ACEB0E6CF09 /* tif_strip.c in Sources */ = {isa = PBXBuildFile; fileRef = B83EDE2D1731311ABDE62F9F /* tif_strip.c */; }; + E7AF3BF2B3473AD9BE66D1A2 /* xh_clrpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */; }; + 8292D346BFC33D6E8D3CDDC1 /* xh_sttxt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */; }; + 57AE7FCF768F3965BD39B47C /* m_span.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 727F25F832AD32D4B12D8E39 /* m_span.cpp */; }; + FD3CC5F0AA41384B9388A1E2 /* htmlfilt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C6C4F5468743265A02D656C /* htmlfilt.cpp */; }; + B37802B0A90133C68EF93DDB /* LexInno.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */; }; + 4CF9BA40653C3153805D88AC /* arcfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C513377E9E303F778BA9D7ED /* arcfind.cpp */; }; + 5FE969523BDB3353AEF96811 /* xh_filepicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */; }; + 5C3B0ED2EA973DFDBFBCC693 /* richtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */; }; + 4E712589FAA837F589B72F4E /* LexMaxima.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */; }; + AE5286C71D1130EAA368A1C6 /* radiobtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 724927B0045F3CC0884878BB /* radiobtncmn.cpp */; }; + B37802B0A90133C68EF93DDC /* LexInno.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */; }; + AB58406CEBA13BC4A2A83B67 /* printmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */; }; + 1142E2D85FD93E9AB5D8A55A /* pcre2_script_run.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F4CDF9048EC36788619769D /* pcre2_script_run.c */; }; + 9B3F9D04FB533D99B58BD51B /* jfdctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */; }; + B6C364CB4AE33708A862B4B6 /* srchctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D46A36564C78312CAC538E93 /* srchctlg.cpp */; }; + 24A5A71C79733E9CB913C5B8 /* LexPB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8744F2C80ECF375999195935 /* LexPB.cxx */; }; + 60706F8836A130A2AF282FE2 /* fontutilcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E00E14795F23A8392713A26 /* fontutilcmn.cpp */; }; + AC0B0C52922B30188AE95E95 /* tabart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51054B41BFD83E97BAF76D07 /* tabart.cpp */; }; + 61FEDBF2D47A3B4E861F8299 /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F4 /* sound.cpp */; }; + 58AABAD40AA236438347DDDF /* evtloop.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D2549709E0133C9A267E3A5 /* evtloop.mm */; }; + D9EE059D3C3C3C13AE4419F3 /* stattextcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54BD19211DBD388AA0DEC7A1 /* stattextcmn.cpp */; }; + 6F8129E317EE3486A89D8549 /* LexSpecman.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */; }; + C5E5AB869065307F83E27DD3 /* htmlpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */; }; + 438EAEA4B30C325C827F6199 /* xh_fontpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */; }; + 13854E7822783719A2530794 /* jddctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5BBC1E494D33D028CA547FF /* jddctmgr.c */; }; + 55F01295F1D23805BCA12F15 /* srchctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14EF4B028AD63B4A885D29A1 /* srchctrl.mm */; }; + 444D3B969B4336E8AD5CCFC0 /* LexStata.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B61D36546E97371FAC5D4565 /* LexStata.cxx */; }; + 3316A16628B03D5E88529EA9 /* datetimectrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = A0A63980677D371C85A60B75 /* datetimectrl.mm */; }; + 6E68759BC2E63CA59C12FDC2 /* popupcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D922063B2F2536629EEEAAF0 /* popupcmn.cpp */; }; + 3CDE2B6BF88D326189F069BD /* accelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A436B55DC44E3827A757A6D8 /* accelcmn.cpp */; }; + C1CDD035AA393ACC9E202C05 /* minifram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693F731B7D1730A79485F9EC /* minifram.cpp */; }; + 6978D7A20DA93A329DDD1384 /* socket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40CE02524DD4385AB2C3DF95 /* socket.cpp */; }; + 319FB8E64CE731D6A58AD303 /* clntdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C904B4BA8273355869812B2 /* clntdata.cpp */; }; + 61FD5E0E28F732E8AB1729FA /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6AB648BC5173104A96CAE66 /* xml.cpp */; }; + 784F7C50882F320FA76537B6 /* LexAU3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C76222F466E831F896A89269 /* LexAU3.cxx */; }; + D36E76A4CAF5352D9397E201 /* fdiodispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */; }; + D00AF125FCB63A7A8F9B87DF /* taskbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4692909E4B823F71822B13F8 /* taskbarcmn.cpp */; }; + FD3B31CE1E7832218B5D9A16 /* LexPO.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3430B6483E35C3A201BF44 /* LexPO.cxx */; }; + 8620088DDD233B139B250DD6 /* filter_sse2_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */; }; + E4B826CE70283D999CB591F5 /* listbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B99CA41708513A599AE275A2 /* listbox_osx.cpp */; }; + E46BEC5C8D643BD099AF1D57 /* LexSTTXT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 50859F0155753FDCB8C5222A /* LexSTTXT.cxx */; }; + 5303FA25D0773FAEB963D8E4 /* scrolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = CC2E24773D853A77B9FEFA4C /* scrolbar.mm */; }; + 4CFB7E6E5BD53E2BB39BEF65 /* m_style.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EB95BCFA255323183A996C9 /* m_style.cpp */; }; + 8FB5FBC5730C33F1A3D85DA0 /* LexD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */; }; + A9B91FC69E473BE18895ABAC /* InList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCBD877191233EE9984112D2 /* InList.cxx */; }; + 94E510619F433AE3AC884756 /* xh_bmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */; }; + 1E166FC1A7B3371FB038B173 /* fldlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */; }; + 8AB7191F7CB838FC8337C48F /* xh_statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FADE850169F7347F83FE1499 /* xh_statbar.cpp */; }; + 807450BB072C3C0D9C52A3B8 /* LexGDScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E29A8279BAEE303B95C9D3C6 /* LexGDScript.cxx */; }; + 4C31B77B28343F20B4973368 /* LexJulia.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */; }; + AE95E3BDEDB7358DBE9E7E5A /* webview_chromium.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2718D06670953933B897B0D8 /* webview_chromium.cpp */; }; + A39B0D7EB43137F7BA50A35E /* xh_simplebook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */; }; + 0B98B6721DEE37A1ADEA382C /* quantize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B890199A37723EFD86C0ADA5 /* quantize.cpp */; }; + 4269B85FDC5639BEB76A8AEC /* nonownedwnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */; }; + 66584BC871303041BA622DE1 /* m_fonts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1F3C70512D93501B0478F3E /* m_fonts.cpp */; }; + 37715483D08335B790FFE05A /* filectrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */; }; + 89200B144075388BA69A07E4 /* xh_timectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25A81E9028793C109D868068 /* xh_timectrl.cpp */; }; + 743BB23211B336A6A0F26E59 /* jcapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = F83172EE2DAE352FB969D4F2 /* jcapistd.c */; }; + FCE5B139CBE73FCB804EF7DF /* jcomapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EB76F786D7F3FF286948D22 /* jcomapi.c */; }; + 7ECC6EE6D5273F75BB6B7B75 /* tif_dirinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 032A38738B58394E8617617B /* tif_dirinfo.c */; }; + 19D823E564D932758EA6F8D3 /* UniConversion.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */; }; + 58AABAD40AA236438347DDE0 /* evtloop.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D2549709E0133C9A267E3A5 /* evtloop.mm */; }; + 383A6993E90936D39A5F12BE /* headerctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */; }; + 6B9EEA3CF2E536E3B1ADAC43 /* manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBED392D081335FA80523244 /* manager.cpp */; }; + BAAB6B1D80A33843A8436B12 /* appunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */; }; + F2813BF297C73A3ABD02EC9A /* glcanvas_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */; }; + A9A5973552EE30838306D15E /* tif_packbits.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CE73979D0933A43830307E4 /* tif_packbits.c */; }; + 131B879180AE3FB481F81CCA /* fs_mem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A305CEC03B3085B159B617 /* fs_mem.cpp */; }; 283C3ABE42433244983C27C3 /* stattext_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CF5C09D9A1230EEB42713E1 /* stattext_osx.cpp */; }; - 2D60F289103837EA8925E3F2 /* dcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1EE17722EA937E88A7F0C01 /* dcbase.cpp */; }; - 7E6C627A325F32FFB2EF9B9F /* caret.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A82EDCFFBAC30098B238957 /* caret.cpp */; }; - CA5BD8ABDBA13641BBE7CD68 /* jccoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = E89AC104BF4F33A083F8B382 /* jccoefct.c */; }; - E0FAB345D2933D42B62917A5 /* bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36296C259D023EAAA240FC79 /* bannerwindow.cpp */; }; - 0C2CBD7246993527A829BD96 /* LexDataflex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */; }; + 8EE5A2467401365C8217AF31 /* preferences.mm in Sources */ = {isa = PBXBuildFile; fileRef = 835C22B71A0F3C469310E1E0 /* preferences.mm */; }; + 825EAD51920B387DB4F8C428 /* LexAsn1.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A46D50BEBF523B3F88831086 /* LexAsn1.cxx */; }; + CEBAAB0C77983358A601C000 /* jdmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = ED19EF377E653F71B1876259 /* jdmaster.c */; }; + 31380AD4F5BD38A6B9212FE1 /* LexR.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7255468B6D5F3D8697994A53 /* LexR.cxx */; }; + 353B584AD0C03919A57A304A /* affinematrix2d.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD09A813E10A31C19554B425 /* affinematrix2d.cpp */; }; + 9FB1E1763EFA334CA0C07C4B /* tarstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */; }; F6A1AC5CF84E32C19F91A615 /* statbrma.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1F2E9C9052D3E53BBD17DE3 /* statbrma.cpp */; }; - 4DA209AEF4AD32AAB97F9719 /* htmlcell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68E5188DB6003C35A8C7754D /* htmlcell.cpp */; }; - AAC2AC9C49F1366D8BD20F60 /* LexECL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1AD9605C9385374C87FAC9BC /* LexECL.cxx */; }; - 0730A107A2B935A9923C8EF3 /* filehistorycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7B3307E56B332769901E99F /* filehistorycmn.cpp */; }; - 980ED1DA2F96361985952255 /* webrequest_urlsession.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */; }; - 633DD2E870263F42A8DBF9C0 /* markuptext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */; }; - 66FD099CE5A338C18329FC38 /* LexAbaqus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CD72950967F33809931D4968 /* LexAbaqus.cxx */; }; - 46A4CCF128FC3EB092074DC7 /* property.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E1F571B01F34D4AB70CA18 /* property.cpp */; }; - 0BB3BF0909A134BA93CF5621 /* xh_richtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */; }; - 219304C9DDA33E9AADB515DE /* datetimectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D049F49C75043592B7E318B3 /* datetimectrl_osx.cpp */; }; - 807450BB072C3C0D9C52A3B7 /* LexGDScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E29A8279BAEE303B95C9D3C6 /* LexGDScript.cxx */; }; - D3EC9191D94837CABFF05DC6 /* LexNim.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B1AA9AF75D233FFC9FC90E7C /* LexNim.cxx */; }; - 3D762A0BBF1B39B88A769634 /* helpwnd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */; }; - F1F484DD591337399FCD0464 /* display.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5617D10CB7136EC9A4194EF /* display.cpp */; }; - 6D723C987BFB39B7B887DCB3 /* Editor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DA5E95D498C53A808A8E2EEB /* Editor.cxx */; }; - 2FAE979E6FE23D088C768B7E /* gridcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */; }; - 8B60964DA1DF3F3DB40BE125 /* datavgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F3D473DC5123EDAB767045C /* datavgen.cpp */; }; - 89046455F49D3D75A21C9DB9 /* imagfill.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 137E01C362E134449BF966ED /* imagfill.cpp */; }; - A4F2426F36653C6D87EC18B0 /* activityindicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5814208070CF3D899F132BA1 /* activityindicator.mm */; }; - A0BA01A85C303C78A3130713 /* art_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */; }; - AC0B0C52922B30188AE95E96 /* tabart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51054B41BFD83E97BAF76D07 /* tabart.cpp */; }; - 7C87CC7641033D91823ED688 /* helpfrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */; }; - 45D88A74B3EE3837B9F79597 /* LexFlagship.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */; }; + A1A7B833061C35B4AABD093E /* preferencesg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */; }; + D66F55C93D1130F488970C07 /* pcre2_match_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */; }; + 86BE5213D3F131D8A686267B /* hid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 160EB9744CB63A0B81DC651F /* hid.cpp */; }; + A1A7D793B034398B8696EF36 /* utils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 789F45D14FF23E248FCFB5FA /* utils.mm */; }; + EC3A1C620D323B5590AABF04 /* module.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DB43FAB1E563B02ACEFF647 /* module.cpp */; }; + 893BDA491EDE3A0E91FADE41 /* nonownedwnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */; }; + CBBD7B32DB7B3E24AE745D79 /* epolldispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */; }; + 81244C52741332A8B92E5978 /* LexRaku.cxx in Sources */ = {isa = PBXBuildFile; fileRef = ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */; }; + A5775D87FD713CBB930A7840 /* bookctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */; }; + C987310872D1396BAF716E5C /* webrequest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA9E372A64B3B808A64B178 /* webrequest.cpp */; }; + 91EA325FCE3A3A6A8D1D21A6 /* srchctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */; }; + 5557AA36FBCC3ED9A5F5751C /* editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D90D14874FD38079835AF0B /* editlbox.cpp */; }; + A569A33A2097316D8110C2C2 /* toolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */; }; + 4F99EB97F65330C28EB4D079 /* datectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95B4B2890C3A372DAB8DC7BA /* datectrl_osx.cpp */; }; + AEB9099819B33F4A8AAB9F56 /* radiocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */; }; + 77BC918AF05C30E8A0BD27FA /* tipdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */; }; + CFDBB80A4C9A3BA092273938 /* animatecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */; }; + 80665EEAE8613DF8A93A7987 /* utilscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4188821BBA833CCAA678B234 /* utilscmn.cpp */; }; + 7EF89F935314301381802FAC /* filectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2334539088B036BEAB230D1C /* filectrlg.cpp */; }; + 4CF9BA40653C3153805D88AD /* arcfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C513377E9E303F778BA9D7ED /* arcfind.cpp */; }; + F22C401903993639AE05A296 /* xh_stbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 147800BBCB80346798B35D75 /* xh_stbox.cpp */; }; + DB73248401573A5996D8E68F /* jcmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 664736BDE465350C9C4750E9 /* jcmarker.c */; }; + 1142E2D85FD93E9AB5D8A55B /* pcre2_script_run.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F4CDF9048EC36788619769D /* pcre2_script_run.c */; }; + 0C485288EA86379D9FD66538 /* cshelp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67DCEEB6861731319C30817F /* cshelp.cpp */; }; + C1E5799141603A75A26BEEA8 /* xpmdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C562D5885AFF3E15837325CE /* xpmdecod.cpp */; }; + 4E396D8D2E9138D797F320C8 /* tif_aux.c in Sources */ = {isa = PBXBuildFile; fileRef = D0CDADAF2D893E32A38351E4 /* tif_aux.c */; }; + 1CD4F67F48CF3A5FA477D86F /* datavcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */; }; 12B1DEF410AB34999AB210DC /* LexBatch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 853C2741D98438DA90B87D90 /* LexBatch.cxx */; }; - 3C5E1A45A57B3169A4C073DB /* LexVerilog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */; }; - CEC6430AEB6E3200BFA75D08 /* jfdctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */; }; - CB46C7E531903700ADFB11CA /* tif_jbig.c in Sources */ = {isa = PBXBuildFile; fileRef = F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */; }; - 0836590D35FE37988DE70444 /* combobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */; }; - 63F0C8EEDF4B3641878A8B4F /* dlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9051902662BE38B3912B34EA /* dlgcmn.cpp */; }; - 16021CFD78623B8CBD08FC21 /* LexVHDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */; }; - D3FB75C8E3A73AE38EE8A6F8 /* selectdispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */; }; - 800CFCEDBB7938338C65EEAE /* notifmsgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B233180893DB3328AF4847DA /* notifmsgcmn.cpp */; }; - 5388468A6F8F3141B25CD401 /* treebkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7925E38823563BCDB5565DCF /* treebkg.cpp */; }; - 88A43B1C5A7438838DE97B96 /* tif_luv.c in Sources */ = {isa = PBXBuildFile; fileRef = 66FDA882451239EA8DF2E0B5 /* tif_luv.c */; }; - 50E89226E8D7390D9D21C80B /* debugrpt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */; }; - 9A83D365AD1F37FA9C7030C4 /* matrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF330EAACFA53877BE289896 /* matrix.cpp */; }; - E53AFF04877D34C386D77381 /* wfstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C37866F41B0C31E295AA7FA6 /* wfstream.cpp */; }; - 3C394FBD47B6310C80577E3D /* LexMMIXAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */; }; - BF2585CFA6853023975F1E7A /* iconbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */; }; + 46A4CCF128FC3EB092074DC6 /* property.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E1F571B01F34D4AB70CA18 /* property.cpp */; }; + 09A792A5129E3FE1BF077641 /* tif_jpeg_12.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */; }; + 369BCCFF61D13A058D837836 /* LexPerl.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */; }; + 784F7C50882F320FA76537B7 /* LexAU3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C76222F466E831F896A89269 /* LexAU3.cxx */; }; + 2F7F5B9BBCD83D90B237A1A1 /* markupparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA7F7633279936EFA0B9C5CF /* markupparser.cpp */; }; + 675B4E6CBA8632E89B4AC26E /* textctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4E16323A43E36DC8024EDF1 /* textctrl.mm */; }; + E882402BEE0330A080A65170 /* strconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FEB8204E530329FA085E5B8 /* strconv.cpp */; }; + D9496139621533328AE727B7 /* pngget.c in Sources */ = {isa = PBXBuildFile; fileRef = 91300EB871CC39ECBC430D48 /* pngget.c */; }; + 444D3B969B4336E8AD5CCFC1 /* LexStata.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B61D36546E97371FAC5D4565 /* LexStata.cxx */; }; + 0ADC8DBEE80D36B0BB9B058C /* LexASY.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A82C367B86F83981803D55DB /* LexASY.cxx */; }; + 6C7C1CC506CB329FB2D086AA /* LexBasic.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B6AADC1056E03A3B80C20C5B /* LexBasic.cxx */; }; 31DD19A942283FA8810B6384 /* numformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BD8DAB407D231EFA5B2CAE5 /* numformatter.cpp */; }; - 633DD2E870263F42A8DBF9C1 /* markuptext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */; }; - DB9565CC4EAE3BCB9F490621 /* xmltok.c in Sources */ = {isa = PBXBuildFile; fileRef = 8685B8ED68F23DB0B770FD74 /* xmltok.c */; }; - AE84BC9A1CCA3ADA9C483952 /* xmlrole.c in Sources */ = {isa = PBXBuildFile; fileRef = 59C6B9849FF6325E890942EF /* xmlrole.c */; }; - 3694B007E88A3D8C8CB952F2 /* LexRegistry.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A737317EDE0F3921B1412966 /* LexRegistry.cxx */; }; - 4E396D8D2E9138D797F320C8 /* tif_aux.c in Sources */ = {isa = PBXBuildFile; fileRef = D0CDADAF2D893E32A38351E4 /* tif_aux.c */; }; - 3C36437B2E933F83984D4320 /* imagtiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */; }; - 86AED49CEAFC3637B1F10538 /* dialog_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */; }; - F5FF98C231B33E3EB7902C65 /* colordlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = DAAED71A534135A9A61612A6 /* colordlgosx.mm */; }; - B6728BCD1A0731299924C8C4 /* pcre2_substring.c in Sources */ = {isa = PBXBuildFile; fileRef = 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */; }; - 0948599C4FD53611A09B52AD /* jfdctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 93D07403FCA530D7A9FD2917 /* jfdctflt.c */; }; - 052331773CF6362C9A6CF390 /* utils_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EED7C691150139EFA35E8EBD /* utils_osx.cpp */; }; - 069D53F2DFBF370A8CC99631 /* LexCSS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */; }; - FBE4DB30865D3177B3A9993C /* xh_animatctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */; }; - CFF73578F04D357E83D1D831 /* lboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */; }; - 2F7F5B9BBCD83D90B237A1A2 /* markupparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA7F7633279936EFA0B9C5CF /* markupparser.cpp */; }; - EB206A0264AD3CAA9F68B8FE /* pcre2_convert.c in Sources */ = {isa = PBXBuildFile; fileRef = BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */; }; - 9FB1E1763EFA334CA0C07C4A /* tarstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */; }; - C3C19BD343B235F9909D495B /* xh_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C55AF552EE6931E8BFF7281B /* xh_aui.cpp */; }; - 73AA68AB9F1236ED9F1FBB30 /* metafile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2BB2949CC0B387AB6879539 /* metafile.cpp */; }; - B6728BCD1A0731299924C8C5 /* pcre2_substring.c in Sources */ = {isa = PBXBuildFile; fileRef = 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */; }; - B6BC23F4F3E43315BD4C7CFA /* mediactrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */; }; - A5775D87FD713CBB930A783F /* bookctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */; }; - 05814571E7A83F5DBFB6E4C7 /* msgout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E968913A9A593B258BD8EACB /* msgout.cpp */; }; - B198DA8239E9358A9D56B98A /* menu_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66C21CA37BF63893887FD91B /* menu_osx.cpp */; }; - 2A79B68D20FE3C9B98A15536 /* menu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D799486AD7F336BB1F33DDC /* menu.mm */; }; - 0C9A379D97B133FA831175A9 /* printdlg_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */; }; - CB078622E90F33BE9D131136 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28825 /* buttonbar.cpp */; }; - D7F14BDFFB7F369B842AFC14 /* pcre2_config.c in Sources */ = {isa = PBXBuildFile; fileRef = FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */; }; - 49BEDFBC3661339D90EF6936 /* LexTCL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */; }; - F3AC352D6DAE3A12A5664768 /* styleparams.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */; }; - 4CF9BA40653C3153805D88AD /* arcfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C513377E9E303F778BA9D7ED /* arcfind.cpp */; }; - 3DE2CD678CEB39C2B1E09ACD /* power.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60DFD5962DE3379F801AF78F /* power.mm */; }; - 15735ED6556130F6A14F0BCF /* ScintillaBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */; }; - F6A1AC5CF84E32C19F91A616 /* statbrma.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1F2E9C9052D3E53BBD17DE3 /* statbrma.cpp */; }; - 86787E4138CC334BB74EC7B5 /* palette_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */; }; - C05BDB0B5F5A33A9A57FF013 /* m_links.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 080597FC0436378E96EDA94B /* m_links.cpp */; }; - 87C67583D36C3465ACD64104 /* vlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA90128E29A03CCCA30F4D35 /* vlbox.cpp */; }; - 22EC132AEF863BFBAA6EDEC5 /* LexPowerPro.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */; }; - 815AE3FED68330F4933AA171 /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = C94DC3402FAE3C4FA776DEEA /* window.mm */; }; - C2B07E2ECDDC3833BDC9B28E /* arcall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75D0C937F2A03ADA8581A2BB /* arcall.cpp */; }; - 760C729E41D93CC1AA2B4E0F /* hyperlinkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */; }; - 215958201947310B88BBEDB5 /* statbmp.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD6B26B5A6A733A89EF5AB9C /* statbmp.mm */; }; - 99F7D7BFBB543A04AB728377 /* m_hline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */; }; - 2C95DFA8EE463487956B4EB5 /* infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */; }; - AEB9099819B33F4A8AAB9F56 /* radiocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */; }; - 27B5431DC79733CD8D403E89 /* pcre2_context.c in Sources */ = {isa = PBXBuildFile; fileRef = 3026D20A03E53F1DB40FB35A /* pcre2_context.c */; }; - 9EC837DA722736119D49868C /* pngpread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CAA325362C73AC8BE20FAA7 /* pngpread.c */; }; - 908957F65B7E36F8BF3858DF /* PlatWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47FF6D792CA234C395692118 /* PlatWX.cpp */; }; - CDC0FF253B503BA19693D68F /* xh_propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */; }; - E7140F3AB94D3FDFA86D8C07 /* url.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49612306912038DDBCABB4DE /* url.cpp */; }; - C5E5AB869065307F83E27DD3 /* htmlpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */; }; - 68C300D096BF39239876D045 /* utils_base.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2ED0C0702D2734D9B08FC31D /* utils_base.mm */; }; - 8292D346BFC33D6E8D3CDDC1 /* xh_sttxt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */; }; - 01D4C5F2147F3942A7CE91AC /* icon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5DAF1F49F0F3F41A427A21D /* icon.cpp */; }; - 3E6AA08E72A030D39D867D4D /* ScintillaWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */; }; - EAE02BA934B43EEE92C496C8 /* dcpsg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEA0945B20913754A54D0FD9 /* dcpsg.cpp */; }; - FEA741A9B6663A4C929893C3 /* aboutdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */; }; - 25B0940CABAB39CD90C6F3C6 /* intel_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 994AF74DF2A13FF09A215853 /* intel_init.c */; }; - FB09720D13673A7B81BCB647 /* xh_datectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C63C964DAFAD311694367C94 /* xh_datectrl.cpp */; }; - 7D0E549020D33ED39751DFC9 /* LexTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */; }; - D772334837693C9D88069D9A /* tif_webp.c in Sources */ = {isa = PBXBuildFile; fileRef = 3716DA7B0C79360CBA26A71E /* tif_webp.c */; }; - EDD5725CF41336EFA7FB300B /* framecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A54B80C17F823CB5900AD2E8 /* framecmn.cpp */; }; - 7BD3887F603E3704969A54E3 /* pcre2_chartables.c in Sources */ = {isa = PBXBuildFile; fileRef = 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */; }; - 22AE900003F73134BBEE8BB7 /* dirctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */; }; - 070797A894A03196B7BEC663 /* xh_bookctrlbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */; }; - E7D02E64384F37BC8939A2C5 /* jdpostct.c in Sources */ = {isa = PBXBuildFile; fileRef = 375FF97B202F3C359402D13E /* jdpostct.c */; }; - 049052C49B0B3810BE0179CA /* dataview.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB6963739198360DB3DBCC6C /* dataview.mm */; }; - 9D4B67A357D23B5283CA8D9A /* clrpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB8A747FB60239B9AB710264 /* clrpickercmn.cpp */; }; - AAABEE399008310A8BC9BE45 /* imagtga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7029BB5751398AA02D8C24 /* imagtga.cpp */; }; - 19D823E564D932758EA6F8D3 /* UniConversion.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */; }; - 249C9177B1A33EFEAB30F940 /* tipwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */; }; - EBF2D44758003221A22202BE /* colourcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D61240ABD70328BA5789663 /* colourcmn.cpp */; }; - DD1B139EA5AD3F6DB92C0FAA /* EditModel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E685D81FB9FF3081B6C5C321 /* EditModel.cxx */; }; - 5F6B4F226B473AACB7AC8DF6 /* xh_slidr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */; }; - 25B0940CABAB39CD90C6F3C7 /* intel_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 994AF74DF2A13FF09A215853 /* intel_init.c */; }; + D6B73239BF0E32288161679D /* platinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97FFB03FF6793506B246BAC6 /* platinfo.cpp */; }; + E3136EF5DD843ACE886E2869 /* tif_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = E79B2D1F630036129B9677A7 /* tif_dir.c */; }; + 4040AE89BF9F34668091064C /* dragimgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A67053D16D63C588E555C84 /* dragimgg.cpp */; }; + 1E2AB43075973AE59A8D89C3 /* fontdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */; }; + 20BEEFFA08F3396791596872 /* dlunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA2D9F325F833C408657E7B7 /* dlunix.cpp */; }; + 4CB3626391CE34D4B1F71AA2 /* jdatasrc.c in Sources */ = {isa = PBXBuildFile; fileRef = DECAF5DD80383A2CA76EB383 /* jdatasrc.c */; }; + 4AEC67BF65B039D99F421667 /* statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C87B071E3593A889704F512 /* statbar.cpp */; }; + 2D4D105CA9BE3FA6995A6001 /* tif_dumpmode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */; }; + 7DEC57D6CE8232A09EF7421A /* PropSetSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */; }; + 6292B023DBF4337A91404AD1 /* preferencescmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A046179831F63824A67B509B /* preferencescmn.cpp */; }; + CB078622E90F33BE9D131135 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28824 /* buttonbar.cpp */; }; + 6463C9BE78C0394CB7B451FC /* pcre2_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = BDADEB1DA6433E52972C8934 /* pcre2_compile.c */; }; + 5AEA6E94FB76371D928D371D /* LexMatlab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC9153A350893820B942D37E /* LexMatlab.cxx */; }; + 45D88A74B3EE3837B9F79597 /* LexFlagship.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */; }; + 62757F24C4EE3B84B6AE3F15 /* textdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D529E2668C23D94A7706C8A /* textdlgg.cpp */; }; + 55F01295F1D23805BCA12F16 /* srchctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14EF4B028AD63B4A885D29A1 /* srchctrl.mm */; }; + D997FFC948B73FDA892DB533 /* jdsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCF47A161B3E08B19BFE14 /* jdsample.c */; }; + 9A83D365AD1F37FA9C7030C4 /* matrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF330EAACFA53877BE289896 /* matrix.cpp */; }; + 7F77E347E1243D77A666FB43 /* clipbrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */; }; + F46777ABE0743B04A1E1F0A5 /* spinbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */; }; + D6B2A64A78AF3F2983B441AA /* ownerdrwcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */; }; + F5D0BCF1A6C839E5829199E2 /* sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */; }; + FF50EC0EC5F23DF890C6E95F /* colour.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D1F14339D1C331087650931 /* colour.cpp */; }; + C7B6240E0E213836996A178D /* dockart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD709DEB71623974B9836D69 /* dockart.cpp */; }; + 901F659891613419B8643954 /* calctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */; }; + 1A70DDEDF9E13FF4BDA390EB /* bmpbndl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */; }; + 59F995B6E6EE3CA5A4487846 /* glcanvas.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35007225BB683683AA7C5E48 /* glcanvas.mm */; }; + DF8CE011EAC23F73BDA1C44E /* scrolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */; }; + CB1F37993ECB3B73A51B42FF /* LexMySQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F3EE2E9EE05311497826962 /* LexMySQL.cxx */; }; + BE99A85EE76236CC8C719A66 /* xh_gauge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */; }; + 2E930206397C3EDCBD8206FD /* gridctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */; }; + 55F01295F1D23805BCA12F17 /* srchctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14EF4B028AD63B4A885D29A1 /* srchctrl.mm */; }; + F5D0BCF1A6C839E5829199E3 /* sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */; }; + 97F60B2A9CE93BC8949A8CCF /* LexCrontab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */; }; + 0F8C79010EF0316AA1B7392F /* LexTACL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E5C91072D533919A78D8ED2 /* LexTACL.cxx */; }; + DF861EBD9C483E79ADF98604 /* CharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */; }; + 7C87CC7641033D91823ED68A /* helpfrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */; }; 4DA209AEF4AD32AAB97F971A /* htmlcell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68E5188DB6003C35A8C7754D /* htmlcell.cpp */; }; - 64A716F87A5136F9A790EC5C /* webview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DA80913C0E33144A42BD30F /* webview.cpp */; }; - BD53E095EC1136EF853A47DA /* m_layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5EE0B8985443BDCB36F781F /* m_layout.cpp */; }; - 57F8001809BC3864A5FA798D /* PlatWXcocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18ABDAF9EF723072A7708009 /* PlatWXcocoa.mm */; }; - 93E04642049537EB8A37BA28 /* htmlwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */; }; - 1CC5AEC6C08E3600801CDADC /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 95B4EDF38F8A3E5EBAFF560F /* trees.c */; }; - DB244DC0A09C379AAA63C0A4 /* bmpbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */; }; - A569A33A2097316D8110C2C3 /* toolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */; }; - 1C544DADDA6F3D62A5E25E95 /* LexerSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CF502E0E4D853CBBBEC885EF /* LexerSimple.cxx */; }; - 309C0A78D45C3AB7B8778B5B /* pngset.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E463A493FD930DE80E58608 /* pngset.c */; }; - 135DFCE48FC03D8294D01A8A /* xmlrsall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */; }; - D54D3CA9E73336A08DB20706 /* LexBaan.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */; }; - 9FD99E06F6613A1A958FAF6D /* jdmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */; }; - 9C1F073349FD393E9220C0D4 /* combog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBD7B44E33373BCCB60FC11F /* combog.cpp */; }; - E0E40333B61C33B58787078F /* LexMarkdown.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */; }; - DF3B927516FB365E865A9781 /* LexerModule.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */; }; - 37DD17F479A1371ABF3589BB /* xh_wizrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */; }; - 6F472413FFA03B53B395BB75 /* LexCLW.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7EE2459D69BA35838C274488 /* LexCLW.cxx */; }; - 4C31B77B28343F20B4973367 /* LexJulia.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */; }; - 27B5431DC79733CD8D403E8A /* pcre2_context.c in Sources */ = {isa = PBXBuildFile; fileRef = 3026D20A03E53F1DB40FB35A /* pcre2_context.c */; }; - 0718E7524134312090541D6F /* LexPascal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */; }; - AE95E3BDEDB7358DBE9E7E5C /* webview_chromium.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2718D06670953933B897B0D8 /* webview_chromium.cpp */; }; - D6C3421AD2A537AAA2F0AB82 /* file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 168DB301ACC736FF96D7F581 /* file.cpp */; }; - 5557AA36FBCC3ED9A5F5751C /* editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D90D14874FD38079835AF0B /* editlbox.cpp */; }; - A9864F0104FA344BBE79D3BD /* rendcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96CED508FA3C3B6B9265099E /* rendcmn.cpp */; }; - 9B8E5690A6103FC1BDC6C480 /* pngread.c in Sources */ = {isa = PBXBuildFile; fileRef = 29D6506AEA5A323B8735F126 /* pngread.c */; }; + 84382E5DB3203A73AC5EE392 /* xh_combo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0905A1EBD653F6D82395602 /* xh_combo.cpp */; }; + 8FDC800D873F30E282691833 /* pngrtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 87799D3168B43EB7B5686826 /* pngrtran.c */; }; + 796311E398FF313C84218826 /* uiactioncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87BF60D0D4A33E2AD2E1E25 /* uiactioncmn.cpp */; }; + 369BCCFF61D13A058D837837 /* LexPerl.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */; }; + E8BBC08597EF383597DA0309 /* LexEiffel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 55EBB18CB4773C788510B14B /* LexEiffel.cxx */; }; + 6A10511265493FA2BB79CE4F /* propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC93D1DE277395592610085 /* propdlg.cpp */; }; + 894D43C8F224394FB3171F27 /* jcapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */; }; + 0FBF7C9EDFB53D8DA0991B57 /* xh_notbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87662D69F0432FC96701280 /* xh_notbk.cpp */; }; + 800CFCEDBB7938338C65EEAD /* notifmsgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B233180893DB3328AF4847DA /* notifmsgcmn.cpp */; }; + 096BA201623034AD97218369 /* tif_version.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E6F40F4740C3ED29D83E107 /* tif_version.c */; }; + 096BA201623034AD9721836A /* tif_version.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E6F40F4740C3ED29D83E107 /* tif_version.c */; }; + 15735ED6556130F6A14F0BCF /* ScintillaBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */; }; + C92005CB86C6361BBB9D7C68 /* LexBibTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0851C46057CE3C37991B9E34 /* LexBibTeX.cxx */; }; + B60AD651E0523DB7B31E4107 /* LexillaAccess.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8052B1625907355894CCF263 /* LexillaAccess.cxx */; }; + 371809DA4AD1382F8B53287A /* fontenum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36E1DBA275AD325DB759C180 /* fontenum.cpp */; }; + DF8124E5E17D386A84CEEA28 /* LexLisp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 40586C8986443431A64EB066 /* LexLisp.cxx */; }; + C5C60B22CE6A3BCB868F69EA /* pcre2_find_bracket.c in Sources */ = {isa = PBXBuildFile; fileRef = 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */; }; + 0E23F212CBDD33848DEBCA70 /* webview_chromium.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBA9036479943A4990CEB3AC /* webview_chromium.mm */; }; + DF8CE011EAC23F73BDA1C44F /* scrolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */; }; + 68C300D096BF39239876D044 /* utils_base.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2ED0C0702D2734D9B08FC31D /* utils_base.mm */; }; + E53AFF04877D34C386D77382 /* wfstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C37866F41B0C31E295AA7FA6 /* wfstream.cpp */; }; 39CC380F801F3EE984523277 /* auibar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A4437E9697300390FDE14E /* auibar.cpp */; }; - 825EAD51920B387DB4F8C427 /* LexAsn1.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A46D50BEBF523B3F88831086 /* LexAsn1.cxx */; }; + FB09720D13673A7B81BCB645 /* xh_datectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C63C964DAFAD311694367C94 /* xh_datectrl.cpp */; }; + E0E4885BF4AF34B48EB08B93 /* volume.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6506A965F677374491359FB8 /* volume.mm */; }; + 63F2517EC6B2334CA825A6FA /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEB08798C70E33DDB360E563 /* layout.cpp */; }; + 61FEDBF2D47A3B4E861F829A /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F5 /* sound.cpp */; }; + C2E37E798F743A4199C8658F /* fddlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */; }; + FB8B6E4789A3311A98C5B0AA /* clrpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B5A9DF3206B3954A4B38BFD /* clrpickerg.cpp */; }; + 2C53221A318E37529E6460EC /* tif_fax3sm.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */; }; + F55F3887CDE633D7877C607C /* LexSmalltalk.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */; }; + 1B06622C8D8731FC832199E3 /* init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB82939EDC593F9CA95C3098 /* init.cpp */; }; + 3C665EA42ECC3E5990BA347D /* EditView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 430739CB8B95336ABB372EC7 /* EditView.cxx */; }; + F1F484DD591337399FCD0464 /* display.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5617D10CB7136EC9A4194EF /* display.cpp */; }; + 1E166FC1A7B3371FB038B174 /* fldlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */; }; + D66F5D4D204B3B789C7F76BA /* fontdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18044326B5B13A98A49732DD /* fontdlg.cpp */; }; + BEA90F2C6BB93143958F899B /* propgridiface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */; }; + 894D43C8F224394FB3171F28 /* jcapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */; }; + 50E89226E8D7390D9D21C80B /* debugrpt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */; }; + 2DF74933A90E34129F1BEF74 /* dnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA72410F615B3A78A6340532 /* dnd_osx.cpp */; }; + 0C9A379D97B133FA831175A9 /* printdlg_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */; }; + C6DF6F29407B34F29ED1B66E /* jcmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E3043D7BE9C33B59E900CCE /* jcmaster.c */; }; + 9EC837DA722736119D49868A /* pngpread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CAA325362C73AC8BE20FAA7 /* pngpread.c */; }; + BB6FE851028C3DE7A070C215 /* convauto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20B922D61CDB3CCEB59A5194 /* convauto.cpp */; }; + FE5B7C7A84B83C17A38E8404 /* LexSML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */; }; + 0C2073A011EA36B8AD906DA5 /* LexCIL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7F18C26877336DBE638D75 /* LexCIL.cxx */; }; + 9B6A35E706543CDAA6A5014B /* LexGui4Cli.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */; }; + 64A716F87A5136F9A790EC5C /* webview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DA80913C0E33144A42BD30F /* webview.cpp */; }; + FF50EC0EC5F23DF890C6E960 /* colour.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D1F14339D1C331087650931 /* colour.cpp */; }; + 2989056891153968B372EA16 /* pngwutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 45D7558DF5E03A2EB41883F0 /* pngwutil.c */; }; + F22C401903993639AE05A297 /* xh_stbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 147800BBCB80346798B35D75 /* xh_stbox.cpp */; }; + 8C52B1985BAA371FA22CCEBD /* combobox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57C06D5DB5F733A4A235B206 /* combobox.mm */; }; + 1DF3A4F85FCB3BA79A552F3E /* menuitem_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */; }; + 8C6E2BD9C31A3AE18AD17D46 /* pcre2_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */; }; + D72D99FC424337CF9EDC2043 /* props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C20E46A504113C899B9DD9B7 /* props.cpp */; }; + 319EA32592DA3C74B86DDE01 /* wxcrt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FC98E2305230E2990471E3 /* wxcrt.cpp */; }; + 912C69ADB1673ACEB0E6CF0A /* tif_strip.c in Sources */ = {isa = PBXBuildFile; fileRef = B83EDE2D1731311ABDE62F9F /* tif_strip.c */; }; + B60AD651E0523DB7B31E4108 /* LexillaAccess.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8052B1625907355894CCF263 /* LexillaAccess.cxx */; }; + CD35A576FD363FD49C3AC4B4 /* LexAda.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 375E7A99FF4C38FA9E223772 /* LexAda.cxx */; }; + B0FD1B96EAE635AFBFCF2C95 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C044 /* secretstore.cpp */; }; + 65FCDBFFF3F138A3ABBAA652 /* xh_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */; }; + 7A79D9AC608E3B8287229175 /* tif_warning.c in Sources */ = {isa = PBXBuildFile; fileRef = C83C97A1FCC5345896C9D7DE /* tif_warning.c */; }; + 11DD420E32FB3EFB9DA0AB5C /* jccolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EFF4707641D3F20AB602ED6 /* jccolor.c */; }; + 6D723C987BFB39B7B887DCB3 /* Editor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DA5E95D498C53A808A8E2EEB /* Editor.cxx */; }; + 55D893FDD00633FEA82ABD84 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */; }; + 2315C8692C443ED1AE43172A /* tif_extension.c in Sources */ = {isa = PBXBuildFile; fileRef = AF7CE00168AB33C994374ABA /* tif_extension.c */; }; + 069D53F2DFBF370A8CC99632 /* LexCSS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */; }; + D9496139621533328AE727B8 /* pngget.c in Sources */ = {isa = PBXBuildFile; fileRef = 91300EB871CC39ECBC430D48 /* pngget.c */; }; + 22C76BF2C3E331CD87657E6E /* LexNsis.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1BC0322549563787A21CE8F1 /* LexNsis.cxx */; }; + 3C5E1A45A57B3169A4C073D9 /* LexVerilog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */; }; + CE2C937117FE3AB599DD30BB /* sound_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9B2316B32653DA0939A372D /* sound_osx.cpp */; }; + 064908348009398C8EA8497E /* fontpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */; }; + 1DE75213D296323B815A02C0 /* statline.mm in Sources */ = {isa = PBXBuildFile; fileRef = 743EF8DB16CE371DA5C66623 /* statline.mm */; }; + DFEB01E7B97A3515B785DCAA /* pcre2_string_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */; }; + 91364FDD73053139BBAA313D /* Accessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D2DE67C976CF3004A8FE883A /* Accessor.cxx */; }; + 2CAD4DF9505F36E4A2EAD53E /* helpdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C466F32CCBD13DBC87285B3D /* helpdata.cpp */; }; + A0FCE3CF565C3F84B63712AD /* LexCPP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9EF09C7CC5413CC6A5E7B21B /* LexCPP.cxx */; }; + 8A4046BD38873D9CAC9C2B5A /* filesys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F263022F3FEA3F75895B644D /* filesys.cpp */; }; + 7EF89F935314301381802FAD /* filectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2334539088B036BEAB230D1C /* filectrlg.cpp */; }; + 048986FB629E313EA670CD0D /* webviewfshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */; }; + BBAABF3C693E37D3B0FF2504 /* colrdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */; }; + 7625D908B2CD34C78243BA91 /* settcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABE3DC4AA47D39ACA83F27C0 /* settcmn.cpp */; }; + 7DC4A542372437ECA0790F89 /* art_msw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B540E18F9C91381CA175BABB /* art_msw.cpp */; }; + E2A73751CECF32A68FFAEE84 /* panelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E9B2C076673C87B4218A01 /* panelcmn.cpp */; }; + 6C1171E3FB7137CCB9E3F538 /* tif_zstd.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B98123FD57731139044B064 /* tif_zstd.c */; }; + ED8D23D79FF33ED380FE09ED /* scrlwing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */; }; + 23479484EC143D34871550C2 /* textmeasurecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */; }; + 18A318847EAC37F2B915F083 /* jmemmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */; }; 3CDE2B6BF88D326189F069BE /* accelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A436B55DC44E3827A757A6D8 /* accelcmn.cpp */; }; - 49C873EE448C3CD9A32012CF /* spinctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */; }; - 65FCDBFFF3F138A3ABBAA651 /* xh_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */; }; - 502D7B786EAE383B9546F321 /* LexRust.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 24BD2EF635673E819B8406CB /* LexRust.cxx */; }; - 65AD3B31319C35F1AC9EC627 /* anybutton.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4020D790AE7363CB29F1C2F /* anybutton.mm */; }; - 056E30EA43753A7CB1AF8CA0 /* strvararg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EEAD9C3E180305D8899441E /* strvararg.cpp */; }; - F5806029B1BA3924A8FDDBC3 /* busyinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F94CF171F4532B89FECF475 /* busyinfo.cpp */; }; - 13854E7822783719A2530794 /* jddctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5BBC1E494D33D028CA547FF /* jddctmgr.c */; }; - 0730A107A2B935A9923C8EF4 /* filehistorycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7B3307E56B332769901E99F /* filehistorycmn.cpp */; }; - A3586433C4B1398FB1C361D7 /* m_image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 548906E4E72935E48CE4AF87 /* m_image.cpp */; }; - A80D00249A693F43A9CBE779 /* rgncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63867276260C3F4A980E83D8 /* rgncmn.cpp */; }; - 20D05D14BFAD3F969666D03D /* timectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA0840034F1386F94D17639 /* timectrl_osx.cpp */; }; - B181806CC34839E791E54BF2 /* xh_tglbtn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */; }; - 567A32722BA33AEE9FF93D7E /* fs_inet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7581D7140293BAE88E43DBE /* fs_inet.cpp */; }; - 6F472413FFA03B53B395BB76 /* LexCLW.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7EE2459D69BA35838C274488 /* LexCLW.cxx */; }; - C7B6240E0E213836996A178D /* dockart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD709DEB71623974B9836D69 /* dockart.cpp */; }; - E49F0D43B5A63EF1A57A7114 /* fswatcherg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */; }; - 1DBDF75500D73A3098015E80 /* cfstring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */; }; - FF7DB2884F6E3C5DB4BDF61F /* fswatcher_kqueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */; }; - 1E17F95DD433379E8C18298E /* odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */; }; - 0718E7524134312090541D70 /* LexPascal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */; }; - 6C7C1CC506CB329FB2D086AB /* LexBasic.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B6AADC1056E03A3B80C20C5B /* LexBasic.cxx */; }; - EE0EA850822E35F596B5EBBC /* artprov.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29387393C07C39DB8FF1663B /* artprov.cpp */; }; - 6BF19C7CA9E93D989C210FE5 /* dseldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1197B997B1D139C5AE4D198A /* dseldlg.cpp */; }; + D51B3389209E370489078892 /* tif_dirread.c in Sources */ = {isa = PBXBuildFile; fileRef = F6EA240B3DB93D398A990FAD /* tif_dirread.c */; }; + 3ACCC2EB8E973C11835EB599 /* bmpbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */; }; + 7A79D9AC608E3B8287229176 /* tif_warning.c in Sources */ = {isa = PBXBuildFile; fileRef = C83C97A1FCC5345896C9D7DE /* tif_warning.c */; }; + B8FEEC2C94183AB69C963179 /* headercolcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */; }; + 1DBDF75500D73A3098015E81 /* cfstring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */; }; + 908957F65B7E36F8BF3858DD /* PlatWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47FF6D792CA234C395692118 /* PlatWX.cpp */; }; + BEAC2449AFA7304989BA3020 /* fontpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */; }; 23E9AF567E873B948EFEA181 /* gauge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 98A7F0605AAC3D28A8C9F253 /* gauge.mm */; }; - 25C5C1713C0B39AC8EB6A38F /* taskbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A4D36DE66EC3EB09E883D6B /* taskbar.mm */; }; - D948CC99521633338B24E2F7 /* LexHollywood.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */; }; - A465A43B756630F1944B5A57 /* vscroll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1629FA905F903324AA5BE72C /* vscroll.cpp */; }; - E92EB502F79638B0BE569EF5 /* CallTip.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */; }; - F0D892C2618130FEAD46BB88 /* panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00969CBE3B8F32C78C195619 /* panel.cpp */; }; - F7D10B6E0CBA32EFAF79C77E /* xh_dirpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */; }; - 4B996B4C54163D7091427DB6 /* gzread.c in Sources */ = {isa = PBXBuildFile; fileRef = BAD4614CABC934D6AFF8D9CD /* gzread.c */; }; - 4BAFAE70A6B1313B96D86632 /* page.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59ED0C057D8F388A89DC7177 /* page.cpp */; }; - 0B792C3F31713850818EEFEC /* LexDMAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AC62806DE67F33E18C386D4F /* LexDMAP.cxx */; }; - 7F62946D497A32CE857F65CB /* pcre2_maketables.c in Sources */ = {isa = PBXBuildFile; fileRef = D016F584D14C31E192DB3179 /* pcre2_maketables.c */; }; - 77BC918AF05C30E8A0BD27FA /* tipdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */; }; - 729091CC33C73C989B4E071A /* timerimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0401B7302088357BB6B7F16F /* timerimpl.cpp */; }; - 2FE10EA678C73523836FCC1E /* richtooltipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */; }; - CEC6430AEB6E3200BFA75D09 /* jfdctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */; }; - 1142E2D85FD93E9AB5D8A55C /* pcre2_script_run.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F4CDF9048EC36788619769D /* pcre2_script_run.c */; }; - 22AE900003F73134BBEE8BB8 /* dirctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */; }; - CCE4ECA9CE883B008065C6FD /* jctrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 725574EF98C4301989181CBF /* jctrans.c */; }; - DAAFBED07FF8365B96D20B9A /* unichar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */; }; - C2DEE063B5E032C1BD2B5028 /* xmlparse.c in Sources */ = {isa = PBXBuildFile; fileRef = A92B6033D8233DB1821F193B /* xmlparse.c */; }; - 0D6596A44A8C37DE85D578F7 /* Document.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 71DB140E670738839EC42C2B /* Document.cxx */; }; - E92EB502F79638B0BE569EF6 /* CallTip.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */; }; - CE32C5250F2834D4B81BE89A /* appprogress.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD91A34971FB3D0299B894A5 /* appprogress.mm */; }; - 6E1FD7D3DEF03748AEE3A29F /* listbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = D324650313003AAD96E12962 /* listbox.mm */; }; - 8F949B9010863F66A58FFEF3 /* xh_activityindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */; }; - D9F02AFDA07D3857A905527E /* jdcolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 68B81FBDA49D3C1991B6356A /* jdcolor.c */; }; - 87092C0C817D343DAB77E240 /* xh_scwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */; }; - 774EB9F3F7E93A379E1F7552 /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C4762898E5330C28651EE73 /* graphics.cpp */; }; - 5FE969523BDB3353AEF96811 /* xh_filepicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */; }; - D7F14BDFFB7F369B842AFC15 /* pcre2_config.c in Sources */ = {isa = PBXBuildFile; fileRef = FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */; }; - FDE14459359334DE9FB03ED7 /* xh_scrol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66411D54BAD338498AC59401 /* xh_scrol.cpp */; }; - 7C87CC7641033D91823ED689 /* helpfrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */; }; - ED8D23D79FF33ED380FE09EC /* scrlwing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */; }; - C425A172B0AB3EBD9AC9A592 /* ustring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B63EBEE1A04537E7887E9FD0 /* ustring.cpp */; }; - 49260580A7F23B569A827D41 /* filefn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58421C141C9E31C6A7A3C183 /* filefn.cpp */; }; - 3316A16628B03D5E88529EA8 /* datetimectrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = A0A63980677D371C85A60B75 /* datetimectrl.mm */; }; - E3AD8574E13B39BDB8D4E930 /* LexKVIrc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */; }; - 213CE0DD5B2335D0AD53B54C /* gzclose.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A24E9101688368296C21EBE /* gzclose.c */; }; - FD1F6CD8286D3D428FD52A2A /* filepickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B580FD04D0D83601826FD5EE /* filepickerg.cpp */; }; - 5ED54DFAE28533108C08DF2B /* pcre2_extuni.c in Sources */ = {isa = PBXBuildFile; fileRef = F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */; }; - 45FE206BBAD13DDCA1EA41D1 /* treebase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BA6ADD758693BD180D3275B /* treebase.cpp */; }; - 2EECB3C2F9523D0B95847A80 /* accel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C78A1539462370CAA429508 /* accel.cpp */; }; - F0B3F484C38C3BA0B9927CDB /* docmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */; }; - 55D893FDD00633FEA82ABD83 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */; }; - B4425B59CC27389CA9FF81D3 /* datectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE856D950B8C369EB0FE13BA /* datectlg.cpp */; }; - 135DFCE48FC03D8294D01A8B /* xmlrsall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */; }; - C2CF6B59914A3183ADE8402A /* tif_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 48F1439BF6C3361296F05A33 /* tif_error.c */; }; - 18A318847EAC37F2B915F083 /* jmemmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */; }; - 7D615329368D32709CEF4B5A /* headerctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7273A7E255323EB3B391D997 /* headerctrlg.cpp */; }; - EAE02BA934B43EEE92C496C9 /* dcpsg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEA0945B20913754A54D0FD9 /* dcpsg.cpp */; }; - DF8CE011EAC23F73BDA1C44E /* scrolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */; }; - EA10DA3199813E90B39C70D5 /* xh_infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45C65E309F3A39598C043657 /* xh_infobar.cpp */; }; - 65514CD6A9F23ED98436AC04 /* ftp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB4781DF8C432C688F30CDD /* ftp.cpp */; }; - 682403FBBD4E3D5E88159503 /* CellBuffer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */; }; - BFD3BFBDC8DA3B1EAD141F98 /* LexErlang.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A1276C0E5D48337489DEE8DF /* LexErlang.cxx */; }; - 45E15DBB6B69382D8AF1BA22 /* pcre2_dfa_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */; }; - D54D3CA9E73336A08DB20707 /* LexBaan.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */; }; - 750C716389AD3ADBABC9D68B /* statbmp_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */; }; - 3D22FC202D903007AEE3D166 /* fdiounix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */; }; - 7E6C627A325F32FFB2EF9BA0 /* caret.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A82EDCFFBAC30098B238957 /* caret.cpp */; }; - 5F2C2A46781739D897CF293F /* xh_chckl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */; }; - 955D2199F1893D37BA2D747A /* laywin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3784C240C2F330683494926 /* laywin.cpp */; }; - 94E510619F433AE3AC884757 /* xh_bmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */; }; - E8BBC08597EF383597DA030A /* LexEiffel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 55EBB18CB4773C788510B14B /* LexEiffel.cxx */; }; - FEA741A9B6663A4C929893C4 /* aboutdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */; }; + 94B1C88076793400810FAC32 /* png.c in Sources */ = {isa = PBXBuildFile; fileRef = AF26BAB1F4733114926F1724 /* png.c */; }; + 7C9EAFF4A0223EE597E0E3A0 /* xh_srchctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */; }; + 1CC5AEC6C08E3600801CDADC /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 95B4EDF38F8A3E5EBAFF560F /* trees.c */; }; + 552708E6296D33EBB5F6A494 /* tif_swab.c in Sources */ = {isa = PBXBuildFile; fileRef = AAC12B4456E13F57BEA25A5E /* tif_swab.c */; }; + 56E1ED31F7CE38978F4A7CA2 /* LexProps.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DE0102314288305D830B9EFE /* LexProps.cxx */; }; + 45E15DBB6B69382D8AF1BA21 /* pcre2_dfa_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */; }; + F5806029B1BA3924A8FDDBC3 /* busyinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F94CF171F4532B89FECF475 /* busyinfo.cpp */; }; + E3136EF5DD843ACE886E286A /* tif_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = E79B2D1F630036129B9677A7 /* tif_dir.c */; }; + 213CE0DD5B2335D0AD53B54B /* gzclose.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A24E9101688368296C21EBE /* gzclose.c */; }; + 25C5C1713C0B39AC8EB6A390 /* taskbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A4D36DE66EC3EB09E883D6B /* taskbar.mm */; }; + CEE0D7A7D5D8323B9957A781 /* notifmsgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */; }; + 923F4797A73A3BDD87BBD1E3 /* LineMarker.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AF3DF03795153E039B8F1F87 /* LineMarker.cxx */; }; + EDD5725CF41336EFA7FB300B /* framecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A54B80C17F823CB5900AD2E8 /* framecmn.cpp */; }; + A965348C7FA73CEC90C8FA27 /* filedlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */; }; + 5DA146A9F7653F53BF5299E9 /* spinbutt.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C4A7A93CAFC3E22A2A5F7F3 /* spinbutt.mm */; }; + 9455B49669853E71BD4FD965 /* richtextformatdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */; }; + 9881E3FB23ED3283B6CC71A4 /* filepickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */; }; + 32988828498D32B2B3F8A984 /* bmpsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741E9B48274638CD9DD73698 /* bmpsvg.cpp */; }; + 296692A7A3783E3A83D005C7 /* brush.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 302A13BC64C238A297F4399F /* brush.cpp */; }; + 22C76BF2C3E331CD87657E6F /* LexNsis.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1BC0322549563787A21CE8F1 /* LexNsis.cxx */; }; + 63F895D6F5643E4B9E666B7A /* creddlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */; }; + 8F949B9010863F66A58FFEF2 /* xh_activityindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */; }; + D759231BC07232C0A52515A7 /* LexAccessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */; }; 5F6B4F226B473AACB7AC8DF7 /* xh_slidr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */; }; - 4B996B4C54163D7091427DB7 /* gzread.c in Sources */ = {isa = PBXBuildFile; fileRef = BAD4614CABC934D6AFF8D9CD /* gzread.c */; }; - 3ACCC2EB8E973C11835EB599 /* bmpbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */; }; - 2CCC30C0162131DBBE9D8029 /* dobjcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */; }; - BEAC2449AFA7304989BA3020 /* fontpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */; }; - 2563C775427E3D68BD384F30 /* richtextstyles.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D30617843F33310089C1F77A /* richtextstyles.cpp */; }; - D5C304182151365FA9FF8A3F /* xh_bttn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */; }; + 1A4F9F18BBEB3515AC7C7CC8 /* LexMetapost.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */; }; + E3A4615870B139D29FE727C2 /* menucmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F175D6E8E5723FC797701275 /* menucmn.cpp */; }; + B30D10F6257631B0A1926F8A /* statbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 926BDF9C386C3A9A8C24D453 /* statbox.mm */; }; + 6BC8B3EDB3AE3EF4BACFC08B /* ContractionState.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5219A792C6A736F193D4A82F /* ContractionState.cxx */; }; + C67EAE20657E36839BF86691 /* richtooltipg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */; }; + B01C4EF49CF9390DA93A3504 /* jidctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C131F7BF8A83960ACB26242 /* jidctflt.c */; }; + 14EF556997B0350F931EBE90 /* jdinput.c in Sources */ = {isa = PBXBuildFile; fileRef = CCF7564A2B733F759AA8496B /* jdinput.c */; }; + 8FDC800D873F30E282691834 /* pngrtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 87799D3168B43EB7B5686826 /* pngrtran.c */; }; + 1D7442C82B343F50A83B25B2 /* CharClassify.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */; }; + 6F0605F3A4E83BF0BF4C8B80 /* cmdproc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */; }; + E46BEC5C8D643BD099AF1D58 /* LexSTTXT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 50859F0155753FDCB8C5222A /* LexSTTXT.cxx */; }; + 3B7E035ECF3D3FFB9827AC1D /* xh_dlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06B4A895955B32258DCD62BF /* xh_dlg.cpp */; }; + 9F70A89D00B03D4894AF763A /* validate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01BA6D45FE4C381493EB4372 /* validate.cpp */; }; + FF7DB2884F6E3C5DB4BDF61F /* fswatcher_kqueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */; }; + C34B8675439F39B4845FFC52 /* xh_listb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */; }; + BCD81FD3D1EC305F801E1C1C /* sckipc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */; }; + 91EA325FCE3A3A6A8D1D21A7 /* srchctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */; }; + E6D18B2EDE353F67883085A1 /* odcombocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F23140777B733679D2FAAFC /* odcombocmn.cpp */; }; + 49C873EE448C3CD9A32012CF /* spinctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */; }; + 0E60E17BA4B23347A4F20161 /* gdicmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998D611109EC33A9A6A11C5A /* gdicmn.cpp */; }; + 4D9368BD07F131C493232E2F /* LexIndent.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41AE72D4E8FF307F86A02F5F /* LexIndent.cxx */; }; + AC91349D7F0E37739B1F5166 /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEF6B3FB66243812969E5BD1 /* palette.cpp */; }; + 73AA68AB9F1236ED9F1FBB2F /* metafile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2BB2949CC0B387AB6879539 /* metafile.cpp */; }; + 3EB6B8528A0D3B6CADAE1257 /* archive.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02D2E8B5C89939CE90B99E2B /* archive.cpp */; }; + 6978D7A20DA93A329DDD1385 /* socket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40CE02524DD4385AB2C3DF95 /* socket.cpp */; }; + 2EECB3C2F9523D0B95847A81 /* accel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C78A1539462370CAA429508 /* accel.cpp */; }; + CCFD3144A22C3A87B67D88AD /* LexRebol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0D9828C9BD9633C1A8F4E0CD /* LexRebol.cxx */; }; + 268DDC88C99A3A64AB8B2FFC /* LexCaml.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B3B8AD0120F3EA6BF5B0AE0 /* LexCaml.cxx */; }; + D83B32B788EC310D919E0DF9 /* imagpcx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */; }; + A80D00249A693F43A9CBE779 /* rgncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63867276260C3F4A980E83D8 /* rgncmn.cpp */; }; + 0948599C4FD53611A09B52AD /* jfdctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 93D07403FCA530D7A9FD2917 /* jfdctflt.c */; }; + 249C9177B1A33EFEAB30F941 /* tipwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */; }; + 3C0EB1DDA5243E31B2D92CE4 /* jquant2.c in Sources */ = {isa = PBXBuildFile; fileRef = 02D9332D5C5632E981936E29 /* jquant2.c */; }; + 61C3F7D495FB3E8BA402E4F9 /* jdmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 20E4A10BCD773C84AEC481A1 /* jdmarker.c */; }; + AE95E3BDEDB7358DBE9E7E5B /* webview_chromium.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2718D06670953933B897B0D8 /* webview_chromium.cpp */; }; + ABBE59AC73E135D48965F20A /* xh_vlistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4466008861AA37CFB13A46EF /* xh_vlistbox.cpp */; }; + 0164A65CDB7A334A8E9AA4C1 /* dynload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */; }; + C40AA245D5773351979A2852 /* filedlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = DC8A52CA69053B27B09F1037 /* filedlg.mm */; }; + B839235BED6F3609BDB732B9 /* dndcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */; }; + 63F895D6F5643E4B9E666B7B /* creddlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */; }; + 3399AB7BB1333B5AAF5FAF57 /* wrapsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */; }; + 3C36437B2E933F83984D431F /* imagtiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */; }; + DF3B927516FB365E865A9782 /* LexerModule.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */; }; + 9B6A35E706543CDAA6A5014C /* LexGui4Cli.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */; }; + 6F8129E317EE3486A89D854A /* LexSpecman.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */; }; + 692FCCABFB963696AFC1E123 /* gdiobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */; }; + A4DEBFA074C93388A1BBCB42 /* pcre2_substitute.c in Sources */ = {isa = PBXBuildFile; fileRef = FAC42945539F362D91D6F559 /* pcre2_substitute.c */; }; + F5D0BCF1A6C839E5829199E4 /* sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */; }; + A465A43B756630F1944B5A57 /* vscroll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1629FA905F903324AA5BE72C /* vscroll.cpp */; }; + D5A25AC579F436509805335C /* appbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95A156A823B536DE8476E4F9 /* appbase.cpp */; }; + 0743AE8613F535A0ABB79316 /* intl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC8BB1AABB3D393EBA527060 /* intl.cpp */; }; + A336FD218BE63B19991CA515 /* ipcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C090A76B6F23E6481A27282 /* ipcbase.cpp */; }; + C3AC94EA13C1352790BF5FF9 /* listctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9016355F66D3125919E017D /* listctrl.cpp */; }; + DE26572475EE336B8EEA5D94 /* jerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 108517BCD39230E7A89BC943 /* jerror.c */; }; + 1B06622C8D8731FC832199E4 /* init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB82939EDC593F9CA95C3098 /* init.cpp */; }; + 048986FB629E313EA670CD0E /* webviewfshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */; }; + A3321FE2A87D3BD69E0BB00B /* notebook_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5248A45AB113341EAC361910 /* notebook_osx.cpp */; }; + 0E92CEF677AA32C9A8CDA0A8 /* checkbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */; }; + D9F02AFDA07D3857A905527D /* jdcolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 68B81FBDA49D3C1991B6356A /* jdcolor.c */; }; + 63F0C8EEDF4B3641878A8B4E /* dlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9051902662BE38B3912B34EA /* dlgcmn.cpp */; }; + 5F78DB0417BF3CE1B4E35C81 /* stackwalk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA2520F427493A22A70A5C09 /* stackwalk.cpp */; }; + BD53E095EC1136EF853A47DA /* m_layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5EE0B8985443BDCB36F781F /* m_layout.cpp */; }; + 64F11C549E3035DF85691061 /* tif_ojpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */; }; + DA71FBB9EFB2350ABB3CEC80 /* stdpaths.mm in Sources */ = {isa = PBXBuildFile; fileRef = 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */; }; + CAF5C5BB129431B596C4C6C3 /* LexTAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 38891BF8F51E398F9082903F /* LexTAL.cxx */; }; + 97BAFEAD53E238B6881178DF /* evtloopcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 640783FBACA43206B782C77B /* evtloopcmn.cpp */; }; + 23E9AF567E873B948EFEA182 /* gauge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 98A7F0605AAC3D28A8C9F253 /* gauge.mm */; }; + 383A6993E90936D39A5F12BF /* headerctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */; }; + E82CB89681FF3747B6A94429 /* anybutton_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */; }; + FE5B7C7A84B83C17A38E8405 /* LexSML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */; }; + 23965E313EDC3BBE9B2FA1C7 /* imagpng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24396D584D053948A3FF0DCD /* imagpng.cpp */; }; + 85F9828B80B03178A274BD18 /* selstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ED2105A5A033E3384EBC4ED /* selstore.cpp */; }; + A191AA29BDF83BB090A9DF51 /* LexCharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */; }; + 4269B85FDC5639BEB76A8AED /* nonownedwnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */; }; + C2D45B334BE03F6C941CA042 /* utilsexc_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95E2B80B2D7033808504DA8D /* utilsexc_cf.cpp */; }; + 0B792C3F31713850818EEFEC /* LexDMAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AC62806DE67F33E18C386D4F /* LexDMAP.cxx */; }; + 24A5A71C79733E9CB913C5B9 /* LexPB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8744F2C80ECF375999195935 /* LexPB.cxx */; }; BA9F0BBD57F63FD29E484FD5 /* LexScriptol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F1B41B0F10C3DA38188C239 /* LexScriptol.cxx */; }; - F5B0B26BD0803719A3FCB4D9 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E45F6DF601A34BCB3CC0206 /* adler32.c */; }; - C5419BC04D6234B5A8307B83 /* xti.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25C86D3D4839343BA1D8BDEE /* xti.cpp */; }; - 00E12455C98032E18378EE5F /* pcre2_newline.c in Sources */ = {isa = PBXBuildFile; fileRef = A208BFC0C8C43847A9620ADA /* pcre2_newline.c */; }; - 49FE0228D8FD3F7AB64A4434 /* bmpbuttn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */; }; - 7C87CC7641033D91823ED68A /* helpfrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */; }; - F3AC352D6DAE3A12A5664769 /* styleparams.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */; }; - 20F10669703137E68318C6FF /* cmndata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */; }; - 6FA47EAACE613B039B6EC262 /* containr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3645350F572364BABF50238 /* containr.cpp */; }; - 6C3A459236F736B8A14A13AE /* dialog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83B878A16ABC396E8C03A15E /* dialog.mm */; }; - 7CC211E10D853B958250A4D0 /* LexModula.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */; }; - F1F484DD591337399FCD0465 /* display.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5617D10CB7136EC9A4194EF /* display.cpp */; }; - 42AC484FDD7D3E948CEA801D /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = B5370A676AAC32419D7FDD87 /* inflate.c */; }; - EE972E8DC73F310B9B4C949E /* webrequest_curl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5279968877003A8BB8279765 /* webrequest_curl.cpp */; }; - E1F7C51F411B3AF39476E48A /* fdrepdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F094B0B07DF33BCA6077BC0 /* fdrepdlg.cpp */; }; - 8FB5FBC5730C33F1A3D85DA0 /* LexD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */; }; - 127E255EE601383A9E0EF7EB /* menuitem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61548D0FE1353D7C846DD721 /* menuitem.mm */; }; - DB9565CC4EAE3BCB9F490622 /* xmltok.c in Sources */ = {isa = PBXBuildFile; fileRef = 8685B8ED68F23DB0B770FD74 /* xmltok.c */; }; + AC07BA4EA5403443914DFDB3 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7013DB195D023C31ADE68546 /* crc32.c */; }; + 73AA68AB9F1236ED9F1FBB30 /* metafile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2BB2949CC0B387AB6879539 /* metafile.cpp */; }; + 2F7F5B9BBCD83D90B237A1A2 /* markupparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA7F7633279936EFA0B9C5CF /* markupparser.cpp */; }; 88E1AE56FD393C8BA5CF8547 /* stringops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F1E724EA70AB35DDB130F84F /* stringops.cpp */; }; - 825EAD51920B387DB4F8C428 /* LexAsn1.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A46D50BEBF523B3F88831086 /* LexAsn1.cxx */; }; - 6C80B6049A523836BCD20BCC /* WordList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0E7BF9256DF533EBAE2B945E /* WordList.cxx */; }; - 5ED54DFAE28533108C08DF2C /* pcre2_extuni.c in Sources */ = {isa = PBXBuildFile; fileRef = F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */; }; - 2FAE979E6FE23D088C768B7F /* gridcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */; }; - 049052C49B0B3810BE0179CB /* dataview.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB6963739198360DB3DBCC6C /* dataview.mm */; }; - AD7EEB418C7930CB828EAF89 /* dynlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D272910EC35531E5B4D6E05B /* dynlib.cpp */; }; - A3586433C4B1398FB1C361D8 /* m_image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 548906E4E72935E48CE4AF87 /* m_image.cpp */; }; - 603DF49D176737D383CE4F03 /* choice.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F838F853CB03CF7932C08C3 /* choice.mm */; }; - C3A63D7091913CD39094AE0C /* btncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A7A3B499503ECABC6A838F /* btncmn.cpp */; }; - 4279D39CAAF834F6A5B99197 /* persist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D9626646773CED82449D5D /* persist.cpp */; }; - 6A10511265493FA2BB79CE4F /* propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC93D1DE277395592610085 /* propdlg.cpp */; }; - 60296753A32B39EB8BD0CB46 /* pcre2_study.c in Sources */ = {isa = PBXBuildFile; fileRef = 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */; }; - A9864F0104FA344BBE79D3BE /* rendcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96CED508FA3C3B6B9265099E /* rendcmn.cpp */; }; - 20BEEFFA08F3396791596871 /* dlunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA2D9F325F833C408657E7B7 /* dlunix.cpp */; }; - 7DC4A542372437ECA0790F89 /* art_msw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B540E18F9C91381CA175BABB /* art_msw.cpp */; }; - DB244DC0A09C379AAA63C0A5 /* bmpbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */; }; - 67EBCE5FA5FF36349ADF0918 /* jdapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */; }; - 94B1C88076793400810FAC32 /* png.c in Sources */ = {isa = PBXBuildFile; fileRef = AF26BAB1F4733114926F1724 /* png.c */; }; + CDC0FF253B503BA19693D68D /* xh_propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */; }; + 27E73CA5C35A30CE89946ECC /* slider_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D215A0D67563350CB4EECB06 /* slider_osx.cpp */; }; + E1F7C51F411B3AF39476E489 /* fdrepdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F094B0B07DF33BCA6077BC0 /* fdrepdlg.cpp */; }; + B791BD05072B3B909A7093C3 /* dcsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */; }; + 98AD7D0478BA36249B03C625 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B9586328A1F3C4BA0390AA5 /* time.cpp */; }; + 0742292656623EC481B3436B /* paper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87D973CA8D673267BD0844D3 /* paper.cpp */; }; + 1CD4F67F48CF3A5FA477D870 /* datavcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */; }; + 5D3AD309AF39385EBF7D9DFA /* jaricom.c in Sources */ = {isa = PBXBuildFile; fileRef = 573D0D15EE9E3E629D61EA65 /* jaricom.c */; }; + B30D10F6257631B0A1926F8B /* statbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 926BDF9C386C3A9A8C24D453 /* statbox.mm */; }; + B189DB62AE9F30A1B613756C /* bmpcboxg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */; }; + 3D3EA1BAAD1833B1B48E9C88 /* xh_stbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */; }; + 07158EBC05A637ECA9DC7B51 /* utilscocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */; }; + 39FB197CF9EB3D76BE0723D1 /* LexBash.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 78D7866F95C73A28BB540606 /* LexBash.cxx */; }; + 48A1F28E04603A68A1E7031A /* jidctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = A0DCC5EF59143640BE13AD73 /* jidctfst.c */; }; + FD38B04026F930CC80BC9482 /* m_pre.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61658C3EABB4341AA38C691E /* m_pre.cpp */; }; + 760C729E41D93CC1AA2B4E0E /* hyperlinkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */; }; + DA71FBB9EFB2350ABB3CEC81 /* stdpaths.mm in Sources */ = {isa = PBXBuildFile; fileRef = 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */; }; + 7D615329368D32709CEF4B5A /* headerctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7273A7E255323EB3B391D997 /* headerctrlg.cpp */; }; + CB078622E90F33BE9D131136 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28825 /* buttonbar.cpp */; }; + BAFF04F1680F32DA988EB03F /* stockitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B180290089B139F18B0C7BBA /* stockitem.cpp */; }; + C1E5799141603A75A26BEEA9 /* xpmdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C562D5885AFF3E15837325CE /* xpmdecod.cpp */; }; + 86AED49CEAFC3637B1F10537 /* dialog_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */; }; + 0C7E2D5C22A232368F862A62 /* longlong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D7AF345E563587941BD868 /* longlong.cpp */; }; + 2FA1A8FE3644325ABAD273A5 /* fmapbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832BBBFE664736D5978420C6 /* fmapbase.cpp */; }; + 0E92CEF677AA32C9A8CDA0A9 /* checkbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */; }; + F747991E5C973F9B8C9D800C /* fontcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */; }; + 4442EA28B0B3373B9A2D0864 /* collheaderctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */; }; + DEC5F4B34BC037169D3E5F2C /* mediactrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */; }; + 2DBF5F96CCC63F7481C26A45 /* webview_webkit.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FEECFD764E037288CE94FEB /* webview_webkit.mm */; }; + FF50EC0EC5F23DF890C6E961 /* colour.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D1F14339D1C331087650931 /* colour.cpp */; }; + F46777ABE0743B04A1E1F0A6 /* spinbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */; }; + 64DD406C453D39FEBBE66ED3 /* tif_pixarlog.c in Sources */ = {isa = PBXBuildFile; fileRef = 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */; }; 14DEBD7C01FC358B917FDAF4 /* aboutdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 207F0F88390138B6B41183EB /* aboutdlg.mm */; }; - 9836B3D336963795928FE5A2 /* m_dflist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52FE1599218730CC99A3F801 /* m_dflist.cpp */; }; - C34B8675439F39B4845FFC52 /* xh_listb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */; }; - 89046455F49D3D75A21C9DBA /* imagfill.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 137E01C362E134449BF966ED /* imagfill.cpp */; }; - 5417332FE2DB3CD3A647B15F /* cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF1F491B8A8376E8E2E8182 /* cursor.cpp */; }; - 8AB7191F7CB838FC8337C48F /* xh_statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FADE850169F7347F83FE1499 /* xh_statbar.cpp */; }; - 23A7AF68A03E380785EE7C26 /* object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1731D6708BFE3DE7B101CE74 /* object.cpp */; }; - 9C1F073349FD393E9220C0D5 /* combog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBD7B44E33373BCCB60FC11F /* combog.cpp */; }; - D36E76A4CAF5352D9397E201 /* fdiodispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */; }; + 5B5B8DF915D438AA9FCEB39F /* imagall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FFDFB4D208F37569AC548B0 /* imagall.cpp */; }; + DB244DC0A09C379AAA63C0A5 /* bmpbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */; }; + A9864F0104FA344BBE79D3BE /* rendcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96CED508FA3C3B6B9265099E /* rendcmn.cpp */; }; + 02BB539E2AD63C078DA776B2 /* uiaction_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */; }; + 68C300D096BF39239876D045 /* utils_base.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2ED0C0702D2734D9B08FC31D /* utils_base.mm */; }; + 4657479AF35533AEB7876678 /* helpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB30516233A39BE809405AA /* helpbase.cpp */; }; + 296692A7A3783E3A83D005C8 /* brush.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 302A13BC64C238A297F4399F /* brush.cpp */; }; + 552708E6296D33EBB5F6A495 /* tif_swab.c in Sources */ = {isa = PBXBuildFile; fileRef = AAC12B4456E13F57BEA25A5E /* tif_swab.c */; }; + BD2B17EB72E73A6EB6E0B270 /* dcmemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 343D4FDD5CC030618EF24729 /* dcmemory.cpp */; }; + 42AC484FDD7D3E948CEA801D /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = B5370A676AAC32419D7FDD87 /* inflate.c */; }; + 65AD3B31319C35F1AC9EC627 /* anybutton.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4020D790AE7363CB29F1C2F /* anybutton.mm */; }; + 908957F65B7E36F8BF3858DE /* PlatWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47FF6D792CA234C395692118 /* PlatWX.cpp */; }; + 5E80C103F0853788A2B43E5E /* LexX12.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 17A8A93EF3C03546BE19F43B /* LexX12.cxx */; }; + 675B4E6CBA8632E89B4AC26F /* textctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4E16323A43E36DC8024EDF1 /* textctrl.mm */; }; + 63F0C8EEDF4B3641878A8B4F /* dlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9051902662BE38B3912B34EA /* dlgcmn.cpp */; }; + F84D59648206349A9768157E /* msgdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */; }; + E80BEED62EBF34F09B3F4021 /* LexMagik.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 45860601270D318D93BEE1F3 /* LexMagik.cxx */; }; + CB46C7E531903700ADFB11CA /* tif_jbig.c in Sources */ = {isa = PBXBuildFile; fileRef = F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */; }; + 758629DA468A3EF7B1C15243 /* gifdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */; }; + 2FB16C6469433F1C91749129 /* renderer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92CCFD77BFB537EAA48E8BD3 /* renderer.mm */; }; + 3E6AA08E72A030D39D867D4D /* ScintillaWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */; }; + 2563C775427E3D68BD384F30 /* richtextstyles.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D30617843F33310089C1F77A /* richtextstyles.cpp */; }; + CDC0FF253B503BA19693D68E /* xh_propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */; }; + FECC98B53C0F3106AB04E69F /* tif_fax3.c in Sources */ = {isa = PBXBuildFile; fileRef = 30FD1048328234E59D319863 /* tif_fax3.c */; }; + F7D10B6E0CBA32EFAF79C77E /* xh_dirpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */; }; + C259D01CC62533D296EF023C /* scrolbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */; }; + 056E30EA43753A7CB1AF8CA0 /* strvararg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EEAD9C3E180305D8899441E /* strvararg.cpp */; }; + 664A54F914443110B7BB692A /* tglbtn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */; }; + 052331773CF6362C9A6CF390 /* utils_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EED7C691150139EFA35E8EBD /* utils_osx.cpp */; }; 8C2B50E3FC7A37C58CC9DC0C /* colour.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8B73BB8C0391E9EC1B2D1 /* colour.mm */; }; - BE3ED6EF34303867B8C8E923 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = D4C4495603293C07A3B09D54 /* compress.c */; }; - 9F608A33D52D327FAA295626 /* sckfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56653FACC7D13804A70556AD /* sckfile.cpp */; }; - 2989056891153968B372EA16 /* pngwutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 45D7558DF5E03A2EB41883F0 /* pngwutil.c */; }; - E7F35B834A163C67B65176C8 /* tif_dirwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */; }; - 1E166FC1A7B3371FB038B174 /* fldlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */; }; - CA85901B9E2538CFB7E44218 /* process.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B35DA585CFDD32468868E892 /* process.cpp */; }; - AEEE6BC41B6531898A61CB17 /* LexHTML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D87406BCF3E833369E12D89A /* LexHTML.cxx */; }; - 46327A3C356D3570B27C6703 /* Lexilla.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */; }; - D6CF7416CA6A3CFF8FDFD49D /* nativewin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9BC8BFDE41F93504B7A51D08 /* nativewin.mm */; }; - 0D6596A44A8C37DE85D578F8 /* Document.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 71DB140E670738839EC42C2B /* Document.cxx */; }; - 95AD56D602CF3C5085602AFA /* geometry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC0A61629E635FAB4E09505 /* geometry.cpp */; }; - 61FEDBF2D47A3B4E861F8299 /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F4 /* sound.cpp */; }; - 6F5A0D3C7763334396A3783F /* LexCmake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */; }; - E9EDB5C92D5D3B529E8D73B2 /* valgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7440859617F3B47AF4D3817 /* valgen.cpp */; }; + FDE14459359334DE9FB03ED7 /* xh_scrol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66411D54BAD338498AC59401 /* xh_scrol.cpp */; }; + 6C822F7F313734DCB51F44BB /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81A30C745CA73E30B788B408 /* image.cpp */; }; + 0E024D145DDD38ACAE68F464 /* toplevel_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */; }; + 692FCCABFB963696AFC1E124 /* gdiobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */; }; + 37749AC3468836FC857BD0D7 /* checklstcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */; }; + D17E3053DA0D3F7EA4D0951C /* helpdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81821049E39B32C6ABCF6820 /* helpdlg.cpp */; }; + 7E6C627A325F32FFB2EF9BA0 /* caret.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A82EDCFFBAC30098B238957 /* caret.cpp */; }; + 699D88EE2DAA3594B6606892 /* ViewStyle.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C133B838193A35ABBB803151 /* ViewStyle.cxx */; }; + 9564A6968D66325DAEADEBA4 /* dcgraph.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */; }; + AC91349D7F0E37739B1F5167 /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEF6B3FB66243812969E5BD1 /* palette.cpp */; }; + 8A4046BD38873D9CAC9C2B5B /* filesys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F263022F3FEA3F75895B644D /* filesys.cpp */; }; + 10B5C2A72C713A678458CD9F /* pcre2_ord2utf.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */; }; + 5AEA6E94FB76371D928D371E /* LexMatlab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC9153A350893820B942D37E /* LexMatlab.cxx */; }; + C67EAE20657E36839BF86692 /* richtooltipg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */; }; + 2CAD4DF9505F36E4A2EAD53F /* helpdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C466F32CCBD13DBC87285B3D /* helpdata.cpp */; }; + 0C2CBD7246993527A829BD96 /* LexDataflex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */; }; + D13AE659C3AC37B68D39B2CB /* LexLout.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B14D6E7E15FD3C869E341198 /* LexLout.cxx */; }; + 97C551F8AEF133D680D1FD37 /* LexProgress.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */; }; + 1937FBA0A0DD32A8A743CFE3 /* valtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8701E1CF2B352B945C17E5 /* valtext.cpp */; }; + 6167245C417A32179EC37D2F /* textfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0903EE9B3793303285FF96E3 /* textfile.cpp */; }; + 097BC5E023C33C1DA05606B1 /* Selection.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2AF7739C389536F79DAA31E5 /* Selection.cxx */; }; + 633DD2E870263F42A8DBF9C0 /* markuptext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */; }; + 61C3F7D495FB3E8BA402E4FA /* jdmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 20E4A10BCD773C84AEC481A1 /* jdmarker.c */; }; + B1775EF7C72233408044034D /* radiobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 773D91F8280434519BD167EA /* radiobox_osx.cpp */; }; + 403FBA20CEFE3EAFB4E6B906 /* dir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7332A03D93D3DABB050615D /* dir.cpp */; }; + BA7B12396B873FDA8F3A274A /* xlocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 418AD9241B673308BE31DC06 /* xlocale.cpp */; }; + 47EBBB18BDB539C2A948C713 /* chm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E24C6F2A04E30EB95598305 /* chm.cpp */; }; + F34D240EB4513FE996179184 /* xh_mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */; }; + AE660214E0CB375FBA508A38 /* uilocale.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1B794996B953D00AC7BC2AE /* uilocale.mm */; }; + 6A081BF19747385CB4C18781 /* radiobut_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */; }; + 7F77E347E1243D77A666FB44 /* clipbrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */; }; + 2E059BFE8E3B3D9299D5596B /* textmeasure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B31409EC6532FC83B0B957 /* textmeasure.cpp */; }; + CE32C5250F2834D4B81BE899 /* appprogress.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD91A34971FB3D0299B894A5 /* appprogress.mm */; }; + F72020415D713C1BA41C17D0 /* richmsgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */; }; + 94E510619F433AE3AC884757 /* xh_bmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */; }; + EC3D181D65F33E09A675FFF4 /* addremovectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 964578C24B9F390AAD08576E /* addremovectrl.cpp */; }; + 5116CE330E333724A66982E5 /* rearrangectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972BC9B2B0D438EFB12BCE1E /* rearrangectrl.cpp */; }; + 96927C5A21FD3ACF936CDF6E /* renderg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49CABA38E78D34DFA260AA06 /* renderg.cpp */; }; + 7EB83F6375BF3E73ABE56C42 /* jcarith.c in Sources */ = {isa = PBXBuildFile; fileRef = AA234ACC79743DA797601AA6 /* jcarith.c */; }; + 3B7E035ECF3D3FFB9827AC1E /* xh_dlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06B4A895955B32258DCD62BF /* xh_dlg.cpp */; }; + E7D02E64384F37BC8939A2C5 /* jdpostct.c in Sources */ = {isa = PBXBuildFile; fileRef = 375FF97B202F3C359402D13E /* jdpostct.c */; }; + 9EC837DA722736119D49868B /* pngpread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CAA325362C73AC8BE20FAA7 /* pngpread.c */; }; + FD3B31CE1E7832218B5D9A17 /* LexPO.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3430B6483E35C3A201BF44 /* LexPO.cxx */; }; + 8A662992FFCB32E99D11950D /* commandlinkbuttong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */; }; + FB09720D13673A7B81BCB646 /* xh_datectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C63C964DAFAD311694367C94 /* xh_datectrl.cpp */; }; + 5FE969523BDB3353AEF96812 /* xh_filepicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */; }; + 0836590D35FE37988DE70444 /* combobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */; }; + 26649553E4763EE6BA268B7F /* xh_gdctl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */; }; + E7AF3BF2B3473AD9BE66D1A3 /* xh_clrpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */; }; + 0743AE8613F535A0ABB79317 /* intl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC8BB1AABB3D393EBA527060 /* intl.cpp */; }; + 8F949B9010863F66A58FFEF3 /* xh_activityindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */; }; + 8B38C6C416BA3A51B37F60C6 /* statlinecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */; }; + 2480859662ED399799E120A5 /* pen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA819575B5136B09FA8FEB1 /* pen.cpp */; }; + 595DCB164D55342EB86604EE /* hashmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6636144CDE83E8E85270FAF /* hashmap.cpp */; }; + 020BBB417207393F8C60EFB7 /* LexFortran.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86A0C3603C8A343AAFBD2CE0 /* LexFortran.cxx */; }; + F3AC352D6DAE3A12A5664769 /* styleparams.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */; }; + 980ED1DA2F96361985952255 /* webrequest_urlsession.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */; }; + A486A28E216D320AB57452D5 /* lzmastream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */; }; + A9B91FC69E473BE18895ABAD /* InList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCBD877191233EE9984112D2 /* InList.cxx */; }; + 22C76BF2C3E331CD87657E70 /* LexNsis.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1BC0322549563787A21CE8F1 /* LexNsis.cxx */; }; + D00AF125FCB63A7A8F9B87E0 /* taskbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4692909E4B823F71822B13F8 /* taskbarcmn.cpp */; }; + 2C53221A318E37529E6460ED /* tif_fax3sm.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */; }; + 27759C2FBB0E35FDA847B2B7 /* LexForth.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B181F564935730E89AB00D92 /* LexForth.cxx */; }; + 6C3A459236F736B8A14A13AD /* dialog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83B878A16ABC396E8C03A15E /* dialog.mm */; }; + 25656617A56D342AA3D1BFE4 /* ctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */; }; + 15048519756B33959B15B163 /* floatpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A881F49ADCF33C299B041584 /* floatpane.cpp */; }; CA155860CE9A3A8189C3A4C4 /* zipstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */; }; - D17E3053DA0D3F7EA4D0951D /* helpdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81821049E39B32C6ABCF6820 /* helpdlg.cpp */; }; - 61C3F7D495FB3E8BA402E4FA /* jdmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 20E4A10BCD773C84AEC481A1 /* jdmarker.c */; }; - F89405757B063F80B111F46B /* datetime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0EBCDDF248638B58B01D9CC /* datetime.cpp */; }; - 0A2A4D2DC8F63FE1AC0BFAB1 /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2024D29170D3B50A4DFDE11 /* base64.cpp */; }; - DB244DC0A09C379AAA63C0A6 /* bmpbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */; }; - 527054445A0D3A00A5C2EC46 /* tif_thunder.c in Sources */ = {isa = PBXBuildFile; fileRef = 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */; }; - ED8D23D79FF33ED380FE09ED /* scrlwing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */; }; - 249C9177B1A33EFEAB30F941 /* tipwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */; }; - 65FCDBFFF3F138A3ABBAA652 /* xh_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */; }; - 268DDC88C99A3A64AB8B2FFC /* LexCaml.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B3B8AD0120F3EA6BF5B0AE0 /* LexCaml.cxx */; }; - 923F4797A73A3BDD87BBD1E3 /* LineMarker.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AF3DF03795153E039B8F1F87 /* LineMarker.cxx */; }; - 00E12455C98032E18378EE60 /* pcre2_newline.c in Sources */ = {isa = PBXBuildFile; fileRef = A208BFC0C8C43847A9620ADA /* pcre2_newline.c */; }; - 9E0B67E34B683412978BA82F /* filtall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */; }; - 2D60F289103837EA8925E3F3 /* dcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1EE17722EA937E88A7F0C01 /* dcbase.cpp */; }; - 9836B3D336963795928FE5A3 /* m_dflist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52FE1599218730CC99A3F801 /* m_dflist.cpp */; }; - 27E2EABB117334CD89CFD2A6 /* mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B568A7364ECA30288820CCE7 /* mdi.cpp */; }; - 75DCE6FF00E93C5D93970844 /* arttango.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9988CBB0772A3539970162FA /* arttango.cpp */; }; - 61A2B54FD2E33C759CF5A5EA /* pngrutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 358D0A3AC73F322EA732D020 /* pngrutil.c */; }; - F3AC352D6DAE3A12A566476A /* styleparams.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */; }; - 383A6993E90936D39A5F12BF /* headerctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */; }; - 4657E7382E9E3EDC8DE2401F /* mimetype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C97C1F26B5A38C49543060C /* mimetype.cpp */; }; - 86AED49CEAFC3637B1F10539 /* dialog_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */; }; - 58AABAD40AA236438347DDDF /* evtloop.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D2549709E0133C9A267E3A5 /* evtloop.mm */; }; - 63F895D6F5643E4B9E666B7A /* creddlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */; }; - C8F1FB8C029031A5909DBC58 /* KeyMap.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */; }; - BF068F3C06473D8CBC55D509 /* PositionCache.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BCD873D873A53BBF955D8A4E /* PositionCache.cxx */; }; - B6728BCD1A0731299924C8C6 /* pcre2_substring.c in Sources */ = {isa = PBXBuildFile; fileRef = 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */; }; - 9B6A35E706543CDAA6A5014C /* LexGui4Cli.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */; }; - D542C7819D593112AE5F7C3E /* combocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */; }; - 62F1DC80D631335B892610AA /* splitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C125FA3837C631A9BE0ED5E7 /* splitter.cpp */; }; - 069D53F2DFBF370A8CC99632 /* LexCSS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */; }; - A1A7D793B034398B8696EF36 /* utils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 789F45D14FF23E248FCFB5FA /* utils.mm */; }; - 8093A858CA9E3E9EA2D21861 /* jdarith.c in Sources */ = {isa = PBXBuildFile; fileRef = FA9DD56E399533A5BE7AAD16 /* jdarith.c */; }; - 1DBDF75500D73A3098015E81 /* cfstring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */; }; - 9CA687845B3F30CCA44A89D2 /* choicbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */; }; - 675B4E6CBA8632E89B4AC26F /* textctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4E16323A43E36DC8024EDF1 /* textctrl.mm */; }; - 319FB8E64CE731D6A58AD303 /* clntdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C904B4BA8273355869812B2 /* clntdata.cpp */; }; - 2B13BFC894C63373B7ACFA3F /* xh_hyperlink.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */; }; - 87AA9C5D887B3C31A2AFB49E /* htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD5F11A3646F397BA62EB037 /* htmllbox.cpp */; }; - BCD81FD3D1EC305F801E1C1C /* sckipc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */; }; - 9E37D29DCF7A3945A0EECB3A /* pcre2_serialize.c in Sources */ = {isa = PBXBuildFile; fileRef = BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */; }; - 830A61EA04FD367C9EB6A758 /* fswatcher_fsevents.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */; }; - 8C52B1985BAA371FA22CCEBD /* combobox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57C06D5DB5F733A4A235B206 /* combobox.mm */; }; - BEA90F2C6BB93143958F899C /* propgridiface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */; }; - 0ADC8DBEE80D36B0BB9B058C /* LexASY.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A82C367B86F83981803D55DB /* LexASY.cxx */; }; - 745C39E90E8C3C08A887B51E /* msgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */; }; - C6DF6F29407B34F29ED1B66F /* jcmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E3043D7BE9C33B59E900CCE /* jcmaster.c */; }; - E05B06A7FEEE32D5AD87EA51 /* xh_editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05310A868F0B35999C568681 /* xh_editlbox.cpp */; }; - 20BEEFFA08F3396791596872 /* dlunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA2D9F325F833C408657E7B7 /* dlunix.cpp */; }; + DF8124E5E17D386A84CEEA29 /* LexLisp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 40586C8986443431A64EB066 /* LexLisp.cxx */; }; + B5C7FD8C27F43F3289A77FCB /* utilsunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */; }; + 4DA9DE940E043C58BEACBB57 /* UniqueString.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */; }; + C005C2D547E735E9B0816590 /* prntdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */; }; + A874AF0B203D3DC99C27469C /* LexNimrod.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */; }; + 61FEDBF2D47A3B4E861F829B /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F5 /* sound.cpp */; }; + A4F2426F36653C6D87EC18B0 /* activityindicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5814208070CF3D899F132BA1 /* activityindicator.mm */; }; + 64F11C549E3035DF85691062 /* tif_ojpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */; }; + 31380AD4F5BD38A6B9212FE2 /* LexR.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7255468B6D5F3D8697994A53 /* LexR.cxx */; }; + AC0B0C52922B30188AE95E96 /* tabart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51054B41BFD83E97BAF76D07 /* tabart.cpp */; }; + 20D05D14BFAD3F969666D03C /* timectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA0840034F1386F94D17639 /* timectrl_osx.cpp */; }; + 4AEC67BF65B039D99F421668 /* statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C87B071E3593A889704F512 /* statbar.cpp */; }; + D66F5D4D204B3B789C7F76BB /* fontdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18044326B5B13A98A49732DD /* fontdlg.cpp */; }; + 39D6435B10073B85A499AFDA /* dcbufcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBC5A5797B0D369291A76D6E /* dcbufcmn.cpp */; }; + 682403FBBD4E3D5E88159503 /* CellBuffer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */; }; + A2473402D8B83628B1F6674B /* wxprintf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 607EF0043E723B7B9BE101EA /* wxprintf.cpp */; }; + 4BAFAE70A6B1313B96D86632 /* page.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59ED0C057D8F388A89DC7177 /* page.cpp */; }; + 793F542F20AB31F6AF736796 /* tif_open.c in Sources */ = {isa = PBXBuildFile; fileRef = 1731A6096BFC3A468AB4755A /* tif_open.c */; }; + 10743B74A58231639C6BF612 /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = 400275BE019D3E5BA47988BE /* inffast.c */; }; + CD241361D4693785A0B8939D /* StyleContext.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */; }; DFEB01E7B97A3515B785DCAB /* pcre2_string_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */; }; - 056CA84179433AA48D55DA66 /* bar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FDDE855D9F83E4891362EB4 /* bar.cpp */; }; - C40AA245D5773351979A2851 /* filedlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = DC8A52CA69053B27B09F1037 /* filedlg.mm */; }; - F6B85CD918E93923BE631B97 /* fs_filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */; }; - 31FEAB56919D372993CAD89E /* pngrio.c in Sources */ = {isa = PBXBuildFile; fileRef = A06AB1974DB93EE2999EC75C /* pngrio.c */; }; - 427E6AF88CF73D799206E37F /* checkboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FC2F076657431458896115A /* checkboxcmn.cpp */; }; - 07EC76232BB3343FA5CB90B2 /* LexAVE.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */; }; - 2FA1A8FE3644325ABAD273A5 /* fmapbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832BBBFE664736D5978420C6 /* fmapbase.cpp */; }; - E8EE34F0A78C31B489B19FF0 /* LexMSSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C71BF55495034FFBE653C80 /* LexMSSQL.cxx */; }; - F07D84D124F23E7FA11CF14A /* extended.c in Sources */ = {isa = PBXBuildFile; fileRef = 033B94A9AC8A3370A794503F /* extended.c */; }; - AC91349D7F0E37739B1F5167 /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEF6B3FB66243812969E5BD1 /* palette.cpp */; }; - E515EAE375AE390688CBF8D5 /* pngtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B32A13D5B3336098B1B9765 /* pngtrans.c */; }; - 353B584AD0C03919A57A304A /* affinematrix2d.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD09A813E10A31C19554B425 /* affinematrix2d.cpp */; }; - 22E90F33B5C9308EBF37A702 /* printdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9E32802E8ED3E729FF34CFC /* printdlg.mm */; }; - 056CA84179433AA48D55DA67 /* bar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FDDE855D9F83E4891362EB4 /* bar.cpp */; }; - 61FEDBF2D47A3B4E861F829A /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F4 /* sound.cpp */; }; - 27E73CA5C35A30CE89946ECC /* slider_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D215A0D67563350CB4EECB06 /* slider_osx.cpp */; }; + 2480859662ED399799E120A6 /* pen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA819575B5136B09FA8FEB1 /* pen.cpp */; }; + 127E255EE601383A9E0EF7EC /* menuitem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61548D0FE1353D7C846DD721 /* menuitem.mm */; }; + 060E095718B03EF98C75479B /* treelist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5190E3E110443FD29F2474FC /* treelist.cpp */; }; + 3C5E1A45A57B3169A4C073DA /* LexVerilog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */; }; + 6292B023DBF4337A91404AD2 /* preferencescmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A046179831F63824A67B509B /* preferencescmn.cpp */; }; + A36B5107860E326591940740 /* LexPython.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CC2713393AB132AA8E337AE1 /* LexPython.cxx */; }; + AE84BC9A1CCA3ADA9C483952 /* xmlrole.c in Sources */ = {isa = PBXBuildFile; fileRef = 59C6B9849FF6325E890942EF /* xmlrole.c */; }; + EA02FA6D3B003F8F8A2963C8 /* toolbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */; }; + 1C52CB9487DF3AB9AF243B49 /* prntbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 242BF97B558634A79322052C /* prntbase.cpp */; }; + AAC2AC9C49F1366D8BD20F60 /* LexECL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1AD9605C9385374C87FAC9BC /* LexECL.cxx */; }; + B0C44C3054CB3E0590DDCBDC /* LexJSON.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */; }; + 3C36437B2E933F83984D4320 /* imagtiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */; }; + 4301AFBA0A193A7EB392EB94 /* LexMake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3D5F00FC91343C35AF99F708 /* LexMake.cxx */; }; + 1AB50C98FF473B33A3CA4D3B /* xh_cmdlinkbn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */; }; + CD241361D4693785A0B8939E /* StyleContext.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */; }; + 62331487C17B32E081B8FEA8 /* LexLaTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */; }; + 51F44CB1D9AD3CBDB52EE93E /* LexDiff.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */; }; + 4C9BA36123E43589956864C7 /* Style.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C28429A964C337A192D76CC8 /* Style.cxx */; }; + D4EC9DB5F8DF319EA0FD26A6 /* LexVB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F633793051F371F94C27530 /* LexVB.cxx */; }; + A283187810EB32DAA173BD35 /* artstd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24E82A05E9A9323287CDB15B /* artstd.cpp */; }; F5FF98C231B33E3EB7902C66 /* colordlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = DAAED71A534135A9A61612A6 /* colordlgosx.mm */; }; - C8C68927DB243AEAB51E11F4 /* pngwio.c in Sources */ = {isa = PBXBuildFile; fileRef = AF9EE701DD653E2299293E5F /* pngwio.c */; }; - D542C7819D593112AE5F7C3F /* combocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */; }; - E7D02E64384F37BC8939A2C6 /* jdpostct.c in Sources */ = {isa = PBXBuildFile; fileRef = 375FF97B202F3C359402D13E /* jdpostct.c */; }; - 702616D38A5B345D9CC87115 /* xh_bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3116006345D833509865FF7F /* xh_bannerwindow.cpp */; }; + 98DF13E96160304EBB905E75 /* jcmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = 810EB7316DF3344197C78EC0 /* jcmainct.c */; }; + 1DF3A4F85FCB3BA79A552F3F /* menuitem_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */; }; + 0E60E17BA4B23347A4F20162 /* gdicmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998D611109EC33A9A6A11C5A /* gdicmn.cpp */; }; + B59FC7345C383D9099391AC4 /* mimecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */; }; + 03035C5CE4BC3288A5A18426 /* choicdgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */; }; + B791BD05072B3B909A7093C4 /* dcsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */; }; + F6A1AC5CF84E32C19F91A616 /* statbrma.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1F2E9C9052D3E53BBD17DE3 /* statbrma.cpp */; }; + EAA469E1A0CC33E4A21A3F7C /* gaugecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */; }; + 7C5552FA058034238F485902 /* dbgrptg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 182C8AD4F822375495795B43 /* dbgrptg.cpp */; }; + 7F77E347E1243D77A666FB45 /* clipbrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */; }; + BE3ED6EF34303867B8C8E925 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = D4C4495603293C07A3B09D54 /* compress.c */; }; + 633DD2E870263F42A8DBF9C1 /* markuptext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */; }; + F9C5EAC42CCF3267B4100BB0 /* wakeuppipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */; }; + F72020415D713C1BA41C17D1 /* richmsgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */; }; + FBA19C939E1E33EDB0504400 /* cairo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */; }; + 135DFCE48FC03D8294D01A8B /* xmlrsall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */; }; + D6C3421AD2A537AAA2F0AB81 /* file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 168DB301ACC736FF96D7F581 /* file.cpp */; }; + 570FA90F526E3F25A8E8FCF3 /* tif_read.c in Sources */ = {isa = PBXBuildFile; fileRef = 64B25B87203E3464BCDD277D /* tif_read.c */; }; + 1E17F95DD433379E8C18298D /* odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */; }; 512AB7B82D57387EBB7BEE29 /* LexFSharp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F8AD617806563DE394C15922 /* LexFSharp.cxx */; }; - 3DA70DE666D838A59642A4E8 /* LexAsciidoc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */; }; - 9FA6C4275F0D3E1A884ED563 /* pcre2_auto_possess.c in Sources */ = {isa = PBXBuildFile; fileRef = C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */; }; - BE3ED6EF34303867B8C8E924 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = D4C4495603293C07A3B09D54 /* compress.c */; }; - 55D893FDD00633FEA82ABD84 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */; }; - 774EB9F3F7E93A379E1F7553 /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C4762898E5330C28651EE73 /* graphics.cpp */; }; - 2DBF5F96CCC63F7481C26A45 /* webview_webkit.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FEECFD764E037288CE94FEB /* webview_webkit.mm */; }; - 3E99016BDE043A08B4D6B3D0 /* htmprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 194ADD28300E329E80F7892E /* htmprint.cpp */; }; - 5303FA25D0773FAEB963D8E5 /* scrolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = CC2E24773D853A77B9FEFA4C /* scrolbar.mm */; }; - D66F5D4D204B3B789C7F76BA /* fontdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18044326B5B13A98A49732DD /* fontdlg.cpp */; }; - 5FE969523BDB3353AEF96812 /* xh_filepicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */; }; - B30D10F6257631B0A1926F8B /* statbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 926BDF9C386C3A9A8C24D453 /* statbox.mm */; }; - B8FEEC2C94183AB69C963179 /* headercolcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */; }; - 91EA325FCE3A3A6A8D1D21A7 /* srchctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */; }; - 8FB5FBC5730C33F1A3D85DA1 /* LexD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */; }; - CB1F37993ECB3B73A51B42FE /* LexMySQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F3EE2E9EE05311497826962 /* LexMySQL.cxx */; }; - 86BE5213D3F131D8A686267B /* hid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 160EB9744CB63A0B81DC651F /* hid.cpp */; }; - 699D88EE2DAA3594B6606892 /* ViewStyle.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C133B838193A35ABBB803151 /* ViewStyle.cxx */; }; - 56E1ED31F7CE38978F4A7CA2 /* LexProps.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DE0102314288305D830B9EFE /* LexProps.cxx */; }; - 127E255EE601383A9E0EF7EC /* menuitem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61548D0FE1353D7C846DD721 /* menuitem.mm */; }; - AEEE6BC41B6531898A61CB18 /* LexHTML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D87406BCF3E833369E12D89A /* LexHTML.cxx */; }; + CD241361D4693785A0B8939F /* StyleContext.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */; }; + 57F8001809BC3864A5FA798D /* PlatWXcocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18ABDAF9EF723072A7708009 /* PlatWXcocoa.mm */; }; + 67CE7065EE593DAAA2CE448B /* LexEDIFACT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */; }; + 9455B49669853E71BD4FD966 /* richtextformatdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */; }; + 5C5D0983160A36189A770744 /* webviewarchivehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */; }; + FEA741A9B6663A4C929893C4 /* aboutdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */; }; + AF1E3338E892336E924AF633 /* pickerbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */; }; + 99E7A46106C03484BA70D2A0 /* tif_unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D2F8259CC99380CB8217DEF /* tif_unix.c */; }; + 23479484EC143D34871550C3 /* textmeasurecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */; }; + 2CCC30C0162131DBBE9D8029 /* dobjcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */; }; + 3C5E1A45A57B3169A4C073DB /* LexVerilog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */; }; 164010B26D363F5FA09785B8 /* listctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1B1FBB2BCC43BA7A45E9438 /* listctrlcmn.cpp */; }; - 1AB50C98FF473B33A3CA4D3B /* xh_cmdlinkbn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */; }; - 2EECB3C2F9523D0B95847A81 /* accel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C78A1539462370CAA429508 /* accel.cpp */; }; - 4E2737AC738431EB9898B8B8 /* gzwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */; }; - 07412469921A3E488A2F9BA8 /* checklst_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */; }; - E7140F3AB94D3FDFA86D8C08 /* url.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49612306912038DDBCABB4DE /* url.cpp */; }; - 2DF74933A90E34129F1BEF74 /* dnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA72410F615B3A78A6340532 /* dnd_osx.cpp */; }; - 3357BD0518F538E9A949F888 /* xh_tree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */; }; - 21F74D4D4D84375AB155FD5D /* stattext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95186FEF3DEF39D8B1157BD5 /* stattext.mm */; }; - BE99A85EE76236CC8C719A66 /* xh_gauge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */; }; - 42AC484FDD7D3E948CEA801E /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = B5370A676AAC32419D7FDD87 /* inflate.c */; }; - 4279D39CAAF834F6A5B99198 /* persist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D9626646773CED82449D5D /* persist.cpp */; }; - 1D726139C977341A97D0C933 /* datetimefmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 864438709B363773B8C3382D /* datetimefmt.cpp */; }; - 78E15D8200F635529F39609B /* LexBullant.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6718204F4700318E89EAC906 /* LexBullant.cxx */; }; - E1A20811148F31D289AF98B1 /* xh_sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */; }; - CB2E99E8FB7D3269A333A560 /* window_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26D7C4995D7A35A1854B533F /* window_osx.cpp */; }; - D66F5D4D204B3B789C7F76BB /* fontdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18044326B5B13A98A49732DD /* fontdlg.cpp */; }; - F2813BF297C73A3ABD02EC9A /* glcanvas_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */; }; - BA7B12396B873FDA8F3A274A /* xlocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 418AD9241B673308BE31DC06 /* xlocale.cpp */; }; - 4657E7382E9E3EDC8DE24020 /* mimetype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C97C1F26B5A38C49543060C /* mimetype.cpp */; }; - 2D4D105CA9BE3FA6995A6001 /* tif_dumpmode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */; }; - 91BDA5B04CF33C9AB7358B8C /* timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69F098E47EBF34368ABAE7ED /* timer.cpp */; }; - F5D2146C94E733FAAB6D286C /* threadpsx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB466912FDA23F8B87A00A3C /* threadpsx.cpp */; }; - 604ABF86317C3D4F899DBF38 /* richtextsymboldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */; }; - 41943A8F82723027A151A46A /* fileconf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */; }; - 86787E4138CC334BB74EC7B6 /* palette_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */; }; - 1CD4F67F48CF3A5FA477D870 /* datavcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */; }; - CB1F37993ECB3B73A51B42FF /* LexMySQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F3EE2E9EE05311497826962 /* LexMySQL.cxx */; }; + 45E15DBB6B69382D8AF1BA22 /* pcre2_dfa_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */; }; + FD1F6CD8286D3D428FD52A2A /* filepickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B580FD04D0D83601826FD5EE /* filepickerg.cpp */; }; + A139B846584436BCBEBAE3C1 /* grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76337016F2CA3C85831702E6 /* grid.cpp */; }; + BD2B17EB72E73A6EB6E0B271 /* dcmemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 343D4FDD5CC030618EF24729 /* dcmemory.cpp */; }; + 46395873DB1C3B7FA81DE5FA /* LexerBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */; }; + 567A32722BA33AEE9FF93D7E /* fs_inet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7581D7140293BAE88E43DBE /* fs_inet.cpp */; }; + F55F3887CDE633D7877C607D /* LexSmalltalk.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */; }; + AE95E3BDEDB7358DBE9E7E5C /* webview_chromium.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2718D06670953933B897B0D8 /* webview_chromium.cpp */; }; + 91BC7802C15337CDA84C3744 /* statline_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */; }; + 46E331300D8F349DB36AB50C /* imagpnm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC12B97F233B3B9494DA217F /* imagpnm.cpp */; }; + 09A792A5129E3FE1BF077642 /* tif_jpeg_12.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */; }; + 9744994E8A813AA6938A7CE3 /* textcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */; }; + 049052C49B0B3810BE0179CB /* dataview.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB6963739198360DB3DBCC6C /* dataview.mm */; }; + 9EC837DA722736119D49868C /* pngpread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CAA325362C73AC8BE20FAA7 /* pngpread.c */; }; + B0FD1B96EAE635AFBFCF2C96 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C045 /* secretstore.cpp */; }; + F89405757B063F80B111F46B /* datetime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0EBCDDF248638B58B01D9CC /* datetime.cpp */; }; + 09A792A5129E3FE1BF077643 /* tif_jpeg_12.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */; }; + E7D02E64384F37BC8939A2C6 /* jdpostct.c in Sources */ = {isa = PBXBuildFile; fileRef = 375FF97B202F3C359402D13E /* jdpostct.c */; }; + 5388468A6F8F3141B25CD402 /* treebkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7925E38823563BCDB5565DCF /* treebkg.cpp */; }; + 36DB80FD5B153E9099DB6914 /* imaggif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */; }; + B6891F848CA0325EAB6D1375 /* textentry_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777385D10CCC350C90F02824 /* textentry_osx.cpp */; }; + D3FB75C8E3A73AE38EE8A6F8 /* selectdispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */; }; + 9E37D29DCF7A3945A0EECB3A /* pcre2_serialize.c in Sources */ = {isa = PBXBuildFile; fileRef = BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */; }; + C425A172B0AB3EBD9AC9A590 /* ustring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B63EBEE1A04537E7887E9FD0 /* ustring.cpp */; }; + B8A98F209934399DA45C2388 /* fs_data.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */; }; + 0B98B6721DEE37A1ADEA382D /* quantize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B890199A37723EFD86C0ADA5 /* quantize.cpp */; }; + A36B5107860E326591940741 /* LexPython.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CC2713393AB132AA8E337AE1 /* LexPython.cxx */; }; FADD46CB89B135D1AF1D5F8B /* richtextstyledlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */; }; - DC7D78BABF823480B56528AE /* xh_propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73962222F573116BE63576C /* xh_propgrid.cpp */; }; + 539B586AEAD630A79FC12ED1 /* sstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46EC1508C063C8395CE7A95 /* sstream.cpp */; }; + 62331487C17B32E081B8FEA9 /* LexLaTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */; }; + 7DEC57D6CE8232A09EF7421B /* PropSetSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */; }; + F910C74E48823E0BA7F7885F /* graphicc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BACAA6CE4A0934459F26B27C /* graphicc.cpp */; }; + D3EC9191D94837CABFF05DC6 /* LexNim.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B1AA9AF75D233FFC9FC90E7C /* LexNim.cxx */; }; + 46CE8B53D2663927AAE5DF9F /* xh_treebk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */; }; + BF2585CFA6853023975F1E7A /* iconbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */; }; + 213CE0DD5B2335D0AD53B54C /* gzclose.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A24E9101688368296C21EBE /* gzclose.c */; }; + 78E15D8200F635529F39609A /* LexBullant.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6718204F4700318E89EAC906 /* LexBullant.cxx */; }; + 46A4CCF128FC3EB092074DC7 /* property.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E1F571B01F34D4AB70CA18 /* property.cpp */; }; + 45E15DBB6B69382D8AF1BA23 /* pcre2_dfa_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */; }; + 523FB2A8435A3324A8E1B372 /* PerLine.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9389DAF8B91030B7AAB029FF /* PerLine.cxx */; }; + B59FC7345C383D9099391AC5 /* mimecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */; }; + 82FA4AA043213728AC266702 /* wizard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */; }; + E0E4885BF4AF34B48EB08B94 /* volume.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6506A965F677374491359FB8 /* volume.mm */; }; + 6E1FD7D3DEF03748AEE3A29F /* listbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = D324650313003AAD96E12962 /* listbox.mm */; }; + AAABEE399008310A8BC9BE45 /* imagtga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7029BB5751398AA02D8C24 /* imagtga.cpp */; }; + AEEE6BC41B6531898A61CB18 /* LexHTML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D87406BCF3E833369E12D89A /* LexHTML.cxx */; }; + 60706F8836A130A2AF282FE3 /* fontutilcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E00E14795F23A8392713A26 /* fontutilcmn.cpp */; }; + 89046455F49D3D75A21C9DBA /* imagfill.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 137E01C362E134449BF966ED /* imagfill.cpp */; }; + D772334837693C9D88069D9A /* tif_webp.c in Sources */ = {isa = PBXBuildFile; fileRef = 3716DA7B0C79360CBA26A71E /* tif_webp.c */; }; + D9F02AFDA07D3857A905527E /* jdcolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 68B81FBDA49D3C1991B6356A /* jdcolor.c */; }; + A465A43B756630F1944B5A58 /* vscroll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1629FA905F903324AA5BE72C /* vscroll.cpp */; }; + 4C9BA36123E43589956864C8 /* Style.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C28429A964C337A192D76CC8 /* Style.cxx */; }; + B839235BED6F3609BDB732BA /* dndcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */; }; + 0FA6E1E47F123FF4A902E4D4 /* xh_odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0080254545B9383ABDF2045C /* xh_odcombo.cpp */; }; + F5B0B26BD0803719A3FCB4D8 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E45F6DF601A34BCB3CC0206 /* adler32.c */; }; + F0D892C2618130FEAD46BB88 /* panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00969CBE3B8F32C78C195619 /* panel.cpp */; }; + 729091CC33C73C989B4E071B /* timerimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0401B7302088357BB6B7F16F /* timerimpl.cpp */; }; + 6B9EEA3CF2E536E3B1ADAC44 /* manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBED392D081335FA80523244 /* manager.cpp */; }; + 774EB9F3F7E93A379E1F7552 /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C4762898E5330C28651EE73 /* graphics.cpp */; }; + 9058997222493A7A859A4D4C /* richtextxml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C69E48C06BD23C178F650E42 /* richtextxml.cpp */; }; + 5E80C103F0853788A2B43E5F /* LexX12.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 17A8A93EF3C03546BE19F43B /* LexX12.cxx */; }; + F80C2290D67B345F9CF60087 /* dpycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A37E3D1FB4FB31AFAE88665A /* dpycmn.cpp */; }; + 9A178ED42D96329D8CBF9B8B /* tif_predict.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */; }; + C2E37E798F743A4199C86590 /* fddlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */; }; + D542C7819D593112AE5F7C3F /* combocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */; }; + 05814571E7A83F5DBFB6E4C7 /* msgout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E968913A9A593B258BD8EACB /* msgout.cpp */; }; + E7140F3AB94D3FDFA86D8C08 /* url.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49612306912038DDBCABB4DE /* url.cpp */; }; + 51D133EC44F830588FEEAEC2 /* LexHaskell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */; }; + C2B07E2ECDDC3833BDC9B28E /* arcall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75D0C937F2A03ADA8581A2BB /* arcall.cpp */; }; + 7D0E549020D33ED39751DFCA /* LexTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */; }; + 71CCB06E790C3C54BFF1199F /* LexSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */; }; + 3EB6B8528A0D3B6CADAE1258 /* archive.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02D2E8B5C89939CE90B99E2B /* archive.cpp */; }; + B84642DA949638A189032CE8 /* http.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F84F0DB790A23D92A193D2B4 /* http.cpp */; }; + 3DA70DE666D838A59642A4E8 /* LexAsciidoc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */; }; + C425A172B0AB3EBD9AC9A591 /* ustring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B63EBEE1A04537E7887E9FD0 /* ustring.cpp */; }; + DEB35F871F8E3B90AD207AF0 /* printps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF76670146413EEFA005206A /* printps.cpp */; }; + D54D3CA9E73336A08DB20707 /* LexBaan.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */; }; 11DD420E32FB3EFB9DA0AB5D /* jccolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EFF4707641D3F20AB602ED6 /* jccolor.c */; }; - 9E37D29DCF7A3945A0EECB3B /* pcre2_serialize.c in Sources */ = {isa = PBXBuildFile; fileRef = BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */; }; - D5C5DD83882B3227A1CCFE10 /* LexSorcus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */; }; - 62757F24C4EE3B84B6AE3F16 /* textdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D529E2668C23D94A7706C8A /* textdlgg.cpp */; }; - 1749412E53B9311DABA71DDE /* bmpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */; }; - B0FD1B96EAE635AFBFCF2C96 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C044 /* secretstore.cpp */; }; - BF8C33B7CB3A3ECE814A95FD /* tokenzr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */; }; - 246B4FF96BA135258FE45F51 /* encconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */; }; - 3D3EA1BAAD1833B1B48E9C88 /* xh_stbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */; }; - 5792675690843C6AA4125A74 /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77F5E7BCD9B2307D8DBCC052 /* font.cpp */; }; - 0FDDE8E193743F3A8CBDC67D /* richtextprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */; }; - A93D0E6F0871368EA8FC9FFB /* fswatchercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */; }; - 1B69C40CD7493FED9A272837 /* notifmsg.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9446ADCCDCD32E6BCF95599 /* notifmsg.mm */; }; - F501AB044AAC39DCB8C0B3E3 /* editors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C7F740A55E39FD890B3C7F /* editors.cpp */; }; - 064908348009398C8EA8497E /* fontpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */; }; - 807450BB072C3C0D9C52A3B8 /* LexGDScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E29A8279BAEE303B95C9D3C6 /* LexGDScript.cxx */; }; - F3CB42BB6D983675862C01F5 /* xh_toolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */; }; - 9FB1E1763EFA334CA0C07C4B /* tarstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */; }; - 49BEDFBC3661339D90EF6937 /* LexTCL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */; }; - 702616D38A5B345D9CC87116 /* xh_bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3116006345D833509865FF7F /* xh_bannerwindow.cpp */; }; + C6DF6F29407B34F29ED1B66F /* jcmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E3043D7BE9C33B59E900CCE /* jcmaster.c */; }; + FEB073547F3F3AC19D31F69A /* tif_tile.c in Sources */ = {isa = PBXBuildFile; fileRef = BD88495AF72531A28D2201D0 /* tif_tile.c */; }; + 3CDE2B6BF88D326189F069BF /* accelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A436B55DC44E3827A757A6D8 /* accelcmn.cpp */; }; + 07C769F64665317BA3E1AC92 /* tif_jpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */; }; + 800CFCEDBB7938338C65EEAE /* notifmsgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B233180893DB3328AF4847DA /* notifmsgcmn.cpp */; }; + ABBE59AC73E135D48965F20B /* xh_vlistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4466008861AA37CFB13A46EF /* xh_vlistbox.cpp */; }; + 1EDED99760B23A1999E75C14 /* imaglist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */; }; + EB206A0264AD3CAA9F68B8FE /* pcre2_convert.c in Sources */ = {isa = PBXBuildFile; fileRef = BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */; }; + C2D45B334BE03F6C941CA043 /* utilsexc_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95E2B80B2D7033808504DA8D /* utilsexc_cf.cpp */; }; + F2F2963D8ECC32D39FDBF103 /* tif_write.c in Sources */ = {isa = PBXBuildFile; fileRef = E9B992CB6C28339FB0CA5E27 /* tif_write.c */; }; + B97C178B47173E6AB0CE577C /* CaseConvert.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 274A156457C63EC5801029C2 /* CaseConvert.cxx */; }; + E882402BEE0330A080A65171 /* strconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FEB8204E530329FA085E5B8 /* strconv.cpp */; }; + FB09720D13673A7B81BCB647 /* xh_datectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C63C964DAFAD311694367C94 /* xh_datectrl.cpp */; }; EDD92822EBD93E86AE5A2ED2 /* slidercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8072CA67D19346ABF4D465F /* slidercmn.cpp */; }; - C40AA245D5773351979A2852 /* filedlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = DC8A52CA69053B27B09F1037 /* filedlg.mm */; }; - CCFD3144A22C3A87B67D88AD /* LexRebol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0D9828C9BD9633C1A8F4E0CD /* LexRebol.cxx */; }; - 729091CC33C73C989B4E071B /* timerimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0401B7302088357BB6B7F16F /* timerimpl.cpp */; }; - BFA6983551B4310DA7C8A406 /* jcdctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DBF3053414F3C448312165A /* jcdctmgr.c */; }; - 1FB1622D59593932B25C55BC /* LexPowerShell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */; }; - DF3B927516FB365E865A9782 /* LexerModule.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */; }; + D72D99FC424337CF9EDC2044 /* props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C20E46A504113C899B9DD9B7 /* props.cpp */; }; + 84997126352137E798CD258C /* spinctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59572A234F0636D78BFD9F6B /* spinctlg.cpp */; }; + E6CA1EB5550F3930BFE286CF /* tglbtn.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CFC6875EF4732E88E029065 /* tglbtn.mm */; }; + AD7EEB418C7930CB828EAF89 /* dynlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D272910EC35531E5B4D6E05B /* dynlib.cpp */; }; + 97C551F8AEF133D680D1FD38 /* LexProgress.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */; }; + 25B0940CABAB39CD90C6F3C7 /* intel_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 994AF74DF2A13FF09A215853 /* intel_init.c */; }; + 908957F65B7E36F8BF3858DF /* PlatWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47FF6D792CA234C395692118 /* PlatWX.cpp */; }; + 5F57C4908E5038D19D68ED7B /* gallery.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */; }; + 0813551C951A3AD1A5EF01B4 /* imagbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84098A475939BB9EE87E70 /* imagbmp.cpp */; }; + D759231BC07232C0A52515A8 /* LexAccessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */; }; + 8FB5FBC5730C33F1A3D85DA1 /* LexD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */; }; + 5303FA25D0773FAEB963D8E5 /* scrolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = CC2E24773D853A77B9FEFA4C /* scrolbar.mm */; }; + BEA90F2C6BB93143958F899C /* propgridiface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */; }; + 5DA146A9F7653F53BF5299EA /* spinbutt.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C4A7A93CAFC3E22A2A5F7F3 /* spinbutt.mm */; }; + FECC98B53C0F3106AB04E6A0 /* tif_fax3.c in Sources */ = {isa = PBXBuildFile; fileRef = 30FD1048328234E59D319863 /* tif_fax3.c */; }; + E104017EE1A4357DAF84E1E8 /* auibook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A298576700C33F018616E7BD /* auibook.cpp */; }; + CD35A576FD363FD49C3AC4B5 /* LexAda.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 375E7A99FF4C38FA9E223772 /* LexAda.cxx */; }; + EBA0986930DA3B59B2FB4F20 /* htmltag.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCCFF49F92B4323D9181CEDA /* htmltag.cpp */; }; + 020BBB417207393F8C60EFB8 /* LexFortran.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86A0C3603C8A343AAFBD2CE0 /* LexFortran.cxx */; }; + B181806CC34839E791E54BF1 /* xh_tglbtn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */; }; + 0A406D2D1ADA343891E3664E /* powercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */; }; + E1F7C51F411B3AF39476E48A /* fdrepdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F094B0B07DF33BCA6077BC0 /* fdrepdlg.cpp */; }; + 0730A107A2B935A9923C8EF4 /* filehistorycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7B3307E56B332769901E99F /* filehistorycmn.cpp */; }; + CE32C5250F2834D4B81BE89A /* appprogress.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD91A34971FB3D0299B894A5 /* appprogress.mm */; }; + 2480859662ED399799E120A7 /* pen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA819575B5136B09FA8FEB1 /* pen.cpp */; }; + DB244DC0A09C379AAA63C0A6 /* bmpbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */; }; + CF3082BA1ED232F4B904BD15 /* stdpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */; }; + 7CC211E10D853B958250A4D0 /* LexModula.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */; }; + AB58406CEBA13BC4A2A83B68 /* printmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */; }; + FE9A662A1F9B34D099C45C1F /* xh_cald.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 093B5233861B3F9B8C85762B /* xh_cald.cpp */; }; + BAA75384DA82370298672335 /* helpctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E433D1700631A8907B8227 /* helpctrl.cpp */; }; + 37DD17F479A1371ABF3589BB /* xh_wizrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */; }; + A92439BAFD3A30A29DD93133 /* apptraits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A23A8BC7373D4BBD72851D /* apptraits.cpp */; }; + 1142E2D85FD93E9AB5D8A55C /* pcre2_script_run.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F4CDF9048EC36788619769D /* pcre2_script_run.c */; }; + 20D05D14BFAD3F969666D03D /* timectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA0840034F1386F94D17639 /* timectrl_osx.cpp */; }; + A8476B3CE46B3FD4A2832F02 /* LexNull.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */; }; + DA71FBB9EFB2350ABB3CEC82 /* stdpaths.mm in Sources */ = {isa = PBXBuildFile; fileRef = 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */; }; + 20F10669703137E68318C6FF /* cmndata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */; }; + D6B73239BF0E32288161679E /* platinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97FFB03FF6793506B246BAC6 /* platinfo.cpp */; }; + 3DE2CD678CEB39C2B1E09ACD /* power.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60DFD5962DE3379F801AF78F /* power.mm */; }; + CA4DCD57060B38CC8B2283D9 /* filtfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */; }; + C1DCF69200593986A8C606A8 /* hidjoystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018B15DE6F3A3D49B9CDE9DE /* hidjoystick.cpp */; }; + 1CBF34ACA39330028A5EA9AE /* xmlreshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */; }; + C8C68927DB243AEAB51E11F4 /* pngwio.c in Sources */ = {isa = PBXBuildFile; fileRef = AF9EE701DD653E2299293E5F /* pngwio.c */; }; + 6BC8B3EDB3AE3EF4BACFC08C /* ContractionState.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5219A792C6A736F193D4A82F /* ContractionState.cxx */; }; + 7B4DA2F5F25B3E188CBAFE3A /* hyperlnkcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */; }; + E05B06A7FEEE32D5AD87EA50 /* xh_editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05310A868F0B35999C568681 /* xh_editlbox.cpp */; }; + 44C6F11C7D1C399F99CF6BD6 /* xh_auitoolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */; }; + E3B3E4F75D503DB89B5C622F /* stc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B9C41A4D12345AAA764CAD /* stc.cpp */; }; + 59BFB8C8310E37B39AF8B0D5 /* any.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4867546E8B8D3C8683A23ED5 /* any.cpp */; }; + 087FF6DE223A32509692F39D /* txtstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */; }; + 4DA9DE940E043C58BEACBB58 /* UniqueString.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */; }; 1DD1888315513C24BF9C31B6 /* LexSAS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E1B538562B93D148F54645B /* LexSAS.cxx */; }; - 67A0583ADD8C35B8B9BA3D14 /* checkbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 81708CFA21A03013ACB8DDD7 /* checkbox.mm */; }; - 87AA9C5D887B3C31A2AFB49F /* htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD5F11A3646F397BA62EB037 /* htmllbox.cpp */; }; - 87C67583D36C3465ACD64105 /* vlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA90128E29A03CCCA30F4D35 /* vlbox.cpp */; }; - A5775D87FD713CBB930A7840 /* bookctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */; }; - 6944AC98F6F83E3D983DABD5 /* tif_getimage.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */; }; - 0E23F212CBDD33848DEBCA70 /* webview_chromium.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBA9036479943A4990CEB3AC /* webview_chromium.mm */; }; - 61FEDBF2D47A3B4E861F829B /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F4 /* sound.cpp */; }; - 182DFDBB58653FD9863D4178 /* dcprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238741BDA2C73E56899CCB04 /* dcprint.cpp */; }; - 980ED1DA2F96361985952256 /* webrequest_urlsession.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */; }; - C0CDA289E9EC3E20BE70B2E8 /* choiccmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24930711031D35288D28B04B /* choiccmn.cpp */; }; - 4C9BA36123E43589956864C8 /* Style.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C28429A964C337A192D76CC8 /* Style.cxx */; }; - A2473402D8B83628B1F6674B /* wxprintf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 607EF0043E723B7B9BE101EA /* wxprintf.cpp */; }; - A0FCE3CF565C3F84B63712AE /* LexCPP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9EF09C7CC5413CC6A5E7B21B /* LexCPP.cxx */; }; - 3CDE2B6BF88D326189F069BF /* accelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A436B55DC44E3827A757A6D8 /* accelcmn.cpp */; }; - B559E894684A38238CAAA117 /* dirctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E110907DDC13305E88B90086 /* dirctrlcmn.cpp */; }; - CAF5C5BB129431B596C4C6C3 /* LexTAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 38891BF8F51E398F9082903F /* LexTAL.cxx */; }; - DF8CE011EAC23F73BDA1C44F /* scrolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */; }; - 5388468A6F8F3141B25CD402 /* treebkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7925E38823563BCDB5565DCF /* treebkg.cpp */; }; - 830A61EA04FD367C9EB6A759 /* fswatcher_fsevents.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */; }; - BD49EC50CB363642BDBF25C9 /* mousemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D037EA567C253DEEA17E822B /* mousemanager.cpp */; }; - 23E9AF567E873B948EFEA182 /* gauge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 98A7F0605AAC3D28A8C9F253 /* gauge.mm */; }; - 784F7C50882F320FA76537B7 /* LexAU3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C76222F466E831F896A89269 /* LexAU3.cxx */; }; - 3316A16628B03D5E88529EA9 /* datetimectrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = A0A63980677D371C85A60B75 /* datetimectrl.mm */; }; - C05BDB0B5F5A33A9A57FF014 /* m_links.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 080597FC0436378E96EDA94B /* m_links.cpp */; }; + 242E1D1A9BF331BA918134EE /* pngwtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 0964797530CF3FE7B8DB6242 /* pngwtran.c */; }; + 527054445A0D3A00A5C2EC46 /* tif_thunder.c in Sources */ = {isa = PBXBuildFile; fileRef = 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */; }; + 9D003890CB7035A298DB7058 /* LexLua.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5145561C78303EEE9F827962 /* LexLua.cxx */; }; + 7ECC6EE6D5273F75BB6B7B76 /* tif_dirinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 032A38738B58394E8617617B /* tif_dirinfo.c */; }; BCD81FD3D1EC305F801E1C1D /* sckipc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */; }; - 00E2F82590B33BDCA1F6D0C5 /* xh_htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */; }; - 2C95DFA8EE463487956B4EB6 /* infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */; }; + 51437DC2AD7B3BEB9A53CE1C /* cmdline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE1C531185131A89EFF7FAF /* cmdline.cpp */; }; + 774EB9F3F7E93A379E1F7553 /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C4762898E5330C28651EE73 /* graphics.cpp */; }; + D088E7DDE38C31DC9C9B3419 /* dcclient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17772732159304AA7312D72 /* dcclient.cpp */; }; + 9CA687845B3F30CCA44A89D2 /* choicbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */; }; EC43AFB3670A3D459D9B388F /* LexMPT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FE3B47058A723243A285594D /* LexMPT.cxx */; }; - 796311E398FF313C84218826 /* uiactioncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87BF60D0D4A33E2AD2E1E25 /* uiactioncmn.cpp */; }; + B0E94A59C83637C09FAAE71E /* app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 757B31FCCA1F381C95B30DF8 /* app.cpp */; }; + 62F1DC80D631335B892610AA /* splitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C125FA3837C631A9BE0ED5E7 /* splitter.cpp */; }; + 78E15D8200F635529F39609B /* LexBullant.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6718204F4700318E89EAC906 /* LexBullant.cxx */; }; 2386B575BC3931D2AF86CB35 /* fontdlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38CEA4A3579331EF808B8363 /* fontdlgosx.mm */; }; - C3A63D7091913CD39094AE0D /* btncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A7A3B499503ECABC6A838F /* btncmn.cpp */; }; - 692FCCABFB963696AFC1E124 /* gdiobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */; }; - FD3B31CE1E7832218B5D9A17 /* LexPO.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3430B6483E35C3A201BF44 /* LexPO.cxx */; }; - 65E8A5F333D7336C816F0D0E /* variant.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31F4B9B03D52339B8F82C114 /* variant.cpp */; }; - 63F895D6F5643E4B9E666B7B /* creddlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */; }; - FBA19C939E1E33EDB0504400 /* cairo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */; }; - 7D0E549020D33ED39751DFCA /* LexTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */; }; - 893BDA491EDE3A0E91FADE42 /* nonownedwnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */; }; - 15048519756B33959B15B163 /* floatpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A881F49ADCF33C299B041584 /* floatpane.cpp */; }; - 4C31B77B28343F20B4973368 /* LexJulia.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */; }; - A465A43B756630F1944B5A58 /* vscroll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1629FA905F903324AA5BE72C /* vscroll.cpp */; }; - A9B91FC69E473BE18895ABAD /* InList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCBD877191233EE9984112D2 /* InList.cxx */; }; - 97BAFEAD53E238B6881178DF /* evtloopcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 640783FBACA43206B782C77B /* evtloopcmn.cpp */; }; - E53AFF04877D34C386D77382 /* wfstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C37866F41B0C31E295AA7FA6 /* wfstream.cpp */; }; - E4B826CE70283D999CB591F5 /* listbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B99CA41708513A599AE275A2 /* listbox_osx.cpp */; }; - FD38B04026F930CC80BC9482 /* m_pre.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61658C3EABB4341AA38C691E /* m_pre.cpp */; }; - BD49EC50CB363642BDBF25CA /* mousemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D037EA567C253DEEA17E822B /* mousemanager.cpp */; }; - 6978D7A20DA93A329DDD1385 /* socket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40CE02524DD4385AB2C3DF95 /* socket.cpp */; }; - 0E60E17BA4B23347A4F20162 /* gdicmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998D611109EC33A9A6A11C5A /* gdicmn.cpp */; }; - 7A79D9AC608E3B8287229176 /* tif_warning.c in Sources */ = {isa = PBXBuildFile; fileRef = C83C97A1FCC5345896C9D7DE /* tif_warning.c */; }; - 5519BA1F2463308FAC4A0CA1 /* LexAVS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 57E4784E521339BEB971D81D /* LexAVS.cxx */; }; - 45E15DBB6B69382D8AF1BA23 /* pcre2_dfa_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */; }; - 171F09F8DD553FA5B4B3FAE4 /* modalhook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E7C516E2453A269280A404 /* modalhook.cpp */; }; + D17E3053DA0D3F7EA4D0951D /* helpdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81821049E39B32C6ABCF6820 /* helpdlg.cpp */; }; + FE2DBCCC1D0B36A3BE4493C2 /* fs_arc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88F2BA2F0598342186A484B5 /* fs_arc.cpp */; }; + 32486A808EBC3E088598D51E /* jcprepct.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FE0455EBDC63D82B2D88587 /* jcprepct.c */; }; + 1AF2B2346C9639DAA4D15F32 /* numdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */; }; + 88A43B1C5A7438838DE97B96 /* tif_luv.c in Sources */ = {isa = PBXBuildFile; fileRef = 66FDA882451239EA8DF2E0B5 /* tif_luv.c */; }; + 0654BCC3F0763C50A7949506 /* LexAPDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */; }; + C43A9650A9DC3372AB8F5F7A /* jidctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */; }; + E0FAB345D2933D42B62917A5 /* bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36296C259D023EAAA240FC79 /* bannerwindow.cpp */; }; + CEE0D7A7D5D8323B9957A782 /* notifmsgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */; }; + C32EF2EC1A103BC3A6254323 /* xh_spin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950D51915EF83B57B5E8306F /* xh_spin.cpp */; }; + 760C729E41D93CC1AA2B4E0F /* hyperlinkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */; }; + BF068F3C06473D8CBC55D509 /* PositionCache.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BCD873D873A53BBF955D8A4E /* PositionCache.cxx */; }; + A3A898DA3114311EB7F02229 /* sckstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D784A32C094730FEAA391A9B /* sckstrm.cpp */; }; + DDC71B80D562303690FDBE4E /* appcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F01DDE448E4C3983ACCE67FD /* appcmn.cpp */; }; + 16A382A265DE32FABC318F71 /* fontdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB170BF78EFE39D692E11985 /* fontdlgg.cpp */; }; + 8A9C3C04D00334418C3446FB /* dirdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0B0DC125AFFC322E8E496262 /* dirdlg.mm */; }; + 8A662992FFCB32E99D11950E /* commandlinkbuttong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */; }; + CE17002B5B7E37558274763B /* xh_choic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */; }; 85F9828B80B03178A274BD19 /* selstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ED2105A5A033E3384EBC4ED /* selstore.cpp */; }; - 6CA1BAEBBDB4336E9E201F97 /* protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */; }; - E62F8E49FD5035D8BC71BB4B /* LexGAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */; }; - 0E024D145DDD38ACAE68F464 /* toplevel_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */; }; - BAFF04F1680F32DA988EB03F /* stockitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B180290089B139F18B0C7BBA /* stockitem.cpp */; }; - 849B89D1F6AB3DDEAA2D53AF /* xh_styledtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */; }; - BE3ED6EF34303867B8C8E925 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = D4C4495603293C07A3B09D54 /* compress.c */; }; - 25C5C1713C0B39AC8EB6A390 /* taskbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A4D36DE66EC3EB09E883D6B /* taskbar.mm */; }; - 12B1DEF410AB34999AB210DD /* LexBatch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 853C2741D98438DA90B87D90 /* LexBatch.cxx */; }; - E0E40333B61C33B587870790 /* LexMarkdown.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */; }; - 2A7640E4210334AC93366902 /* winpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FCA75FE592C3469AE351FBF /* winpars.cpp */; }; - FB8B6E4789A3311A98C5B0AA /* clrpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B5A9DF3206B3954A4B38BFD /* clrpickerg.cpp */; }; - 7DEC57D6CE8232A09EF7421B /* PropSetSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */; }; + 9E37D29DCF7A3945A0EECB3B /* pcre2_serialize.c in Sources */ = {isa = PBXBuildFile; fileRef = BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */; }; + 9058997222493A7A859A4D4D /* richtextxml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C69E48C06BD23C178F650E42 /* richtextxml.cpp */; }; + 9B8E5690A6103FC1BDC6C47F /* pngread.c in Sources */ = {isa = PBXBuildFile; fileRef = 29D6506AEA5A323B8735F126 /* pngread.c */; }; + 2FA1A8FE3644325ABAD273A6 /* fmapbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832BBBFE664736D5978420C6 /* fmapbase.cpp */; }; + 86B0D280A43C308CAC14BE26 /* CaseFolder.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F52DCBC0442233738B39138E /* CaseFolder.cxx */; }; + 42AC484FDD7D3E948CEA801E /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = B5370A676AAC32419D7FDD87 /* inflate.c */; }; + FFF5BFBE600E35FAB7EA522E /* fileback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC12D557950A3B0D89D9F2F3 /* fileback.cpp */; }; + 570FA90F526E3F25A8E8FCF4 /* tif_read.c in Sources */ = {isa = PBXBuildFile; fileRef = 64B25B87203E3464BCDD277D /* tif_read.c */; }; + 86AED49CEAFC3637B1F10538 /* dialog_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */; }; + DC5F82733F733D98B39DE74F /* LexDMIS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 910D00F1C9143C6D85C24E7C /* LexDMIS.cxx */; }; + 0D79F1B4EF44393AA3242141 /* LexPLM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */; }; + 6C3A459236F736B8A14A13AE /* dialog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83B878A16ABC396E8C03A15E /* dialog.mm */; }; + 42260A6F1853361083803B0E /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CB467F9898C3952A68D988B /* zutil.c */; }; + 6F5A0D3C7763334396A3783F /* LexCmake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */; }; + 205520440CD13C0AB9E8915B /* anidecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE959EC7BFDD3A628E856404 /* anidecod.cpp */; }; + 30AEDF41EC5C374DBF96EFFD /* slider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B862D1027C4367BBF44420F /* slider.mm */; }; + BCDAE378D03E37F5994FB9C7 /* XPM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C25521AF59B9324EB2809C73 /* XPM.cxx */; }; + 72AD4417FF7C3094BB1FF62E /* xh_grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93B77251C0E0382D9A8E113D /* xh_grid.cpp */; }; + 66584BC871303041BA622DE2 /* m_fonts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1F3C70512D93501B0478F3E /* m_fonts.cpp */; }; + 15D65A523EB23EC385C05E0D /* jquant1.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */; }; + 86AED49CEAFC3637B1F10539 /* dialog_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */; }; + 0723C4E8B52C39FDBC2158B8 /* dataview_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E53DC332DA23DF4B9BFCDE3 /* dataview_osx.cpp */; }; + 2E930206397C3EDCBD8206FE /* gridctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */; }; + 5519BA1F2463308FAC4A0CA1 /* LexAVS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 57E4784E521339BEB971D81D /* LexAVS.cxx */; }; + D18E2985C48733B2B7B3D444 /* evtloopunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */; }; + 9564A6968D66325DAEADEBA5 /* dcgraph.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */; }; + 834F2ADD0520313FBAC4F929 /* LexCsound.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */; }; + 697FC496816F33568E1FB5A7 /* LexTCMD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1CABAEA3B48333CB88B40F08 /* LexTCMD.cxx */; }; + 9744994E8A813AA6938A7CE4 /* textcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */; }; + 4DD98A9436C83CF3B9425A7A /* sysopt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */; }; + C92005CB86C6361BBB9D7C69 /* LexBibTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0851C46057CE3C37991B9E34 /* LexBibTeX.cxx */; }; + 6C7C1CC506CB329FB2D086AB /* LexBasic.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B6AADC1056E03A3B80C20C5B /* LexBasic.cxx */; }; + 8093A858CA9E3E9EA2D21861 /* jdarith.c in Sources */ = {isa = PBXBuildFile; fileRef = FA9DD56E399533A5BE7AAD16 /* jdarith.c */; }; + CF3082BA1ED232F4B904BD16 /* stdpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */; }; + 2FB16C6469433F1C9174912A /* renderer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92CCFD77BFB537EAA48E8BD3 /* renderer.mm */; }; + B97C178B47173E6AB0CE577D /* CaseConvert.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 274A156457C63EC5801029C2 /* CaseConvert.cxx */; }; + 14D6D5F8F5ED3C71936DD2B1 /* button.mm in Sources */ = {isa = PBXBuildFile; fileRef = C06FED83BF933DF98C2466AE /* button.mm */; }; + 793F542F20AB31F6AF736797 /* tif_open.c in Sources */ = {isa = PBXBuildFile; fileRef = 1731A6096BFC3A468AB4755A /* tif_open.c */; }; + B181806CC34839E791E54BF2 /* xh_tglbtn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */; }; + B559E894684A38238CAAA117 /* dirctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E110907DDC13305E88B90086 /* dirctrlcmn.cpp */; }; + F501AB044AAC39DCB8C0B3E3 /* editors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C7F740A55E39FD890B3C7F /* editors.cpp */; }; + D6C3421AD2A537AAA2F0AB82 /* file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 168DB301ACC736FF96D7F581 /* file.cpp */; }; + 5A8638C234133824BDF93BC1 /* gbsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */; }; + E05B06A7FEEE32D5AD87EA51 /* xh_editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05310A868F0B35999C568681 /* xh_editlbox.cpp */; }; + 2020EE3C45743B53BE8C7F3A /* LexCoffeeScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */; }; + 62757F24C4EE3B84B6AE3F16 /* textdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D529E2668C23D94A7706C8A /* textdlgg.cpp */; }; + 49FE0228D8FD3F7AB64A4434 /* bmpbuttn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */; }; + 6AA0EE765330326380989FD3 /* stopwatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */; }; + C425A172B0AB3EBD9AC9A592 /* ustring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B63EBEE1A04537E7887E9FD0 /* ustring.cpp */; }; + E8BBC08597EF383597DA030A /* LexEiffel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 55EBB18CB4773C788510B14B /* LexEiffel.cxx */; }; + 1E17F95DD433379E8C18298E /* odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */; }; + 2FAE979E6FE23D088C768B7F /* gridcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */; }; + 95826E8528CC32D8934C36EE /* xh_frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */; }; + 5C44446AB150378696CD6B3E /* bmpcboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */; }; + F3AC352D6DAE3A12A566476A /* styleparams.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */; }; + 750C716389AD3ADBABC9D68B /* statbmp_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */; }; + 51F44CB1D9AD3CBDB52EE93F /* LexDiff.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */; }; + A0FCE3CF565C3F84B63712AE /* LexCPP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9EF09C7CC5413CC6A5E7B21B /* LexCPP.cxx */; }; + 5F57C4908E5038D19D68ED7C /* gallery.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */; }; + 7FC3D17B3C853FE58841002F /* timercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7195E665E0F233839B967FC9 /* timercmn.cpp */; }; + A7692B4D8658347BA16EEB85 /* jmemnobs.c in Sources */ = {isa = PBXBuildFile; fileRef = 374E341C8703367686DEDE93 /* jmemnobs.c */; }; + 46F341B46F80376B962759F7 /* animateg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 580AFC66F3003582B43043B1 /* animateg.cpp */; }; + 31FEAB56919D372993CAD89E /* pngrio.c in Sources */ = {isa = PBXBuildFile; fileRef = A06AB1974DB93EE2999EC75C /* pngrio.c */; }; + 12B1DEF410AB34999AB210DD /* LexBatch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 853C2741D98438DA90B87D90 /* LexBatch.cxx */; }; + D51B3389209E370489078893 /* tif_dirread.c in Sources */ = {isa = PBXBuildFile; fileRef = F6EA240B3DB93D398A990FAD /* tif_dirread.c */; }; + E17048DEEF1138318314F1D2 /* pcre2_valid_utf.c in Sources */ = {isa = PBXBuildFile; fileRef = FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */; }; + CDC0FF253B503BA19693D68F /* xh_propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */; }; + EBF2D44758003221A22202BE /* colourcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D61240ABD70328BA5789663 /* colourcmn.cpp */; }; + 30493B486DFF35AF80D12C4B /* stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */; }; + F5B0B26BD0803719A3FCB4D9 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E45F6DF601A34BCB3CC0206 /* adler32.c */; }; + 246B4FF96BA135258FE45F51 /* encconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */; }; + CBBD7B32DB7B3E24AE745D7A /* epolldispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */; }; + EEB0B28903693C7E9D071931 /* glcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E08A51FA8D8A361681B07295 /* glcmn.cpp */; }; + B189DB62AE9F30A1B613756D /* bmpcboxg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */; }; + 980ED1DA2F96361985952256 /* webrequest_urlsession.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */; }; + E3A4615870B139D29FE727C3 /* menucmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F175D6E8E5723FC797701275 /* menucmn.cpp */; }; + 1FB1622D59593932B25C55BC /* LexPowerShell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */; }; + CA85901B9E2538CFB7E44218 /* process.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B35DA585CFDD32468868E892 /* process.cpp */; }; + E515EAE375AE390688CBF8D5 /* pngtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B32A13D5B3336098B1B9765 /* pngtrans.c */; }; + 11818B68C5263EB68D708847 /* jdtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 4549845C0751356A907C23E0 /* jdtrans.c */; }; + E92EB502F79638B0BE569EF6 /* CallTip.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */; }; + 403FBA20CEFE3EAFB4E6B907 /* dir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7332A03D93D3DABB050615D /* dir.cpp */; }; + 2A79B68D20FE3C9B98A15536 /* menu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D799486AD7F336BB1F33DDC /* menu.mm */; }; + 3ED6F4B64C283232A79423D1 /* dircmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */; }; + 9B8E5690A6103FC1BDC6C480 /* pngread.c in Sources */ = {isa = PBXBuildFile; fileRef = 29D6506AEA5A323B8735F126 /* pngread.c */; }; + 59BFB8C8310E37B39AF8B0D6 /* any.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4867546E8B8D3C8683A23ED5 /* any.cpp */; }; + 774A89998E09308CBFB03EE2 /* imagxpm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C85865D28DC31649440A921 /* imagxpm.cpp */; }; + A569A33A2097316D8110C2C3 /* toolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */; }; + FEF99FF6C38D3B488396B144 /* ffile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */; }; DE43350F6C9D3148A64F0AFB /* art_internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C4649974D8B3A109D1BF145 /* art_internal.cpp */; }; - 03BF1610E2FC3BD5ACB754F2 /* bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */; }; - A9A5973552EE30838306D15E /* tif_packbits.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CE73979D0933A43830307E4 /* tif_packbits.c */; }; - F55F3887CDE633D7877C607D /* LexSmalltalk.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */; }; - CFA91122523B31B9A07A3828 /* pngmem.c in Sources */ = {isa = PBXBuildFile; fileRef = C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */; }; - C43A9650A9DC3372AB8F5F7A /* jidctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */; }; - 2B4507BC09563DB5B0F16598 /* tooltip.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31EFBD7D10003A5187348B35 /* tooltip.mm */; }; - F46777ABE0743B04A1E1F0A6 /* spinbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */; }; - 9CC92BB4B0E233A0A7F8127B /* LexVisualProlog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */; }; - 346D274E17673A01B0177D5D /* sockunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7661E9E09A397790ED9545 /* sockunix.cpp */; }; - BF1760458996391E8EB4294B /* ctrlsub.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */; }; - FBE4DB30865D3177B3A9993D /* xh_animatctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */; }; - D070C3BE95483FE38BABA1C0 /* region.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00DA3D3EEF5E305CA73A1871 /* region.cpp */; }; - 58AABAD40AA236438347DDE0 /* evtloop.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D2549709E0133C9A267E3A5 /* evtloop.mm */; }; - DB3C3AA956A03FB492480268 /* treectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */; }; - BAAB6B1D80A33843A8436B12 /* appunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */; }; - 23479484EC143D34871550C3 /* textmeasurecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */; }; - 00E2F82590B33BDCA1F6D0C6 /* xh_htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */; }; + 5B5B8DF915D438AA9FCEB3A0 /* imagall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FFDFB4D208F37569AC548B0 /* imagall.cpp */; }; + 219304C9DDA33E9AADB515DE /* datetimectrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D049F49C75043592B7E318B3 /* datetimectrl_osx.cpp */; }; + 9110ACFC3CFB3C7994E907B2 /* imagiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A745D1821A32D591D76650 /* imagiff.cpp */; }; + 9C6E9E4BA54733EF9F87E4B9 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 513033E36E643593AC305B3D /* uncompr.c */; }; + 2E8440A2BDD53BE7B01547C4 /* uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4E1DC1869C6327C80D2F5F4 /* uri.cpp */; }; + 6BF19C7CA9E93D989C210FE5 /* dseldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1197B997B1D139C5AE4D198A /* dseldlg.cpp */; }; + 893BDA491EDE3A0E91FADE42 /* nonownedwnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */; }; + 63F2517EC6B2334CA825A6FB /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEB08798C70E33DDB360E563 /* layout.cpp */; }; 1BCC944F5E0936F5830F03EA /* windowid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B9B85572D0312BBF2878DB /* windowid.cpp */; }; - 14D6D5F8F5ED3C71936DD2B1 /* button.mm in Sources */ = {isa = PBXBuildFile; fileRef = C06FED83BF933DF98C2466AE /* button.mm */; }; - C67EAE20657E36839BF86692 /* richtooltipg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */; }; - CFF73578F04D357E83D1D832 /* lboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */; }; - 2FA1A8FE3644325ABAD273A6 /* fmapbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832BBBFE664736D5978420C6 /* fmapbase.cpp */; }; - 26BB10834DA1388881BDD1EE /* propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98B72B3A0A73044B85AED60 /* propgrid.cpp */; }; - 6FA47EAACE613B039B6EC263 /* containr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3645350F572364BABF50238 /* containr.cpp */; }; - 0C485288EA86379D9FD66538 /* cshelp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67DCEEB6861731319C30817F /* cshelp.cpp */; }; - DAAFBED07FF8365B96D20B9B /* unichar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */; }; + F1F484DD591337399FCD0465 /* display.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5617D10CB7136EC9A4194EF /* display.cpp */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -4087,245 +4087,257 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - A87BF60D0D4A33E2AD2E1E25 /* uiactioncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uiactioncmn.cpp; path = ../../src/common/uiactioncmn.cpp; sourceTree = SOURCE_ROOT; }; - 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontcmn.cpp; path = ../../src/common/fontcmn.cpp; sourceTree = SOURCE_ROOT; }; - 68E5188DB6003C35A8C7754D /* htmlcell.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlcell.cpp; path = ../../src/html/htmlcell.cpp; sourceTree = SOURCE_ROOT; }; - 45860601270D318D93BEE1F3 /* LexMagik.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMagik.cxx; path = ../../src/stc/lexilla/lexers/LexMagik.cxx; sourceTree = SOURCE_ROOT; }; - C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngmem.c; path = ../../src/png/pngmem.c; sourceTree = SOURCE_ROOT; }; - 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdlg_osx.cpp; path = ../../src/osx/printdlg_osx.cpp; sourceTree = SOURCE_ROOT; }; - 080597FC0436378E96EDA94B /* m_links.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_links.cpp; path = ../../src/html/m_links.cpp; sourceTree = SOURCE_ROOT; }; - AA90128E29A03CCCA30F4D35 /* vlbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vlbox.cpp; path = ../../src/generic/vlbox.cpp; sourceTree = SOURCE_ROOT; }; - 95186FEF3DEF39D8B1157BD5 /* stattext.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = stattext.mm; path = ../../src/osx/cocoa/stattext.mm; sourceTree = SOURCE_ROOT; }; - D30617843F33310089C1F77A /* richtextstyles.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextstyles.cpp; path = ../../src/richtext/richtextstyles.cpp; sourceTree = SOURCE_ROOT; }; - 573D0D15EE9E3E629D61EA65 /* jaricom.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jaricom.c; path = ../../src/jpeg/jaricom.c; sourceTree = SOURCE_ROOT; }; - 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSorcus.cxx; path = ../../src/stc/lexilla/lexers/LexSorcus.cxx; sourceTree = SOURCE_ROOT; }; - 343D4FDD5CC030618EF24729 /* dcmemory.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcmemory.cpp; path = ../../src/osx/core/dcmemory.cpp; sourceTree = SOURCE_ROOT; }; - E1F2E9C9052D3E53BBD17DE3 /* statbrma.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbrma.cpp; path = ../../src/osx/carbon/statbrma.cpp; sourceTree = SOURCE_ROOT; }; - 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = mediactrl.mm; path = ../../src/osx/cocoa/mediactrl.mm; sourceTree = SOURCE_ROOT; }; - 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zipstrm.cpp; path = ../../src/common/zipstrm.cpp; sourceTree = SOURCE_ROOT; }; - 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_radbt.cpp; path = ../../src/xrc/xh_radbt.cpp; sourceTree = SOURCE_ROOT; }; - 72D7AF345E563587941BD868 /* longlong.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = longlong.cpp; path = ../../src/common/longlong.cpp; sourceTree = SOURCE_ROOT; }; - 9C87B071E3593A889704F512 /* statbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbar.cpp; path = ../../src/common/statbar.cpp; sourceTree = SOURCE_ROOT; }; - F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_collpane.cpp; path = ../../src/xrc/xh_collpane.cpp; sourceTree = SOURCE_ROOT; }; - A284E855892F3A9E9E19E854 /* LexTADS3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTADS3.cxx; path = ../../src/stc/lexilla/lexers/LexTADS3.cxx; sourceTree = SOURCE_ROOT; }; - C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabmdi.cpp; path = ../../src/aui/tabmdi.cpp; sourceTree = SOURCE_ROOT; }; - 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndcmn.cpp; path = ../../src/common/dndcmn.cpp; sourceTree = SOURCE_ROOT; }; - 20E4A10BCD773C84AEC481A1 /* jdmarker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmarker.c; path = ../../src/jpeg/jdmarker.c; sourceTree = SOURCE_ROOT; }; - CBD7B44E33373BCCB60FC11F /* combog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combog.cpp; path = ../../src/generic/combog.cpp; sourceTree = SOURCE_ROOT; }; - 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlreshandler.cpp; path = ../../src/xrc/xmlreshandler.cpp; sourceTree = SOURCE_ROOT; }; - 741578B590AF3F2CABE615EB /* timectrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timectrlg.cpp; path = ../../src/generic/timectrlg.cpp; sourceTree = SOURCE_ROOT; }; - DE16011AD6323AAC8616F973 /* stdstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdstream.cpp; path = ../../src/common/stdstream.cpp; sourceTree = SOURCE_ROOT; }; + D922063B2F2536629EEEAAF0 /* popupcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupcmn.cpp; path = ../../src/common/popupcmn.cpp; sourceTree = SOURCE_ROOT; }; + 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_gdctl.cpp; path = ../../src/xrc/xh_gdctl.cpp; sourceTree = SOURCE_ROOT; }; E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_scwin.cpp; path = ../../src/xrc/xh_scwin.cpp; sourceTree = SOURCE_ROOT; }; - D272910EC35531E5B4D6E05B /* dynlib.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dynlib.cpp; path = ../../src/common/dynlib.cpp; sourceTree = SOURCE_ROOT; }; - 86A0C3603C8A343AAFBD2CE0 /* LexFortran.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFortran.cxx; path = ../../src/stc/lexilla/lexers/LexFortran.cxx; sourceTree = SOURCE_ROOT; }; - 6506A965F677374491359FB8 /* volume.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = volume.mm; path = ../../src/osx/volume.mm; sourceTree = SOURCE_ROOT; }; - B60497805D37375EBFCF3D98 /* pcre2_tables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_tables.c; path = ../../3rdparty/pcre/src/pcre2_tables.c; sourceTree = SOURCE_ROOT; }; - BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_activityindicator.cpp; path = ../../src/xrc/xh_activityindicator.cpp; sourceTree = SOURCE_ROOT; }; - C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbtncmn.cpp; path = ../../src/common/spinbtncmn.cpp; sourceTree = SOURCE_ROOT; }; - DC3430B6483E35C3A201BF44 /* LexPO.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPO.cxx; path = ../../src/stc/lexilla/lexers/LexPO.cxx; sourceTree = SOURCE_ROOT; }; - 1C71BF55495034FFBE653C80 /* LexMSSQL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMSSQL.cxx; path = ../../src/stc/lexilla/lexers/LexMSSQL.cxx; sourceTree = SOURCE_ROOT; }; - 087B66573CD33DA99DA82B1C /* xmlres.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlres.cpp; path = ../../src/xrc/xmlres.cpp; sourceTree = SOURCE_ROOT; }; + AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_clrpicker.cpp; path = ../../src/xrc/xh_clrpicker.cpp; sourceTree = SOURCE_ROOT; }; + F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_collpane.cpp; path = ../../src/xrc/xh_collpane.cpp; sourceTree = SOURCE_ROOT; }; + BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_chckb.cpp; path = ../../src/xrc/xh_chckb.cpp; sourceTree = SOURCE_ROOT; }; + E8072CA67D19346ABF4D465F /* slidercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slidercmn.cpp; path = ../../src/common/slidercmn.cpp; sourceTree = SOURCE_ROOT; }; + B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_toolbk.cpp; path = ../../src/xrc/xh_toolbk.cpp; sourceTree = SOURCE_ROOT; }; + 67D76B026121359F9B22F8B0 /* languageinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = languageinfo.cpp; path = ../../src/common/languageinfo.cpp; sourceTree = SOURCE_ROOT; }; + 8EECA8EB93BF3C7A9CC827AD /* LexPOV.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPOV.cxx; path = ../../src/stc/lexilla/lexers/LexPOV.cxx; sourceTree = SOURCE_ROOT; }; + 726C0457DF1232C793918DC1 /* tif_zip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_zip.c; path = ../../src/tiff/libtiff/tif_zip.c; sourceTree = SOURCE_ROOT; }; + E9B31409EC6532FC83B0B957 /* textmeasure.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textmeasure.cpp; path = ../../src/generic/textmeasure.cpp; sourceTree = SOURCE_ROOT; }; + D5F9383D1CE931499F339D85 /* strconv_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strconv_cf.cpp; path = ../../src/osx/core/strconv_cf.cpp; sourceTree = SOURCE_ROOT; }; + 580AFC66F3003582B43043B1 /* animateg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animateg.cpp; path = ../../src/generic/animateg.cpp; sourceTree = SOURCE_ROOT; }; + 9E5C91072D533919A78D8ED2 /* LexTACL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTACL.cxx; path = ../../src/stc/lexilla/lexers/LexTACL.cxx; sourceTree = SOURCE_ROOT; }; + 7CF5C09D9A1230EEB42713E1 /* stattext_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattext_osx.cpp; path = ../../src/osx/stattext_osx.cpp; sourceTree = SOURCE_ROOT; }; + B4028ABB08C63AB59F5F240B /* m_list.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_list.cpp; path = ../../src/html/m_list.cpp; sourceTree = SOURCE_ROOT; }; + 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdpbase.cpp; path = ../../src/common/stdpbase.cpp; sourceTree = SOURCE_ROOT; }; + 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerNoExceptions.cxx; path = ../../src/stc/lexilla/lexlib/LexerNoExceptions.cxx; sourceTree = SOURCE_ROOT; }; + 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagpcx.cpp; path = ../../src/common/imagpcx.cpp; sourceTree = SOURCE_ROOT; }; + B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wakeuppipe.cpp; path = ../../src/unix/wakeuppipe.cpp; sourceTree = SOURCE_ROOT; }; + 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmndata.cpp; path = ../../src/common/cmndata.cpp; sourceTree = SOURCE_ROOT; }; + 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcherg.cpp; path = ../../src/generic/fswatcherg.cpp; sourceTree = SOURCE_ROOT; }; + 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctint.c; path = ../../src/jpeg/jfdctint.c; sourceTree = SOURCE_ROOT; }; + 72D7AF345E563587941BD868 /* longlong.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = longlong.cpp; path = ../../src/common/longlong.cpp; sourceTree = SOURCE_ROOT; }; + CD72950967F33809931D4968 /* LexAbaqus.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAbaqus.cxx; path = ../../src/stc/lexilla/lexers/LexAbaqus.cxx; sourceTree = SOURCE_ROOT; }; + C25521AF59B9324EB2809C73 /* XPM.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = XPM.cxx; path = ../../src/stc/scintilla/src/XPM.cxx; sourceTree = SOURCE_ROOT; }; + D4E1DC1869C6327C80D2F5F4 /* uri.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uri.cpp; path = ../../src/common/uri.cpp; sourceTree = SOURCE_ROOT; }; + E89AC104BF4F33A083F8B382 /* jccoefct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccoefct.c; path = ../../src/jpeg/jccoefct.c; sourceTree = SOURCE_ROOT; }; + 6831AA74AB5B38D5AA6946D7 /* settings.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = settings.mm; path = ../../src/osx/cocoa/settings.mm; sourceTree = SOURCE_ROOT; }; + D049F49C75043592B7E318B3 /* datetimectrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datetimectrl_osx.cpp; path = ../../src/osx/datetimectrl_osx.cpp; sourceTree = SOURCE_ROOT; }; + 137E01C362E134449BF966ED /* imagfill.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagfill.cpp; path = ../../src/common/imagfill.cpp; sourceTree = SOURCE_ROOT; }; + DB82939EDC593F9CA95C3098 /* init.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = init.cpp; path = ../../src/common/init.cpp; sourceTree = SOURCE_ROOT; }; + A881F49ADCF33C299B041584 /* floatpane.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = floatpane.cpp; path = ../../src/aui/floatpane.cpp; sourceTree = SOURCE_ROOT; }; + 305614D19CF23CB2B14A5B2E /* tif_flush.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_flush.c; path = ../../src/tiff/libtiff/tif_flush.c; sourceTree = SOURCE_ROOT; }; + 68E5188DB6003C35A8C7754D /* htmlcell.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlcell.cpp; path = ../../src/html/htmlcell.cpp; sourceTree = SOURCE_ROOT; }; + F951601E73683F27AD8CA99D /* MarginView.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MarginView.cxx; path = ../../src/stc/scintilla/src/MarginView.cxx; sourceTree = SOURCE_ROOT; }; + 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dynload.cpp; path = ../../src/common/dynload.cpp; sourceTree = SOURCE_ROOT; }; + 0903EE9B3793303285FF96E3 /* textfile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfile.cpp; path = ../../src/common/textfile.cpp; sourceTree = SOURCE_ROOT; }; + A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_string_utils.c; path = ../../3rdparty/pcre/src/pcre2_string_utils.c; sourceTree = SOURCE_ROOT; }; + 5E53DC332DA23DF4B9BFCDE3 /* dataview_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dataview_osx.cpp; path = ../../src/osx/dataview_osx.cpp; sourceTree = SOURCE_ROOT; }; + D73954EB5397301F87881646 /* statboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statboxcmn.cpp; path = ../../src/common/statboxcmn.cpp; sourceTree = SOURCE_ROOT; }; + 20B922D61CDB3CCEB59A5194 /* convauto.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = convauto.cpp; path = ../../src/common/convauto.cpp; sourceTree = SOURCE_ROOT; }; + 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCmake.cxx; path = ../../src/stc/lexilla/lexers/LexCmake.cxx; sourceTree = SOURCE_ROOT; }; + DA5E95D498C53A808A8E2EEB /* Editor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Editor.cxx; path = ../../src/stc/scintilla/src/Editor.cxx; sourceTree = SOURCE_ROOT; }; + 2C090A76B6F23E6481A27282 /* ipcbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ipcbase.cpp; path = ../../src/common/ipcbase.cpp; sourceTree = SOURCE_ROOT; }; + 1197B997B1D139C5AE4D198A /* dseldlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dseldlg.cpp; path = ../../src/common/dseldlg.cpp; sourceTree = SOURCE_ROOT; }; + 5612DBC4125B379DA2B28824 /* buttonbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = buttonbar.cpp; path = ../../src/ribbon/buttonbar.cpp; sourceTree = SOURCE_ROOT; }; + 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSQL.cxx; path = ../../src/stc/lexilla/lexers/LexSQL.cxx; sourceTree = SOURCE_ROOT; }; + 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_htmllbox.cpp; path = ../../src/xrc/xh_htmllbox.cpp; sourceTree = SOURCE_ROOT; }; + 400275BE019D3E5BA47988BE /* inffast.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inffast.c; path = ../../src/zlib/inffast.c; sourceTree = SOURCE_ROOT; }; + 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_choic.cpp; path = ../../src/xrc/xh_choic.cpp; sourceTree = SOURCE_ROOT; }; + 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textctrl_osx.cpp; path = ../../src/osx/textctrl_osx.cpp; sourceTree = SOURCE_ROOT; }; + 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcher_fsevents.cpp; path = ../../src/osx/fswatcher_fsevents.cpp; sourceTree = SOURCE_ROOT; }; BC12B97F233B3B9494DA217F /* imagpnm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagpnm.cpp; path = ../../src/common/imagpnm.cpp; sourceTree = SOURCE_ROOT; }; - E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_data.cpp; path = ../../src/common/fs_data.cpp; sourceTree = SOURCE_ROOT; }; - B303230368143F37B2409DE6 /* LexKix.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexKix.cxx; path = ../../src/stc/lexilla/lexers/LexKix.cxx; sourceTree = SOURCE_ROOT; }; - 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colrdlgg.cpp; path = ../../src/generic/colrdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrolbar_osx.cpp; path = ../../src/osx/scrolbar_osx.cpp; sourceTree = SOURCE_ROOT; }; - 38CEA4A3579331EF808B8363 /* fontdlgosx.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = fontdlgosx.mm; path = ../../src/osx/carbon/fontdlgosx.mm; sourceTree = SOURCE_ROOT; }; - 7395814D42CC38F6B8CD81B4 /* gzlib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzlib.c; path = ../../src/zlib/gzlib.c; sourceTree = SOURCE_ROOT; }; - 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listc.cpp; path = ../../src/xrc/xh_listc.cpp; sourceTree = SOURCE_ROOT; }; - 5CB4781DF8C432C688F30CDD /* ftp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftp.cpp; path = ../../src/common/ftp.cpp; sourceTree = SOURCE_ROOT; }; + 05310A868F0B35999C568681 /* xh_editlbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_editlbox.cpp; path = ../../src/xrc/xh_editlbox.cpp; sourceTree = SOURCE_ROOT; }; + B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tipdlg.cpp; path = ../../src/generic/tipdlg.cpp; sourceTree = SOURCE_ROOT; }; + D30617843F33310089C1F77A /* richtextstyles.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextstyles.cpp; path = ../../src/richtext/richtextstyles.cpp; sourceTree = SOURCE_ROOT; }; + EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filtfind.cpp; path = ../../src/common/filtfind.cpp; sourceTree = SOURCE_ROOT; }; + 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPLM.cxx; path = ../../src/stc/lexilla/lexers/LexPLM.cxx; sourceTree = SOURCE_ROOT; }; + ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRaku.cxx; path = ../../src/stc/lexilla/lexers/LexRaku.cxx; sourceTree = SOURCE_ROOT; }; + 9CAA325362C73AC8BE20FAA7 /* pngpread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngpread.c; path = ../../src/png/pngpread.c; sourceTree = SOURCE_ROOT; }; + 2ED0C0702D2734D9B08FC31D /* utils_base.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utils_base.mm; path = ../../src/osx/cocoa/utils_base.mm; sourceTree = SOURCE_ROOT; }; + 4C4649974D8B3A109D1BF145 /* art_internal.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_internal.cpp; path = ../../src/ribbon/art_internal.cpp; sourceTree = SOURCE_ROOT; }; + 9B862D1027C4367BBF44420F /* slider.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = slider.mm; path = ../../src/osx/cocoa/slider.mm; sourceTree = SOURCE_ROOT; }; + 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextimagedlg.cpp; path = ../../src/richtext/richtextimagedlg.cpp; sourceTree = SOURCE_ROOT; }; + AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_filter.cpp; path = ../../src/common/fs_filter.cpp; sourceTree = SOURCE_ROOT; }; BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_convert.c; path = ../../3rdparty/pcre/src/pcre2_convert.c; sourceTree = SOURCE_ROOT; }; - 5D2F8259CC99380CB8217DEF /* tif_unix.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_unix.c; path = ../../src/tiff/libtiff/tif_unix.c; sourceTree = SOURCE_ROOT; }; - 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbutt_osx.cpp; path = ../../src/osx/spinbutt_osx.cpp; sourceTree = SOURCE_ROOT; }; - 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jquant1.c; path = ../../src/jpeg/jquant1.c; sourceTree = SOURCE_ROOT; }; - 81B3DFBB73573FFDBD320334 /* datstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datstrm.cpp; path = ../../src/common/datstrm.cpp; sourceTree = SOURCE_ROOT; }; - 2AF7739C389536F79DAA31E5 /* Selection.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Selection.cxx; path = ../../src/stc/scintilla/src/Selection.cxx; sourceTree = SOURCE_ROOT; }; + AC8BB1AABB3D393EBA527060 /* intl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = intl.cpp; path = ../../src/common/intl.cpp; sourceTree = SOURCE_ROOT; }; + 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_xclass.c; path = ../../3rdparty/pcre/src/pcre2_xclass.c; sourceTree = SOURCE_ROOT; }; + 5F63BF9430CE371DA04AC900 /* textentrycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textentrycmn.cpp; path = ../../src/common/textentrycmn.cpp; sourceTree = SOURCE_ROOT; }; AF7CE00168AB33C994374ABA /* tif_extension.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_extension.c; path = ../../src/tiff/libtiff/tif_extension.c; sourceTree = SOURCE_ROOT; }; - 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timerunx.cpp; path = ../../src/unix/timerunx.cpp; sourceTree = SOURCE_ROOT; }; - 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiocmn.cpp; path = ../../src/common/radiocmn.cpp; sourceTree = SOURCE_ROOT; }; - 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexGAP.cxx; path = ../../src/stc/lexilla/lexers/LexGAP.cxx; sourceTree = SOURCE_ROOT; }; - C69E48C06BD23C178F650E42 /* richtextxml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextxml.cpp; path = ../../src/richtext/richtextxml.cpp; sourceTree = SOURCE_ROOT; }; - 5FFCF47A161B3E08B19BFE14 /* jdsample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdsample.c; path = ../../src/jpeg/jdsample.c; sourceTree = SOURCE_ROOT; }; - C3784C240C2F330683494926 /* laywin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = laywin.cpp; path = ../../src/generic/laywin.cpp; sourceTree = SOURCE_ROOT; }; - BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_chckb.cpp; path = ../../src/xrc/xh_chckb.cpp; sourceTree = SOURCE_ROOT; }; - B180290089B139F18B0C7BBA /* stockitem.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stockitem.cpp; path = ../../src/common/stockitem.cpp; sourceTree = SOURCE_ROOT; }; - 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_jit_compile.c; path = ../../3rdparty/pcre/src/pcre2_jit_compile.c; sourceTree = SOURCE_ROOT; }; - A87662D69F0432FC96701280 /* xh_notbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_notbk.cpp; path = ../../src/xrc/xh_notbk.cpp; sourceTree = SOURCE_ROOT; }; - EF330EAACFA53877BE289896 /* matrix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = matrix.cpp; path = ../../src/common/matrix.cpp; sourceTree = SOURCE_ROOT; }; - 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choicbkg.cpp; path = ../../src/generic/choicbkg.cpp; sourceTree = SOURCE_ROOT; }; - 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpfrm.cpp; path = ../../src/html/helpfrm.cpp; sourceTree = SOURCE_ROOT; }; - D1EE17722EA937E88A7F0C01 /* dcbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcbase.cpp; path = ../../src/common/dcbase.cpp; sourceTree = SOURCE_ROOT; }; - 2F1B41B0F10C3DA38188C239 /* LexScriptol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexScriptol.cxx; path = ../../src/stc/lexilla/lexers/LexScriptol.cxx; sourceTree = SOURCE_ROOT; }; - CC2713393AB132AA8E337AE1 /* LexPython.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPython.cxx; path = ../../src/stc/lexilla/lexers/LexPython.cxx; sourceTree = SOURCE_ROOT; }; - 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cairo.cpp; path = ../../src/common/cairo.cpp; sourceTree = SOURCE_ROOT; }; - 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mimecmn.cpp; path = ../../src/common/mimecmn.cpp; sourceTree = SOURCE_ROOT; }; - 1731D6708BFE3DE7B101CE74 /* object.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = object.cpp; path = ../../src/common/object.cpp; sourceTree = SOURCE_ROOT; }; - D4C4495603293C07A3B09D54 /* compress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = compress.c; path = ../../src/zlib/compress.c; sourceTree = SOURCE_ROOT; }; - D4E1DC1869C6327C80D2F5F4 /* uri.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uri.cpp; path = ../../src/common/uri.cpp; sourceTree = SOURCE_ROOT; }; - FBC5A5797B0D369291A76D6E /* dcbufcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcbufcmn.cpp; path = ../../src/common/dcbufcmn.cpp; sourceTree = SOURCE_ROOT; }; - 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbox_osx.cpp; path = ../../src/osx/statbox_osx.cpp; sourceTree = SOURCE_ROOT; }; - 05A4437E9697300390FDE14E /* auibar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = auibar.cpp; path = ../../src/aui/auibar.cpp; sourceTree = SOURCE_ROOT; }; - D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexOScript.cxx; path = ../../src/stc/lexilla/lexers/LexOScript.cxx; sourceTree = SOURCE_ROOT; }; - C37866F41B0C31E295AA7FA6 /* wfstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wfstream.cpp; path = ../../src/common/wfstream.cpp; sourceTree = SOURCE_ROOT; }; - D0B9C41A4D12345AAA764CAD /* stc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stc.cpp; path = ../../src/stc/stc.cpp; sourceTree = SOURCE_ROOT; }; - 810EB7316DF3344197C78EC0 /* jcmainct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmainct.c; path = ../../src/jpeg/jcmainct.c; sourceTree = SOURCE_ROOT; }; - 3088384F07C63A5DB3581656 /* tif_lzma.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_lzma.c; path = ../../src/tiff/libtiff/tif_lzma.c; sourceTree = SOURCE_ROOT; }; - CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hyperlinkg.cpp; path = ../../src/generic/hyperlinkg.cpp; sourceTree = SOURCE_ROOT; }; - 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEDIFACT.cxx; path = ../../src/stc/lexilla/lexers/LexEDIFACT.cxx; sourceTree = SOURCE_ROOT; }; - 42E433D1700631A8907B8227 /* helpctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpctrl.cpp; path = ../../src/html/helpctrl.cpp; sourceTree = SOURCE_ROOT; }; - 8EECA8EB93BF3C7A9CC827AD /* LexPOV.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPOV.cxx; path = ../../src/stc/lexilla/lexers/LexPOV.cxx; sourceTree = SOURCE_ROOT; }; - 701B84EE7C043B539FF5195A /* textbuf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbuf.cpp; path = ../../src/common/textbuf.cpp; sourceTree = SOURCE_ROOT; }; - A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rowheightcache.cpp; path = ../../src/generic/rowheightcache.cpp; sourceTree = SOURCE_ROOT; }; - 9988CBB0772A3539970162FA /* arttango.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arttango.cpp; path = ../../src/common/arttango.cpp; sourceTree = SOURCE_ROOT; }; - 26632A254717372BAA4D514D /* framemanager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = framemanager.cpp; path = ../../src/aui/framemanager.cpp; sourceTree = SOURCE_ROOT; }; - A0A63980677D371C85A60B75 /* datetimectrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = datetimectrl.mm; path = ../../src/osx/cocoa/datetimectrl.mm; sourceTree = SOURCE_ROOT; }; - 6BC93D1DE277395592610085 /* propdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propdlg.cpp; path = ../../src/generic/propdlg.cpp; sourceTree = SOURCE_ROOT; }; - CA2D9F325F833C408657E7B7 /* dlunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlunix.cpp; path = ../../src/unix/dlunix.cpp; sourceTree = SOURCE_ROOT; }; - CA0D5D47D62A3148BA51B31B /* tif_compress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_compress.c; path = ../../src/tiff/libtiff/tif_compress.c; sourceTree = SOURCE_ROOT; }; - C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediactrlcmn.cpp; path = ../../src/common/mediactrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - B568A7364ECA30288820CCE7 /* mdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mdi.cpp; path = ../../src/osx/carbon/mdi.cpp; sourceTree = SOURCE_ROOT; }; - 430739CB8B95336ABB372EC7 /* EditView.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EditView.cxx; path = ../../src/stc/scintilla/src/EditView.cxx; sourceTree = SOURCE_ROOT; }; - 2A67053D16D63C588E555C84 /* dragimgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dragimgg.cpp; path = ../../src/generic/dragimgg.cpp; sourceTree = SOURCE_ROOT; }; - 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbtncmn.cpp; path = ../../src/common/bmpbtncmn.cpp; sourceTree = SOURCE_ROOT; }; - 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uilocale.cpp; path = ../../src/common/uilocale.cpp; sourceTree = SOURCE_ROOT; }; - DB170BF78EFE39D692E11985 /* fontdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdlgg.cpp; path = ../../src/generic/fontdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 64B25B87203E3464BCDD277D /* tif_read.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_read.c; path = ../../src/tiff/libtiff/tif_read.c; sourceTree = SOURCE_ROOT; }; - 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctint.c; path = ../../src/jpeg/jidctint.c; sourceTree = SOURCE_ROOT; }; - 994AF74DF2A13FF09A215853 /* intel_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = intel_init.c; path = ../../src/png/intel/intel_init.c; sourceTree = SOURCE_ROOT; }; - BF1C44D726E63B18A98006EC /* Decoration.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Decoration.cxx; path = ../../src/stc/scintilla/src/Decoration.cxx; sourceTree = SOURCE_ROOT; }; - 84A7A3B499503ECABC6A838F /* btncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = btncmn.cpp; path = ../../src/common/btncmn.cpp; sourceTree = SOURCE_ROOT; }; - D324650313003AAD96E12962 /* listbox.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = listbox.mm; path = ../../src/osx/cocoa/listbox.mm; sourceTree = SOURCE_ROOT; }; + B901252876603DCEA4C66D89 /* nbkbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nbkbase.cpp; path = ../../src/common/nbkbase.cpp; sourceTree = SOURCE_ROOT; }; + 7CC8B73BB8C0391E9EC1B2D1 /* colour.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = colour.mm; path = ../../src/osx/cocoa/colour.mm; sourceTree = SOURCE_ROOT; }; + A9B2316B32653DA0939A372D /* sound_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound_osx.cpp; path = ../../src/osx/sound_osx.cpp; sourceTree = SOURCE_ROOT; }; + 1731A6096BFC3A468AB4755A /* tif_open.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_open.c; path = ../../src/tiff/libtiff/tif_open.c; sourceTree = SOURCE_ROOT; }; + 8FFDFB4D208F37569AC548B0 /* imagall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagall.cpp; path = ../../src/common/imagall.cpp; sourceTree = SOURCE_ROOT; }; + DECAF5DD80383A2CA76EB383 /* jdatasrc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdatasrc.c; path = ../../src/jpeg/jdatasrc.c; sourceTree = SOURCE_ROOT; }; + 81821049E39B32C6ABCF6820 /* helpdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdlg.cpp; path = ../../src/html/helpdlg.cpp; sourceTree = SOURCE_ROOT; }; + DE16011AD6323AAC8616F973 /* stdstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdstream.cpp; path = ../../src/common/stdstream.cpp; sourceTree = SOURCE_ROOT; }; + EDB48813110636DBA045BF3A /* LexPS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPS.cxx; path = ../../src/stc/lexilla/lexers/LexPS.cxx; sourceTree = SOURCE_ROOT; }; + 26D7C4995D7A35A1854B533F /* window_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window_osx.cpp; path = ../../src/osx/window_osx.cpp; sourceTree = SOURCE_ROOT; }; + 727F25F832AD32D4B12D8E39 /* m_span.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_span.cpp; path = ../../src/html/m_span.cpp; sourceTree = SOURCE_ROOT; }; + C63C964DAFAD311694367C94 /* xh_datectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_datectrl.cpp; path = ../../src/xrc/xh_datectrl.cpp; sourceTree = SOURCE_ROOT; }; + A9C7F740A55E39FD890B3C7F /* editors.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = editors.cpp; path = ../../src/propgrid/editors.cpp; sourceTree = SOURCE_ROOT; }; + B580FD04D0D83601826FD5EE /* filepickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filepickerg.cpp; path = ../../src/generic/filepickerg.cpp; sourceTree = SOURCE_ROOT; }; + 496674699F173A5385EAFF07 /* calctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calctrlg.cpp; path = ../../src/generic/calctrlg.cpp; sourceTree = SOURCE_ROOT; }; + 2C6C4F5468743265A02D656C /* htmlfilt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlfilt.cpp; path = ../../src/html/htmlfilt.cpp; sourceTree = SOURCE_ROOT; }; + 24930711031D35288D28B04B /* choiccmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choiccmn.cpp; path = ../../src/common/choiccmn.cpp; sourceTree = SOURCE_ROOT; }; + 96CED508FA3C3B6B9265099E /* rendcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rendcmn.cpp; path = ../../src/common/rendcmn.cpp; sourceTree = SOURCE_ROOT; }; + 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = mediactrl.mm; path = ../../src/osx/cocoa/mediactrl.mm; sourceTree = SOURCE_ROOT; }; + 92CCFD77BFB537EAA48E8BD3 /* renderer.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = renderer.mm; path = ../../src/osx/cocoa/renderer.mm; sourceTree = SOURCE_ROOT; }; + 58E7C516E2453A269280A404 /* modalhook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modalhook.cpp; path = ../../src/common/modalhook.cpp; sourceTree = SOURCE_ROOT; }; + ABE3DC4AA47D39ACA83F27C0 /* settcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settcmn.cpp; path = ../../src/common/settcmn.cpp; sourceTree = SOURCE_ROOT; }; + 5F555177554E398286DBC6FB /* xh_stlin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_stlin.cpp; path = ../../src/xrc/xh_stlin.cpp; sourceTree = SOURCE_ROOT; }; + 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtloopunix.cpp; path = ../../src/unix/evtloopunix.cpp; sourceTree = SOURCE_ROOT; }; + 8744F2C80ECF375999195935 /* LexPB.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPB.cxx; path = ../../src/stc/lexilla/lexers/LexPB.cxx; sourceTree = SOURCE_ROOT; }; + 1CABAEA3B48333CB88B40F08 /* LexTCMD.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCMD.cxx; path = ../../src/stc/lexilla/lexers/LexTCMD.cxx; sourceTree = SOURCE_ROOT; }; + 59C6B9849FF6325E890942EF /* xmlrole.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = xmlrole.c; path = ../../src/expat/expat/lib/xmlrole.c; sourceTree = SOURCE_ROOT; }; + E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_frame.cpp; path = ../../src/xrc/xh_frame.cpp; sourceTree = SOURCE_ROOT; }; + BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textmeasurecmn.cpp; path = ../../src/common/textmeasurecmn.cpp; sourceTree = SOURCE_ROOT; }; + 9FDDE855D9F83E4891362EB4 /* bar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bar.cpp; path = ../../src/ribbon/bar.cpp; sourceTree = SOURCE_ROOT; }; + 835C22B71A0F3C469310E1E0 /* preferences.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = preferences.mm; path = ../../src/osx/cocoa/preferences.mm; sourceTree = SOURCE_ROOT; }; + 66426B63AA3E3A279936C034 /* grideditors.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grideditors.cpp; path = ../../src/generic/grideditors.cpp; sourceTree = SOURCE_ROOT; }; + 61548D0FE1353D7C846DD721 /* menuitem.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = menuitem.mm; path = ../../src/osx/cocoa/menuitem.mm; sourceTree = SOURCE_ROOT; }; + FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexGui4Cli.cxx; path = ../../src/stc/lexilla/lexers/LexGui4Cli.cxx; sourceTree = SOURCE_ROOT; }; + C94DC3402FAE3C4FA776DEEA /* window.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = window.mm; path = ../../src/osx/cocoa/window.mm; sourceTree = SOURCE_ROOT; }; + BDADEB1DA6433E52972C8934 /* pcre2_compile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_compile.c; path = ../../3rdparty/pcre/src/pcre2_compile.c; sourceTree = SOURCE_ROOT; }; + 76337016F2CA3C85831702E6 /* grid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grid.cpp; path = ../../src/generic/grid.cpp; sourceTree = SOURCE_ROOT; }; + 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PropSetSimple.cxx; path = ../../src/stc/lexilla/lexlib/PropSetSimple.cxx; sourceTree = SOURCE_ROOT; }; + 4048A3523EC03409BD899BEF /* xtixml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xtixml.cpp; path = ../../src/common/xtixml.cpp; sourceTree = SOURCE_ROOT; }; + B83EDE2D1731311ABDE62F9F /* tif_strip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_strip.c; path = ../../src/tiff/libtiff/tif_strip.c; sourceTree = SOURCE_ROOT; }; + 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = infobar.cpp; path = ../../src/generic/infobar.cpp; sourceTree = SOURCE_ROOT; }; + 2C904B4BA8273355869812B2 /* clntdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clntdata.cpp; path = ../../src/common/clntdata.cpp; sourceTree = SOURCE_ROOT; }; + 2AF7739C389536F79DAA31E5 /* Selection.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Selection.cxx; path = ../../src/stc/scintilla/src/Selection.cxx; sourceTree = SOURCE_ROOT; }; + 05A4437E9697300390FDE14E /* auibar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = auibar.cpp; path = ../../src/aui/auibar.cpp; sourceTree = SOURCE_ROOT; }; + 45D7558DF5E03A2EB41883F0 /* pngwutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwutil.c; path = ../../src/png/pngwutil.c; sourceTree = SOURCE_ROOT; }; + DE0102314288305D830B9EFE /* LexProps.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexProps.cxx; path = ../../src/stc/lexilla/lexers/LexProps.cxx; sourceTree = SOURCE_ROOT; }; + 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bttn.cpp; path = ../../src/xrc/xh_bttn.cpp; sourceTree = SOURCE_ROOT; }; + 9FEB8204E530329FA085E5B8 /* strconv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strconv.cpp; path = ../../src/common/strconv.cpp; sourceTree = SOURCE_ROOT; }; + 4592464D4868329897F3864D /* LexSpice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpice.cxx; path = ../../src/stc/lexilla/lexers/LexSpice.cxx; sourceTree = SOURCE_ROOT; }; 65C4B1F34F273193BC76CEA2 /* libwxlexilla.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwxlexilla.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCsound.cxx; path = ../../src/stc/lexilla/lexers/LexCsound.cxx; sourceTree = SOURCE_ROOT; }; - A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cpp; path = ../../src/osx/core/bitmap.cpp; sourceTree = SOURCE_ROOT; }; - 207F0F88390138B6B41183EB /* aboutdlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = aboutdlg.mm; path = ../../src/osx/cocoa/aboutdlg.mm; sourceTree = SOURCE_ROOT; }; - 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCharacterCategory.cxx; path = ../../src/stc/lexilla/lexlib/LexCharacterCategory.cxx; sourceTree = SOURCE_ROOT; }; - BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_serialize.c; path = ../../3rdparty/pcre/src/pcre2_serialize.c; sourceTree = SOURCE_ROOT; }; - 9DB43FAB1E563B02ACEFF647 /* module.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cpp; path = ../../src/common/module.cpp; sourceTree = SOURCE_ROOT; }; - 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fdiodispatcher.cpp; path = ../../src/common/fdiodispatcher.cpp; sourceTree = SOURCE_ROOT; }; - BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = progdlgg.cpp; path = ../../src/generic/progdlgg.cpp; sourceTree = SOURCE_ROOT; }; + 0FBD8031E28A3C9CB7C45784 /* overlay.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = overlay.mm; path = ../../src/osx/cocoa/overlay.mm; sourceTree = SOURCE_ROOT; }; + 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextstyledlg.cpp; path = ../../src/richtext/richtextstyledlg.cpp; sourceTree = SOURCE_ROOT; }; + 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mimecmn.cpp; path = ../../src/common/mimecmn.cpp; sourceTree = SOURCE_ROOT; }; + 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = event.cpp; path = ../../src/common/event.cpp; sourceTree = SOURCE_ROOT; }; + 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dobjcmn.cpp; path = ../../src/common/dobjcmn.cpp; sourceTree = SOURCE_ROOT; }; + B233180893DB3328AF4847DA /* notifmsgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notifmsgcmn.cpp; path = ../../src/common/notifmsgcmn.cpp; sourceTree = SOURCE_ROOT; }; + 4867546E8B8D3C8683A23ED5 /* any.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = any.cpp; path = ../../src/common/any.cpp; sourceTree = SOURCE_ROOT; }; + BF1C44D726E63B18A98006EC /* Decoration.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Decoration.cxx; path = ../../src/stc/scintilla/src/Decoration.cxx; sourceTree = SOURCE_ROOT; }; + 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipbrd.cpp; path = ../../src/osx/carbon/clipbrd.cpp; sourceTree = SOURCE_ROOT; }; + 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checklstcmn.cpp; path = ../../src/common/checklstcmn.cpp; sourceTree = SOURCE_ROOT; }; + 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lboxcmn.cpp; path = ../../src/common/lboxcmn.cpp; sourceTree = SOURCE_ROOT; }; + B99CA41708513A599AE275A2 /* listbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listbox_osx.cpp; path = ../../src/osx/listbox_osx.cpp; sourceTree = SOURCE_ROOT; }; + 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_animatctrl.cpp; path = ../../src/xrc/xh_animatctrl.cpp; sourceTree = SOURCE_ROOT; }; + EA2520F427493A22A70A5C09 /* stackwalk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stackwalk.cpp; path = ../../src/unix/stackwalk.cpp; sourceTree = SOURCE_ROOT; }; + CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menuitem_osx.cpp; path = ../../src/osx/menuitem_osx.cpp; sourceTree = SOURCE_ROOT; }; + 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_richtext.cpp; path = ../../src/xrc/xh_richtext.cpp; sourceTree = SOURCE_ROOT; }; + 3F8836E29C5A370E80CE070E /* splash.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splash.cpp; path = ../../src/generic/splash.cpp; sourceTree = SOURCE_ROOT; }; + 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_match.c; path = ../../3rdparty/pcre/src/pcre2_match.c; sourceTree = SOURCE_ROOT; }; + C55AF552EE6931E8BFF7281B /* xh_aui.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_aui.cpp; path = ../../src/xrc/xh_aui.cpp; sourceTree = SOURCE_ROOT; }; + 9CE73979D0933A43830307E4 /* tif_packbits.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_packbits.c; path = ../../src/tiff/libtiff/tif_packbits.c; sourceTree = SOURCE_ROOT; }; + 9389DAF8B91030B7AAB029FF /* PerLine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PerLine.cxx; path = ../../src/stc/scintilla/src/PerLine.cxx; sourceTree = SOURCE_ROOT; }; 640783FBACA43206B782C77B /* evtloopcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtloopcmn.cpp; path = ../../src/common/evtloopcmn.cpp; sourceTree = SOURCE_ROOT; }; - F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_extuni.c; path = ../../3rdparty/pcre/src/pcre2_extuni.c; sourceTree = SOURCE_ROOT; }; - 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_toolb.cpp; path = ../../src/xrc/xh_toolb.cpp; sourceTree = SOURCE_ROOT; }; + 8EFF4707641D3F20AB602ED6 /* jccolor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccolor.c; path = ../../src/jpeg/jccolor.c; sourceTree = SOURCE_ROOT; }; + AAC12B4456E13F57BEA25A5E /* tif_swab.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_swab.c; path = ../../src/tiff/libtiff/tif_swab.c; sourceTree = SOURCE_ROOT; }; + 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexGAP.cxx; path = ../../src/stc/lexilla/lexers/LexGAP.cxx; sourceTree = SOURCE_ROOT; }; + CDF592CBE5193497A26EF978 /* DBCS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DBCS.cxx; path = ../../src/stc/scintilla/src/DBCS.cxx; sourceTree = SOURCE_ROOT; }; + 9BC8BFDE41F93504B7A51D08 /* nativewin.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = nativewin.mm; path = ../../src/osx/cocoa/nativewin.mm; sourceTree = SOURCE_ROOT; }; + 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdiobj.cpp; path = ../../src/osx/carbon/gdiobj.cpp; sourceTree = SOURCE_ROOT; }; + F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jbig.c; path = ../../src/tiff/libtiff/tif_jbig.c; sourceTree = SOURCE_ROOT; }; + 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = aboutdlgg.cpp; path = ../../src/generic/aboutdlgg.cpp; sourceTree = SOURCE_ROOT; }; + 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_tree.cpp; path = ../../src/xrc/xh_tree.cpp; sourceTree = SOURCE_ROOT; }; + 8EB76F786D7F3FF286948D22 /* jcomapi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcomapi.c; path = ../../src/jpeg/jcomapi.c; sourceTree = SOURCE_ROOT; }; + 95186FEF3DEF39D8B1157BD5 /* stattext.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = stattext.mm; path = ../../src/osx/cocoa/stattext.mm; sourceTree = SOURCE_ROOT; }; + 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbmpcmn.cpp; path = ../../src/common/statbmpcmn.cpp; sourceTree = SOURCE_ROOT; }; + CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_choicbk.cpp; path = ../../src/xrc/xh_choicbk.cpp; sourceTree = SOURCE_ROOT; }; + 8555204EBA8930809B732842 /* accesscmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accesscmn.cpp; path = ../../src/common/accesscmn.cpp; sourceTree = SOURCE_ROOT; }; + 2334539088B036BEAB230D1C /* filectrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filectrlg.cpp; path = ../../src/generic/filectrlg.cpp; sourceTree = SOURCE_ROOT; }; + 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_stbmp.cpp; path = ../../src/xrc/xh_stbmp.cpp; sourceTree = SOURCE_ROOT; }; + A65399C8A6D636139E362119 /* LexAsm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsm.cxx; path = ../../src/stc/lexilla/lexers/LexAsm.cxx; sourceTree = SOURCE_ROOT; }; + BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextsymboldlg.cpp; path = ../../src/richtext/richtextsymboldlg.cpp; sourceTree = SOURCE_ROOT; }; + DC3430B6483E35C3A201BF44 /* LexPO.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPO.cxx; path = ../../src/stc/lexilla/lexers/LexPO.cxx; sourceTree = SOURCE_ROOT; }; + B883F991159731DCB2717A21 /* CharacterSet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterSet.cxx; path = ../../src/stc/scintilla/src/CharacterSet.cxx; sourceTree = SOURCE_ROOT; }; + 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gifdecod.cpp; path = ../../src/common/gifdecod.cpp; sourceTree = SOURCE_ROOT; }; + 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lzmastream.cpp; path = ../../src/common/lzmastream.cpp; sourceTree = SOURCE_ROOT; }; + 83B878A16ABC396E8C03A15E /* dialog.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = dialog.mm; path = ../../src/osx/cocoa/dialog.mm; sourceTree = SOURCE_ROOT; }; + 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdproc.cpp; path = ../../src/common/cmdproc.cpp; sourceTree = SOURCE_ROOT; }; + 4BA819575B5136B09FA8FEB1 /* pen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pen.cpp; path = ../../src/osx/pen.cpp; sourceTree = SOURCE_ROOT; }; + BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_dirpicker.cpp; path = ../../src/xrc/xh_dirpicker.cpp; sourceTree = SOURCE_ROOT; }; + 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPascal.cxx; path = ../../src/stc/lexilla/lexers/LexPascal.cxx; sourceTree = SOURCE_ROOT; }; + 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtstrm.cpp; path = ../../src/common/txtstrm.cpp; sourceTree = SOURCE_ROOT; }; + 3CF73F49AEC238C99CE89845 /* deflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = deflate.c; path = ../../src/zlib/deflate.c; sourceTree = SOURCE_ROOT; }; + 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexModula.cxx; path = ../../src/stc/lexilla/lexers/LexModula.cxx; sourceTree = SOURCE_ROOT; }; + 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobut_osx.cpp; path = ../../src/osx/radiobut_osx.cpp; sourceTree = SOURCE_ROOT; }; A37E3D1FB4FB31AFAE88665A /* dpycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dpycmn.cpp; path = ../../src/common/dpycmn.cpp; sourceTree = SOURCE_ROOT; }; - EEA0945B20913754A54D0FD9 /* dcpsg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcpsg.cpp; path = ../../src/generic/dcpsg.cpp; sourceTree = SOURCE_ROOT; }; - 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gaugecmn.cpp; path = ../../src/common/gaugecmn.cpp; sourceTree = SOURCE_ROOT; }; - C125FA3837C631A9BE0ED5E7 /* splitter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splitter.cpp; path = ../../src/generic/splitter.cpp; sourceTree = SOURCE_ROOT; }; - 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcher_fsevents.cpp; path = ../../src/osx/fswatcher_fsevents.cpp; sourceTree = SOURCE_ROOT; }; - 3E6F40F4740C3ED29D83E107 /* tif_version.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_version.c; path = ../../src/tiff/libtiff/tif_version.c; sourceTree = SOURCE_ROOT; }; - 741E9B48274638CD9DD73698 /* bmpsvg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpsvg.cpp; path = ../../src/generic/bmpsvg.cpp; sourceTree = SOURCE_ROOT; }; - 8FFDFB4D208F37569AC548B0 /* imagall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagall.cpp; path = ../../src/common/imagall.cpp; sourceTree = SOURCE_ROOT; }; + E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = KeyMap.cxx; path = ../../src/stc/scintilla/src/KeyMap.cxx; sourceTree = SOURCE_ROOT; }; + A92B6033D8233DB1821F193B /* xmlparse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = xmlparse.c; path = ../../src/expat/expat/lib/xmlparse.c; sourceTree = SOURCE_ROOT; }; + A06AB1974DB93EE2999EC75C /* pngrio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrio.c; path = ../../src/png/pngrio.c; sourceTree = SOURCE_ROOT; }; + 018B15DE6F3A3D49B9CDE9DE /* hidjoystick.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hidjoystick.cpp; path = ../../src/osx/core/hidjoystick.cpp; sourceTree = SOURCE_ROOT; }; + 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_find_bracket.c; path = ../../3rdparty/pcre/src/pcre2_find_bracket.c; sourceTree = SOURCE_ROOT; }; + DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socketiohandler.cpp; path = ../../src/common/socketiohandler.cpp; sourceTree = SOURCE_ROOT; }; + 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSML.cxx; path = ../../src/stc/lexilla/lexers/LexSML.cxx; sourceTree = SOURCE_ROOT; }; + DB170BF78EFE39D692E11985 /* fontdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdlgg.cpp; path = ../../src/generic/fontdlgg.cpp; sourceTree = SOURCE_ROOT; }; + A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selectdispatcher.cpp; path = ../../src/common/selectdispatcher.cpp; sourceTree = SOURCE_ROOT; }; + A298576700C33F018616E7BD /* auibook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = auibook.cpp; path = ../../src/aui/auibook.cpp; sourceTree = SOURCE_ROOT; }; + 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiocmn.cpp; path = ../../src/common/radiocmn.cpp; sourceTree = SOURCE_ROOT; }; + C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AutoComplete.cxx; path = ../../src/stc/scintilla/src/AutoComplete.cxx; sourceTree = SOURCE_ROOT; }; + 6A82EDCFFBAC30098B238957 /* caret.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = caret.cpp; path = ../../src/generic/caret.cpp; sourceTree = SOURCE_ROOT; }; + 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcgraph.cpp; path = ../../src/common/dcgraph.cpp; sourceTree = SOURCE_ROOT; }; + 548906E4E72935E48CE4AF87 /* m_image.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_image.cpp; path = ../../src/html/m_image.cpp; sourceTree = SOURCE_ROOT; }; CA72410F615B3A78A6340532 /* dnd_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dnd_osx.cpp; path = ../../src/osx/dnd_osx.cpp; sourceTree = SOURCE_ROOT; }; - E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirdlgg.cpp; path = ../../src/generic/dirdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 9051902662BE38B3912B34EA /* dlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlgcmn.cpp; path = ../../src/common/dlgcmn.cpp; sourceTree = SOURCE_ROOT; }; - 2B5A9DF3206B3954A4B38BFD /* clrpickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrpickerg.cpp; path = ../../src/generic/clrpickerg.cpp; sourceTree = SOURCE_ROOT; }; - 033B94A9AC8A3370A794503F /* extended.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = extended.c; path = ../../src/common/extended.c; sourceTree = SOURCE_ROOT; }; - B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_treebk.cpp; path = ../../src/xrc/xh_treebk.cpp; sourceTree = SOURCE_ROOT; }; - FE3B47058A723243A285594D /* LexMPT.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMPT.cxx; path = ../../src/stc/lexilla/lexers/LexMPT.cxx; sourceTree = SOURCE_ROOT; }; - 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filectrlcmn.cpp; path = ../../src/common/filectrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_stbmp.cpp; path = ../../src/xrc/xh_stbmp.cpp; sourceTree = SOURCE_ROOT; }; - 70E9B2C076673C87B4218A01 /* panelcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = panelcmn.cpp; path = ../../src/common/panelcmn.cpp; sourceTree = SOURCE_ROOT; }; - DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_aui.cpp; path = ../../src/ribbon/art_aui.cpp; sourceTree = SOURCE_ROOT; }; - 3E3043D7BE9C33B59E900CCE /* jcmaster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmaster.c; path = ../../src/jpeg/jcmaster.c; sourceTree = SOURCE_ROOT; }; - 95A156A823B536DE8476E4F9 /* appbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbase.cpp; path = ../../src/common/appbase.cpp; sourceTree = SOURCE_ROOT; }; - 69F098E47EBF34368ABAE7ED /* timer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cpp; path = ../../src/osx/core/timer.cpp; sourceTree = SOURCE_ROOT; }; - FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glcanvas_osx.cpp; path = ../../src/osx/glcanvas_osx.cpp; sourceTree = SOURCE_ROOT; }; - 29D6506AEA5A323B8735F126 /* pngread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngread.c; path = ../../src/png/pngread.c; sourceTree = SOURCE_ROOT; }; - 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_slidr.cpp; path = ../../src/xrc/xh_slidr.cpp; sourceTree = SOURCE_ROOT; }; - 81A30C745CA73E30B788B408 /* image.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image.cpp; path = ../../src/common/image.cpp; sourceTree = SOURCE_ROOT; }; - 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpcboxg.cpp; path = ../../src/generic/bmpcboxg.cpp; sourceTree = SOURCE_ROOT; }; - 1629FA905F903324AA5BE72C /* vscroll.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vscroll.cpp; path = ../../src/generic/vscroll.cpp; sourceTree = SOURCE_ROOT; }; - 4CB467F9898C3952A68D988B /* zutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = zutil.c; path = ../../src/zlib/zutil.c; sourceTree = SOURCE_ROOT; }; - D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_cmdlinkbn.cpp; path = ../../src/xrc/xh_cmdlinkbn.cpp; sourceTree = SOURCE_ROOT; }; - FCCFF49F92B4323D9181CEDA /* htmltag.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmltag.cpp; path = ../../src/html/htmltag.cpp; sourceTree = SOURCE_ROOT; }; - A5EE0B8985443BDCB36F781F /* m_layout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_layout.cpp; path = ../../src/html/m_layout.cpp; sourceTree = SOURCE_ROOT; }; - 24E82A05E9A9323287CDB15B /* artstd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artstd.cpp; path = ../../src/common/artstd.cpp; sourceTree = SOURCE_ROOT; }; - A9C7F740A55E39FD890B3C7F /* editors.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = editors.cpp; path = ../../src/propgrid/editors.cpp; sourceTree = SOURCE_ROOT; }; - CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webviewfshandler.cpp; path = ../../src/common/webviewfshandler.cpp; sourceTree = SOURCE_ROOT; }; - 0E7BF9256DF533EBAE2B945E /* WordList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WordList.cxx; path = ../../src/stc/lexilla/lexlib/WordList.cxx; sourceTree = SOURCE_ROOT; }; - CDF592CBE5193497A26EF978 /* DBCS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DBCS.cxx; path = ../../src/stc/scintilla/src/DBCS.cxx; sourceTree = SOURCE_ROOT; }; - C2BB2949CC0B387AB6879539 /* metafile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metafile.cpp; path = ../../src/osx/carbon/metafile.cpp; sourceTree = SOURCE_ROOT; }; - 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combocmn.cpp; path = ../../src/common/combocmn.cpp; sourceTree = SOURCE_ROOT; }; - DAAED71A534135A9A61612A6 /* colordlgosx.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = colordlgosx.mm; path = ../../src/osx/carbon/colordlgosx.mm; sourceTree = SOURCE_ROOT; }; - 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nonownedwnd_osx.cpp; path = ../../src/osx/nonownedwnd_osx.cpp; sourceTree = SOURCE_ROOT; }; - 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choice_osx.cpp; path = ../../src/osx/choice_osx.cpp; sourceTree = SOURCE_ROOT; }; - 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPLM.cxx; path = ../../src/stc/lexilla/lexers/LexPLM.cxx; sourceTree = SOURCE_ROOT; }; - AF26BAB1F4733114926F1724 /* png.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = png.c; path = ../../src/png/png.c; sourceTree = SOURCE_ROOT; }; - 5ED2105A5A033E3384EBC4ED /* selstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selstore.cpp; path = ../../src/generic/selstore.cpp; sourceTree = SOURCE_ROOT; }; - F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sysopt.cpp; path = ../../src/common/sysopt.cpp; sourceTree = SOURCE_ROOT; }; + 998D611109EC33A9A6A11C5A /* gdicmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdicmn.cpp; path = ../../src/common/gdicmn.cpp; sourceTree = SOURCE_ROOT; }; + 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemmgr.c; path = ../../src/jpeg/jmemmgr.c; sourceTree = SOURCE_ROOT; }; 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wizard.cpp; path = ../../src/generic/wizard.cpp; sourceTree = SOURCE_ROOT; }; - B63EBEE1A04537E7887E9FD0 /* ustring.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ustring.cpp; path = ../../src/common/ustring.cpp; sourceTree = SOURCE_ROOT; }; - 02D2E8B5C89939CE90B99E2B /* archive.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = archive.cpp; path = ../../src/common/archive.cpp; sourceTree = SOURCE_ROOT; }; - B35DA585CFDD32468868E892 /* process.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cpp; path = ../../src/common/process.cpp; sourceTree = SOURCE_ROOT; }; - 00DA3D3EEF5E305CA73A1871 /* region.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = region.cpp; path = ../../src/osx/carbon/region.cpp; sourceTree = SOURCE_ROOT; }; - CD72950967F33809931D4968 /* LexAbaqus.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAbaqus.cxx; path = ../../src/stc/lexilla/lexers/LexAbaqus.cxx; sourceTree = SOURCE_ROOT; }; - EC28591B403B32B7AFCC079D /* gauge_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gauge_osx.cpp; path = ../../src/osx/gauge_osx.cpp; sourceTree = SOURCE_ROOT; }; - EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filtfind.cpp; path = ../../src/common/filtfind.cpp; sourceTree = SOURCE_ROOT; }; - E29A8279BAEE303B95C9D3C6 /* LexGDScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexGDScript.cxx; path = ../../src/stc/lexilla/lexers/LexGDScript.cxx; sourceTree = SOURCE_ROOT; }; - 8EFF4707641D3F20AB602ED6 /* jccolor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccolor.c; path = ../../src/jpeg/jccolor.c; sourceTree = SOURCE_ROOT; }; - 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_match_data.c; path = ../../3rdparty/pcre/src/pcre2_match_data.c; sourceTree = SOURCE_ROOT; }; - 7FCA75FE592C3469AE351FBF /* winpars.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winpars.cpp; path = ../../src/html/winpars.cpp; sourceTree = SOURCE_ROOT; }; - E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbase.cpp; path = ../../src/common/bmpbase.cpp; sourceTree = SOURCE_ROOT; }; - 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbuttn_osx.cpp; path = ../../src/osx/bmpbuttn_osx.cpp; sourceTree = SOURCE_ROOT; }; - FADE850169F7347F83FE1499 /* xh_statbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_statbar.cpp; path = ../../src/xrc/xh_statbar.cpp; sourceTree = SOURCE_ROOT; }; - 18ABDAF9EF723072A7708009 /* PlatWXcocoa.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = PlatWXcocoa.mm; path = ../../src/stc/PlatWXcocoa.mm; sourceTree = SOURCE_ROOT; }; - 889FFA9573A835F280A21CB4 /* xh_html.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_html.cpp; path = ../../src/xrc/xh_html.cpp; sourceTree = SOURCE_ROOT; }; - 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrlsub.cpp; path = ../../src/common/ctrlsub.cpp; sourceTree = SOURCE_ROOT; }; - B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCOBOL.cxx; path = ../../src/stc/lexilla/lexers/LexCOBOL.cxx; sourceTree = SOURCE_ROOT; }; - C63C964DAFAD311694367C94 /* xh_datectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_datectrl.cpp; path = ../../src/xrc/xh_datectrl.cpp; sourceTree = SOURCE_ROOT; }; - B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tipdlg.cpp; path = ../../src/generic/tipdlg.cpp; sourceTree = SOURCE_ROOT; }; - 7273A7E255323EB3B391D997 /* headerctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headerctrlg.cpp; path = ../../src/generic/headerctrlg.cpp; sourceTree = SOURCE_ROOT; }; - D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = markuptext.cpp; path = ../../src/generic/markuptext.cpp; sourceTree = SOURCE_ROOT; }; - 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHex.cxx; path = ../../src/stc/lexilla/lexers/LexHex.cxx; sourceTree = SOURCE_ROOT; }; - 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexOpal.cxx; path = ../../src/stc/lexilla/lexers/LexOpal.cxx; sourceTree = SOURCE_ROOT; }; - DCBD877191233EE9984112D2 /* InList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = InList.cxx; path = ../../src/stc/lexilla/lexlib/InList.cxx; sourceTree = SOURCE_ROOT; }; - 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_filepicker.cpp; path = ../../src/xrc/xh_filepicker.cpp; sourceTree = SOURCE_ROOT; }; - 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcscreen.cpp; path = ../../src/osx/carbon/dcscreen.cpp; sourceTree = SOURCE_ROOT; }; - 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gbsizer.cpp; path = ../../src/common/gbsizer.cpp; sourceTree = SOURCE_ROOT; }; - 5F094B0B07DF33BCA6077BC0 /* fdrepdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fdrepdlg.cpp; path = ../../src/generic/fdrepdlg.cpp; sourceTree = SOURCE_ROOT; }; - C06FED83BF933DF98C2466AE /* button.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = button.mm; path = ../../src/osx/cocoa/button.mm; sourceTree = SOURCE_ROOT; }; - 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_simplebook.cpp; path = ../../src/xrc/xh_simplebook.cpp; sourceTree = SOURCE_ROOT; }; - 2E00E14795F23A8392713A26 /* fontutilcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontutilcmn.cpp; path = ../../src/common/fontutilcmn.cpp; sourceTree = SOURCE_ROOT; }; - B17772732159304AA7312D72 /* dcclient.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcclient.cpp; path = ../../src/osx/carbon/dcclient.cpp; sourceTree = SOURCE_ROOT; }; - 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextstyledlg.cpp; path = ../../src/richtext/richtextstyledlg.cpp; sourceTree = SOURCE_ROOT; }; - 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dobjcmn.cpp; path = ../../src/common/dobjcmn.cpp; sourceTree = SOURCE_ROOT; }; - 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAccessor.cxx; path = ../../src/stc/lexilla/lexlib/LexAccessor.cxx; sourceTree = SOURCE_ROOT; }; - AC62806DE67F33E18C386D4F /* LexDMAP.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMAP.cxx; path = ../../src/stc/lexilla/lexers/LexDMAP.cxx; sourceTree = SOURCE_ROOT; }; + C83C97A1FCC5345896C9D7DE /* tif_warning.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_warning.c; path = ../../src/tiff/libtiff/tif_warning.c; sourceTree = SOURCE_ROOT; }; + 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jpeg.c; path = ../../src/tiff/libtiff/tif_jpeg.c; sourceTree = SOURCE_ROOT; }; + B180290089B139F18B0C7BBA /* stockitem.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stockitem.cpp; path = ../../src/common/stockitem.cpp; sourceTree = SOURCE_ROOT; }; + 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueString.cxx; path = ../../src/stc/scintilla/src/UniqueString.cxx; sourceTree = SOURCE_ROOT; }; + 861438BD294335D4B859EA71 /* toplvcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toplvcmn.cpp; path = ../../src/common/toplvcmn.cpp; sourceTree = SOURCE_ROOT; }; + 2A67053D16D63C588E555C84 /* dragimgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dragimgg.cpp; path = ../../src/generic/dragimgg.cpp; sourceTree = SOURCE_ROOT; }; + 1BB59DD194923D6399087A75 /* graphcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphcmn.cpp; path = ../../src/common/graphcmn.cpp; sourceTree = SOURCE_ROOT; }; + 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printmac.cpp; path = ../../src/osx/core/printmac.cpp; sourceTree = SOURCE_ROOT; }; + E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richmsgdlgg.cpp; path = ../../src/generic/richmsgdlgg.cpp; sourceTree = SOURCE_ROOT; }; + 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jutils.c; path = ../../src/jpeg/jutils.c; sourceTree = SOURCE_ROOT; }; + 430739CB8B95336ABB372EC7 /* EditView.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EditView.cxx; path = ../../src/stc/scintilla/src/EditView.cxx; sourceTree = SOURCE_ROOT; }; + F1A6F3936A0D31CBB58082BA /* jdcoefct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcoefct.c; path = ../../src/jpeg/jdcoefct.c; sourceTree = SOURCE_ROOT; }; + 99E5B6DD00273D978C241BCA /* radiobut.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = radiobut.mm; path = ../../src/osx/cocoa/radiobut.mm; sourceTree = SOURCE_ROOT; }; + 8052B1625907355894CCF263 /* LexillaAccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexillaAccess.cxx; path = ../../src/stc/lexilla/access/LexillaAccess.cxx; sourceTree = SOURCE_ROOT; }; + 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = odcombo.cpp; path = ../../src/generic/odcombo.cpp; sourceTree = SOURCE_ROOT; }; + 5814208070CF3D899F132BA1 /* activityindicator.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = activityindicator.mm; path = ../../src/osx/cocoa/activityindicator.mm; sourceTree = SOURCE_ROOT; }; + BD709DEB71623974B9836D69 /* dockart.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockart.cpp; path = ../../src/aui/dockart.cpp; sourceTree = SOURCE_ROOT; }; + B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_sttxt.cpp; path = ../../src/xrc/xh_sttxt.cpp; sourceTree = SOURCE_ROOT; }; + 6876262846EA3569B36D92E9 /* imagjpeg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagjpeg.cpp; path = ../../src/common/imagjpeg.cpp; sourceTree = SOURCE_ROOT; }; + 343D4FDD5CC030618EF24729 /* dcmemory.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcmemory.cpp; path = ../../src/osx/core/dcmemory.cpp; sourceTree = SOURCE_ROOT; }; + E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = commandlinkbuttong.cpp; path = ../../src/generic/commandlinkbuttong.cpp; sourceTree = SOURCE_ROOT; }; + DB6963739198360DB3DBCC6C /* dataview.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = dataview.mm; path = ../../src/osx/cocoa/dataview.mm; sourceTree = SOURCE_ROOT; }; + 7013DB195D023C31ADE68546 /* crc32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = crc32.c; path = ../../src/zlib/crc32.c; sourceTree = SOURCE_ROOT; }; + C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediactrlcmn.cpp; path = ../../src/common/mediactrlcmn.cpp; sourceTree = SOURCE_ROOT; }; 182C8AD4F822375495795B43 /* dbgrptg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbgrptg.cpp; path = ../../src/generic/dbgrptg.cpp; sourceTree = SOURCE_ROOT; }; - 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbar_osx.cpp; path = ../../src/osx/toolbar_osx.cpp; sourceTree = SOURCE_ROOT; }; - E6AB648BC5173104A96CAE66 /* xml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xml.cpp; path = ../../src/xml/xml.cpp; sourceTree = SOURCE_ROOT; }; - 8EB76F786D7F3FF286948D22 /* jcomapi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcomapi.c; path = ../../src/jpeg/jcomapi.c; sourceTree = SOURCE_ROOT; }; - 9E5C91072D533919A78D8ED2 /* LexTACL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTACL.cxx; path = ../../src/stc/lexilla/lexers/LexTACL.cxx; sourceTree = SOURCE_ROOT; }; - 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlpars.cpp; path = ../../src/html/htmlpars.cpp; sourceTree = SOURCE_ROOT; }; + 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_filectrl.cpp; path = ../../src/xrc/xh_filectrl.cpp; sourceTree = SOURCE_ROOT; }; + 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UniConversion.cxx; path = ../../src/stc/scintilla/src/UniConversion.cxx; sourceTree = SOURCE_ROOT; }; + 87D973CA8D673267BD0844D3 /* paper.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paper.cpp; path = ../../src/common/paper.cpp; sourceTree = SOURCE_ROOT; }; + A5617D10CB7136EC9A4194EF /* display.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = display.cpp; path = ../../src/osx/core/display.cpp; sourceTree = SOURCE_ROOT; }; + 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_pixarlog.c; path = ../../src/tiff/libtiff/tif_pixarlog.c; sourceTree = SOURCE_ROOT; }; + 86A0C3603C8A343AAFBD2CE0 /* LexFortran.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFortran.cxx; path = ../../src/stc/lexilla/lexers/LexFortran.cxx; sourceTree = SOURCE_ROOT; }; + 7395814D42CC38F6B8CD81B4 /* gzlib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzlib.c; path = ../../src/zlib/gzlib.c; sourceTree = SOURCE_ROOT; }; + F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sysopt.cpp; path = ../../src/common/sysopt.cpp; sourceTree = SOURCE_ROOT; }; + DC9153A350893820B942D37E /* LexMatlab.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMatlab.cxx; path = ../../src/stc/lexilla/lexers/LexMatlab.cxx; sourceTree = SOURCE_ROOT; }; E1B794996B953D00AC7BC2AE /* uilocale.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = uilocale.mm; path = ../../src/osx/core/uilocale.mm; sourceTree = SOURCE_ROOT; }; - 2C6C4F5468743265A02D656C /* htmlfilt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlfilt.cpp; path = ../../src/html/htmlfilt.cpp; sourceTree = SOURCE_ROOT; }; - 59572A234F0636D78BFD9F6B /* spinctlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinctlg.cpp; path = ../../src/generic/spinctlg.cpp; sourceTree = SOURCE_ROOT; }; - 7195E665E0F233839B967FC9 /* timercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timercmn.cpp; path = ../../src/common/timercmn.cpp; sourceTree = SOURCE_ROOT; }; - 55EBB18CB4773C788510B14B /* LexEiffel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEiffel.cxx; path = ../../src/stc/lexilla/lexers/LexEiffel.cxx; sourceTree = SOURCE_ROOT; }; - 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpwnd.cpp; path = ../../src/html/helpwnd.cpp; sourceTree = SOURCE_ROOT; }; - 24BD2EF635673E819B8406CB /* LexRust.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRust.cxx; path = ../../src/stc/lexilla/lexers/LexRust.cxx; sourceTree = SOURCE_ROOT; }; - 888BD97139C936679691FF34 /* hash.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cpp; path = ../../src/common/hash.cpp; sourceTree = SOURCE_ROOT; }; - 2ACC8667173D3AB09F6214F4 /* sound.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cpp; path = ../../src/osx/core/sound.cpp; sourceTree = SOURCE_ROOT; }; - 0890779C662C35889A8C6C2E /* jdmerge.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmerge.c; path = ../../src/jpeg/jdmerge.c; sourceTree = SOURCE_ROOT; }; - 24DF23D67E693D999B875101 /* toolbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbkg.cpp; path = ../../src/generic/toolbkg.cpp; sourceTree = SOURCE_ROOT; }; - 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexModula.cxx; path = ../../src/stc/lexilla/lexers/LexModula.cxx; sourceTree = SOURCE_ROOT; }; - 2A4D36DE66EC3EB09E883D6B /* taskbar.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = taskbar.mm; path = ../../src/osx/cocoa/taskbar.mm; sourceTree = SOURCE_ROOT; }; - 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checklst_osx.cpp; path = ../../src/osx/checklst_osx.cpp; sourceTree = SOURCE_ROOT; }; - C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tarstrm.cpp; path = ../../src/common/tarstrm.cpp; sourceTree = SOURCE_ROOT; }; - 7EE2459D69BA35838C274488 /* LexCLW.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCLW.cxx; path = ../../src/stc/lexilla/lexers/LexCLW.cxx; sourceTree = SOURCE_ROOT; }; - 5190E3E110443FD29F2474FC /* treelist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treelist.cpp; path = ../../src/generic/treelist.cpp; sourceTree = SOURCE_ROOT; }; - 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpcboxcmn.cpp; path = ../../src/common/bmpcboxcmn.cpp; sourceTree = SOURCE_ROOT; }; - A208BFC0C8C43847A9620ADA /* pcre2_newline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_newline.c; path = ../../3rdparty/pcre/src/pcre2_newline.c; sourceTree = SOURCE_ROOT; }; - 835C22B71A0F3C469310E1E0 /* preferences.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = preferences.mm; path = ../../src/osx/cocoa/preferences.mm; sourceTree = SOURCE_ROOT; }; - 4FDE5A962FA234FA83A605AD /* Indicator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Indicator.cxx; path = ../../src/stc/scintilla/src/Indicator.cxx; sourceTree = SOURCE_ROOT; }; - 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toplevel_osx.cpp; path = ../../src/osx/toplevel_osx.cpp; sourceTree = SOURCE_ROOT; }; - FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTeX.cxx; path = ../../src/stc/lexilla/lexers/LexTeX.cxx; sourceTree = SOURCE_ROOT; }; - 26381308E32A3A179E7A9B40 /* gridsel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridsel.cpp; path = ../../src/generic/gridsel.cpp; sourceTree = SOURCE_ROOT; }; + A0A63980677D371C85A60B75 /* datetimectrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = datetimectrl.mm; path = ../../src/osx/cocoa/datetimectrl.mm; sourceTree = SOURCE_ROOT; }; + 2B5A9DF3206B3954A4B38BFD /* clrpickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrpickerg.cpp; path = ../../src/generic/clrpickerg.cpp; sourceTree = SOURCE_ROOT; }; + 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gallery.cpp; path = ../../src/ribbon/gallery.cpp; sourceTree = SOURCE_ROOT; }; + 40586C8986443431A64EB066 /* LexLisp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLisp.cxx; path = ../../src/stc/lexilla/lexers/LexLisp.cxx; sourceTree = SOURCE_ROOT; }; + FBE1C531185131A89EFF7FAF /* cmdline.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdline.cpp; path = ../../src/common/cmdline.cpp; sourceTree = SOURCE_ROOT; }; + 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbtncmn.cpp; path = ../../src/common/bmpbtncmn.cpp; sourceTree = SOURCE_ROOT; }; + FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glcanvas_osx.cpp; path = ../../src/osx/glcanvas_osx.cpp; sourceTree = SOURCE_ROOT; }; + 910D00F1C9143C6D85C24E7C /* LexDMIS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMIS.cxx; path = ../../src/stc/lexilla/lexers/LexDMIS.cxx; sourceTree = SOURCE_ROOT; }; + 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbutt_osx.cpp; path = ../../src/osx/spinbutt_osx.cpp; sourceTree = SOURCE_ROOT; }; + 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharClassify.cxx; path = ../../src/stc/scintilla/src/CharClassify.cxx; sourceTree = SOURCE_ROOT; }; + 5C85865D28DC31649440A921 /* imagxpm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagxpm.cpp; path = ../../src/common/imagxpm.cpp; sourceTree = SOURCE_ROOT; }; + 00DA3D3EEF5E305CA73A1871 /* region.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = region.cpp; path = ../../src/osx/carbon/region.cpp; sourceTree = SOURCE_ROOT; }; + 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdatadst.c; path = ../../src/jpeg/jdatadst.c; sourceTree = SOURCE_ROOT; }; + BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNimrod.cxx; path = ../../src/stc/lexilla/lexers/LexNimrod.cxx; sourceTree = SOURCE_ROOT; }; + 242BF97B558634A79322052C /* prntbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prntbase.cpp; path = ../../src/common/prntbase.cpp; sourceTree = SOURCE_ROOT; }; + 4969528429903F15882F5391 /* sockosx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sockosx.cpp; path = ../../src/osx/core/sockosx.cpp; sourceTree = SOURCE_ROOT; }; + D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexOScript.cxx; path = ../../src/stc/lexilla/lexers/LexOScript.cxx; sourceTree = SOURCE_ROOT; }; D69A302C00153A709B7DE4C6 /* wxcocoa_ml3rd.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = wxcocoa_ml3rd.xcconfig; sourceTree = ""; }; - 8F633793051F371F94C27530 /* LexVB.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVB.cxx; path = ../../src/stc/lexilla/lexers/LexVB.cxx; sourceTree = SOURCE_ROOT; }; + BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbar.cpp; path = ../../src/ribbon/toolbar.cpp; sourceTree = SOURCE_ROOT; }; BD044F7074D0307985FCA361 /* wxcocoa_ml.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = wxcocoa_ml.xcconfig; sourceTree = ""; }; - 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpecman.cxx; path = ../../src/stc/lexilla/lexers/LexSpecman.cxx; sourceTree = SOURCE_ROOT; }; - 30FD1048328234E59D319863 /* tif_fax3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_fax3.c; path = ../../src/tiff/libtiff/tif_fax3.c; sourceTree = SOURCE_ROOT; }; + 66411D54BAD338498AC59401 /* xh_scrol.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_scrol.cpp; path = ../../src/xrc/xh_scrol.cpp; sourceTree = SOURCE_ROOT; }; 7FDC84691ED63A1282591A89 /* libwx_baseu.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libwx_baseu.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; 966AA1B230CA3EFCB1260D80 /* libwx_baseu_net.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libwx_baseu_net.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; D1AA14D7251A30ACB5E66678 /* libwx_osx_cocoau_core.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libwx_osx_cocoau_core.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -4346,9 +4358,10 @@ 4738C1AA38623F8B9A5E5E30 /* wxcocoa_mlbase.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = wxcocoa_mlbase.xcconfig; sourceTree = ""; }; E862A0A422483954B755053E /* wxcocoa_mlgui.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = wxcocoa_mlgui.xcconfig; sourceTree = ""; }; C7250869AA793A8B8E19638C /* libwx_osx_cocoau_qa.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libwx_osx_cocoau_qa.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; + 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckipc.cpp; path = ../../src/common/sckipc.cpp; sourceTree = SOURCE_ROOT; }; 8707324525DB344EA0E7D5CE /* wxdebug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = wxdebug.xcconfig; sourceTree = ""; }; D5B7B7C10A3E3C689AE1E418 /* wxrelease.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = wxrelease.xcconfig; sourceTree = ""; }; - 5FF661188B563D27A11F5716 /* fontutil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontutil.cpp; path = ../../src/osx/fontutil.cpp; sourceTree = SOURCE_ROOT; }; + 926BDF9C386C3A9A8C24D453 /* statbox.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = statbox.mm; path = ../../src/osx/cocoa/statbox.mm; sourceTree = SOURCE_ROOT; }; 1FE40C0874B83EE2BC981A1C /* libwxexpat.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwxexpat.a; sourceTree = BUILT_PRODUCTS_DIR; }; BE22393DB53C3D259DFCEE64 /* libwxjpeg.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwxjpeg.a; sourceTree = BUILT_PRODUCTS_DIR; }; A06507F3AA1A32C0AE14AC26 /* libwxtiff.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwxtiff.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -4356,720 +4369,707 @@ D78E858CE339374FAC0B1401 /* libwxpng.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwxpng.a; sourceTree = BUILT_PRODUCTS_DIR; }; 9AD4A752750F3200A6C3BE59 /* libwxregex.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwxregex.a; sourceTree = BUILT_PRODUCTS_DIR; }; 23268CF4AF7431C3BCEBAEC8 /* libwxscintilla.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwxscintilla.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 0FBD8031E28A3C9CB7C45784 /* overlay.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = overlay.mm; path = ../../src/osx/cocoa/overlay.mm; sourceTree = SOURCE_ROOT; }; - B181F564935730E89AB00D92 /* LexForth.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexForth.cxx; path = ../../src/stc/lexilla/lexers/LexForth.cxx; sourceTree = SOURCE_ROOT; }; - 45C65E309F3A39598C043657 /* xh_infobar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_infobar.cpp; path = ../../src/xrc/xh_infobar.cpp; sourceTree = SOURCE_ROOT; }; - 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utilscocoa.mm; path = ../../src/osx/carbon/utilscocoa.mm; sourceTree = SOURCE_ROOT; }; - D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Lexilla.cxx; path = ../../src/stc/lexilla/src/Lexilla.cxx; sourceTree = SOURCE_ROOT; }; - 303ACF199BE431BD891C9301 /* overlaycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = overlaycmn.cpp; path = ../../src/common/overlaycmn.cpp; sourceTree = SOURCE_ROOT; }; - 933D7637CAA43F6C99814BC5 /* arm_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = arm_init.c; path = ../../src/png/arm/arm_init.c; sourceTree = SOURCE_ROOT; }; - 9FEB8204E530329FA085E5B8 /* strconv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strconv.cpp; path = ../../src/common/strconv.cpp; sourceTree = SOURCE_ROOT; }; - B580FD04D0D83601826FD5EE /* filepickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filepickerg.cpp; path = ../../src/generic/filepickerg.cpp; sourceTree = SOURCE_ROOT; }; - 40CE02524DD4385AB2C3DF95 /* socket.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socket.cpp; path = ../../src/common/socket.cpp; sourceTree = SOURCE_ROOT; }; - 4692909E4B823F71822B13F8 /* taskbarcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskbarcmn.cpp; path = ../../src/common/taskbarcmn.cpp; sourceTree = SOURCE_ROOT; }; - 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgridiface.cpp; path = ../../src/propgrid/propgridiface.cpp; sourceTree = SOURCE_ROOT; }; - 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CallTip.cxx; path = ../../src/stc/scintilla/src/CallTip.cxx; sourceTree = SOURCE_ROOT; }; - 35007225BB683683AA7C5E48 /* glcanvas.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = glcanvas.mm; path = ../../src/osx/cocoa/glcanvas.mm; sourceTree = SOURCE_ROOT; }; - 864438709B363773B8C3382D /* datetimefmt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datetimefmt.cpp; path = ../../src/common/datetimefmt.cpp; sourceTree = SOURCE_ROOT; }; - B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmainct.c; path = ../../src/jpeg/jdmainct.c; sourceTree = SOURCE_ROOT; }; - 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcherg.cpp; path = ../../src/generic/fswatcherg.cpp; sourceTree = SOURCE_ROOT; }; - 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_propdlg.cpp; path = ../../src/xrc/xh_propdlg.cpp; sourceTree = SOURCE_ROOT; }; - DF376BC55EA73F5FB7328142 /* helpext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpext.cpp; path = ../../src/generic/helpext.cpp; sourceTree = SOURCE_ROOT; }; - 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerBase.cxx; path = ../../src/stc/lexilla/lexlib/LexerBase.cxx; sourceTree = SOURCE_ROOT; }; - 93B77251C0E0382D9A8E113D /* xh_grid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_grid.cpp; path = ../../src/xrc/xh_grid.cpp; sourceTree = SOURCE_ROOT; }; - AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wincmn.cpp; path = ../../src/common/wincmn.cpp; sourceTree = SOURCE_ROOT; }; - 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdatadst.c; path = ../../src/jpeg/jdatadst.c; sourceTree = SOURCE_ROOT; }; - EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_chckl.cpp; path = ../../src/xrc/xh_chckl.cpp; sourceTree = SOURCE_ROOT; }; - 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexInno.cxx; path = ../../src/stc/lexilla/lexers/LexInno.cxx; sourceTree = SOURCE_ROOT; }; - A4A745D1821A32D591D76650 /* imagiff.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagiff.cpp; path = ../../src/common/imagiff.cpp; sourceTree = SOURCE_ROOT; }; - 78D7866F95C73A28BB540606 /* LexBash.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBash.cxx; path = ../../src/stc/lexilla/lexers/LexBash.cxx; sourceTree = SOURCE_ROOT; }; - DA5E95D498C53A808A8E2EEB /* Editor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Editor.cxx; path = ../../src/stc/scintilla/src/Editor.cxx; sourceTree = SOURCE_ROOT; }; - 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treectlg.cpp; path = ../../src/generic/treectlg.cpp; sourceTree = SOURCE_ROOT; }; - 964578C24B9F390AAD08576E /* addremovectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = addremovectrl.cpp; path = ../../src/common/addremovectrl.cpp; sourceTree = SOURCE_ROOT; }; - FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontpickerg.cpp; path = ../../src/generic/fontpickerg.cpp; sourceTree = SOURCE_ROOT; }; - AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_filter.cpp; path = ../../src/common/fs_filter.cpp; sourceTree = SOURCE_ROOT; }; - 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerShell.cxx; path = ../../src/stc/lexilla/lexers/LexPowerShell.cxx; sourceTree = SOURCE_ROOT; }; - F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFlagship.cxx; path = ../../src/stc/lexilla/lexers/LexFlagship.cxx; sourceTree = SOURCE_ROOT; }; - F7E99B35A98D30818120B002 /* string.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = string.cpp; path = ../../src/common/string.cpp; sourceTree = SOURCE_ROOT; }; - BEB08798C70E33DDB360E563 /* layout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layout.cpp; path = ../../src/common/layout.cpp; sourceTree = SOURCE_ROOT; }; - 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tipwin.cpp; path = ../../src/generic/tipwin.cpp; sourceTree = SOURCE_ROOT; }; - 25C86D3D4839343BA1D8BDEE /* xti.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xti.cpp; path = ../../src/common/xti.cpp; sourceTree = SOURCE_ROOT; }; - 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridctrl.cpp; path = ../../src/generic/gridctrl.cpp; sourceTree = SOURCE_ROOT; }; - 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagpcx.cpp; path = ../../src/common/imagpcx.cpp; sourceTree = SOURCE_ROOT; }; - 548906E4E72935E48CE4AF87 /* m_image.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_image.cpp; path = ../../src/html/m_image.cpp; sourceTree = SOURCE_ROOT; }; - 05310A868F0B35999C568681 /* xh_editlbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_editlbox.cpp; path = ../../src/xrc/xh_editlbox.cpp; sourceTree = SOURCE_ROOT; }; - 88F2BA2F0598342186A484B5 /* fs_arc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_arc.cpp; path = ../../src/common/fs_arc.cpp; sourceTree = SOURCE_ROOT; }; - 7925E38823563BCDB5565DCF /* treebkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treebkg.cpp; path = ../../src/generic/treebkg.cpp; sourceTree = SOURCE_ROOT; }; - 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UniConversion.cxx; path = ../../src/stc/scintilla/src/UniConversion.cxx; sourceTree = SOURCE_ROOT; }; - FA7029BB5751398AA02D8C24 /* imagtga.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagtga.cpp; path = ../../src/common/imagtga.cpp; sourceTree = SOURCE_ROOT; }; - F6EA240B3DB93D398A990FAD /* tif_dirread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirread.c; path = ../../src/tiff/libtiff/tif_dirread.c; sourceTree = SOURCE_ROOT; }; - AA6C6739C3BD3EFA9CF71102 /* jcinit.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcinit.c; path = ../../src/jpeg/jcinit.c; sourceTree = SOURCE_ROOT; }; - 63867276260C3F4A980E83D8 /* rgncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rgncmn.cpp; path = ../../src/common/rgncmn.cpp; sourceTree = SOURCE_ROOT; }; - 725574EF98C4301989181CBF /* jctrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jctrans.c; path = ../../src/jpeg/jctrans.c; sourceTree = SOURCE_ROOT; }; - 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hyperlnkcmn.cpp; path = ../../src/common/hyperlnkcmn.cpp; sourceTree = SOURCE_ROOT; }; - 8C78A1539462370CAA429508 /* accel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accel.cpp; path = ../../src/osx/accel.cpp; sourceTree = SOURCE_ROOT; }; - 727F25F832AD32D4B12D8E39 /* m_span.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_span.cpp; path = ../../src/html/m_span.cpp; sourceTree = SOURCE_ROOT; }; - 5E53DC332DA23DF4B9BFCDE3 /* dataview_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dataview_osx.cpp; path = ../../src/osx/dataview_osx.cpp; sourceTree = SOURCE_ROOT; }; - D5F9383D1CE931499F339D85 /* strconv_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strconv_cf.cpp; path = ../../src/osx/core/strconv_cf.cpp; sourceTree = SOURCE_ROOT; }; - AC8BB1AABB3D393EBA527060 /* intl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = intl.cpp; path = ../../src/common/intl.cpp; sourceTree = SOURCE_ROOT; }; - A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_string_utils.c; path = ../../3rdparty/pcre/src/pcre2_string_utils.c; sourceTree = SOURCE_ROOT; }; - C28429A964C337A192D76CC8 /* Style.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Style.cxx; path = ../../src/stc/scintilla/src/Style.cxx; sourceTree = SOURCE_ROOT; }; - 95B4EDF38F8A3E5EBAFF560F /* trees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = trees.c; path = ../../src/zlib/trees.c; sourceTree = SOURCE_ROOT; }; - 1A0650754DC2358CA5933B28 /* pngerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngerror.c; path = ../../src/png/pngerror.c; sourceTree = SOURCE_ROOT; }; - FD5F11A3646F397BA62EB037 /* htmllbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmllbox.cpp; path = ../../src/generic/htmllbox.cpp; sourceTree = SOURCE_ROOT; }; - 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdiobj.cpp; path = ../../src/osx/carbon/gdiobj.cpp; sourceTree = SOURCE_ROOT; }; - 0080254545B9383ABDF2045C /* xh_odcombo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_odcombo.cpp; path = ../../src/xrc/xh_odcombo.cpp; sourceTree = SOURCE_ROOT; }; - EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_split.cpp; path = ../../src/xrc/xh_split.cpp; sourceTree = SOURCE_ROOT; }; - 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcgraph.cpp; path = ../../src/common/dcgraph.cpp; sourceTree = SOURCE_ROOT; }; - 6BC0A61629E635FAB4E09505 /* geometry.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = geometry.cpp; path = ../../src/common/geometry.cpp; sourceTree = SOURCE_ROOT; }; - C3019BA65DD73F30A865365F /* frame.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frame.cpp; path = ../../src/osx/carbon/frame.cpp; sourceTree = SOURCE_ROOT; }; - 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_thunder.c; path = ../../src/tiff/libtiff/tif_thunder.c; sourceTree = SOURCE_ROOT; }; - 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemmgr.c; path = ../../src/jpeg/jmemmgr.c; sourceTree = SOURCE_ROOT; }; - E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLaTeX.cxx; path = ../../src/stc/lexilla/lexers/LexLaTeX.cxx; sourceTree = SOURCE_ROOT; }; - DC0FFDC7A6163F2DA73B84EB /* jchuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jchuff.c; path = ../../src/jpeg/jchuff.c; sourceTree = SOURCE_ROOT; }; - 49CABA38E78D34DFA260AA06 /* renderg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = renderg.cpp; path = ../../src/generic/renderg.cpp; sourceTree = SOURCE_ROOT; }; - 400275BE019D3E5BA47988BE /* inffast.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inffast.c; path = ../../src/zlib/inffast.c; sourceTree = SOURCE_ROOT; }; - 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAPDL.cxx; path = ../../src/stc/lexilla/lexers/LexAPDL.cxx; sourceTree = SOURCE_ROOT; }; - D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_menu.cpp; path = ../../src/xrc/xh_menu.cpp; sourceTree = SOURCE_ROOT; }; - 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobut_osx.cpp; path = ../../src/osx/radiobut_osx.cpp; sourceTree = SOURCE_ROOT; }; - D73954EB5397301F87881646 /* statboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statboxcmn.cpp; path = ../../src/common/statboxcmn.cpp; sourceTree = SOURCE_ROOT; }; - 4969528429903F15882F5391 /* sockosx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sockosx.cpp; path = ../../src/osx/core/sockosx.cpp; sourceTree = SOURCE_ROOT; }; - BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNimrod.cxx; path = ../../src/stc/lexilla/lexers/LexNimrod.cxx; sourceTree = SOURCE_ROOT; }; - C133B838193A35ABBB803151 /* ViewStyle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewStyle.cxx; path = ../../src/stc/scintilla/src/ViewStyle.cxx; sourceTree = SOURCE_ROOT; }; - 02D9332D5C5632E981936E29 /* jquant2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jquant2.c; path = ../../src/jpeg/jquant2.c; sourceTree = SOURCE_ROOT; }; - 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_chartables.c; path = ../../3rdparty/pcre/src/pcre2_chartables.c; sourceTree = SOURCE_ROOT; }; - 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bookctrlbase.cpp; path = ../../src/xrc/xh_bookctrlbase.cpp; sourceTree = SOURCE_ROOT; }; - 00969CBE3B8F32C78C195619 /* panel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = panel.cpp; path = ../../src/ribbon/panel.cpp; sourceTree = SOURCE_ROOT; }; - 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ownerdrwcmn.cpp; path = ../../src/common/ownerdrwcmn.cpp; sourceTree = SOURCE_ROOT; }; - DE8238DA30FF3FB984511250 /* sckaddr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckaddr.cpp; path = ../../src/common/sckaddr.cpp; sourceTree = SOURCE_ROOT; }; - 6F23140777B733679D2FAAFC /* odcombocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = odcombocmn.cpp; path = ../../src/common/odcombocmn.cpp; sourceTree = SOURCE_ROOT; }; - AF3DF03795153E039B8F1F87 /* LineMarker.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LineMarker.cxx; path = ../../src/stc/scintilla/src/LineMarker.cxx; sourceTree = SOURCE_ROOT; }; - 580AFC66F3003582B43043B1 /* animateg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animateg.cpp; path = ../../src/generic/animateg.cpp; sourceTree = SOURCE_ROOT; }; - 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctfst.c; path = ../../src/jpeg/jfdctfst.c; sourceTree = SOURCE_ROOT; }; - 693F731B7D1730A79485F9EC /* minifram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = minifram.cpp; path = ../../src/osx/minifram.cpp; sourceTree = SOURCE_ROOT; }; - BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_dirpicker.cpp; path = ../../src/xrc/xh_dirpicker.cpp; sourceTree = SOURCE_ROOT; }; - 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerPro.cxx; path = ../../src/stc/lexilla/lexers/LexPowerPro.cxx; sourceTree = SOURCE_ROOT; }; - 6718204F4700318E89EAC906 /* LexBullant.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBullant.cxx; path = ../../src/stc/lexilla/lexers/LexBullant.cxx; sourceTree = SOURCE_ROOT; }; - 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_fontpicker.cpp; path = ../../src/xrc/xh_fontpicker.cpp; sourceTree = SOURCE_ROOT; }; - 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdproc.cpp; path = ../../src/common/cmdproc.cpp; sourceTree = SOURCE_ROOT; }; - 47FF6D792CA234C395692118 /* PlatWX.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PlatWX.cpp; path = ../../src/stc/PlatWX.cpp; sourceTree = SOURCE_ROOT; }; - EA93D41B11683E758D456531 /* log.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = ../../src/common/log.cpp; sourceTree = SOURCE_ROOT; }; - 36E1DBA275AD325DB759C180 /* fontenum.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontenum.cpp; path = ../../src/osx/core/fontenum.cpp; sourceTree = SOURCE_ROOT; }; - E4E16323A43E36DC8024EDF1 /* textctrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = textctrl.mm; path = ../../src/osx/cocoa/textctrl.mm; sourceTree = SOURCE_ROOT; }; - BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVE.cxx; path = ../../src/stc/lexilla/lexers/LexAVE.cxx; sourceTree = SOURCE_ROOT; }; - 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_ucd.c; path = ../../3rdparty/pcre/src/pcre2_ucd.c; sourceTree = SOURCE_ROOT; }; - 1BB59DD194923D6399087A75 /* graphcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphcmn.cpp; path = ../../src/common/graphcmn.cpp; sourceTree = SOURCE_ROOT; }; - 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlwin.cpp; path = ../../src/html/htmlwin.cpp; sourceTree = SOURCE_ROOT; }; - AE856D950B8C369EB0FE13BA /* datectlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datectlg.cpp; path = ../../src/generic/datectlg.cpp; sourceTree = SOURCE_ROOT; }; - C76222F466E831F896A89269 /* LexAU3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAU3.cxx; path = ../../src/stc/lexilla/lexers/LexAU3.cxx; sourceTree = SOURCE_ROOT; }; - 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtooltipg.cpp; path = ../../src/generic/richtooltipg.cpp; sourceTree = SOURCE_ROOT; }; - 9B862D1027C4367BBF44420F /* slider.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = slider.mm; path = ../../src/osx/cocoa/slider.mm; sourceTree = SOURCE_ROOT; }; - 3C4A7A93CAFC3E22A2A5F7F3 /* spinbutt.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = spinbutt.mm; path = ../../src/osx/cocoa/spinbutt.mm; sourceTree = SOURCE_ROOT; }; - 26D7C4995D7A35A1854B533F /* window_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window_osx.cpp; path = ../../src/osx/window_osx.cpp; sourceTree = SOURCE_ROOT; }; - 9CC7C6FFD67233788EEDFC5E /* LexYAML.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexYAML.cxx; path = ../../src/stc/lexilla/lexers/LexYAML.cxx; sourceTree = SOURCE_ROOT; }; - 31F4B9B03D52339B8F82C114 /* variant.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = variant.cpp; path = ../../src/common/variant.cpp; sourceTree = SOURCE_ROOT; }; - A298576700C33F018616E7BD /* auibook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = auibook.cpp; path = ../../src/aui/auibook.cpp; sourceTree = SOURCE_ROOT; }; - 724927B0045F3CC0884878BB /* radiobtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobtncmn.cpp; path = ../../src/common/radiobtncmn.cpp; sourceTree = SOURCE_ROOT; }; - 5814208070CF3D899F132BA1 /* activityindicator.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = activityindicator.mm; path = ../../src/osx/cocoa/activityindicator.mm; sourceTree = SOURCE_ROOT; }; - DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unichar.cpp; path = ../../src/common/unichar.cpp; sourceTree = SOURCE_ROOT; }; - FBE1C531185131A89EFF7FAF /* cmdline.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdline.cpp; path = ../../src/common/cmdline.cpp; sourceTree = SOURCE_ROOT; }; - 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileconf.cpp; path = ../../src/common/fileconf.cpp; sourceTree = SOURCE_ROOT; }; - 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = protocol.cpp; path = ../../src/common/protocol.cpp; sourceTree = SOURCE_ROOT; }; - 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_filectrl.cpp; path = ../../src/xrc/xh_filectrl.cpp; sourceTree = SOURCE_ROOT; }; - 52FE1599218730CC99A3F801 /* m_dflist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_dflist.cpp; path = ../../src/html/m_dflist.cpp; sourceTree = SOURCE_ROOT; }; - 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinctrlcmn.cpp; path = ../../src/common/spinctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - 032A38738B58394E8617617B /* tif_dirinfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirinfo.c; path = ../../src/tiff/libtiff/tif_dirinfo.c; sourceTree = SOURCE_ROOT; }; - 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combobox_osx.cpp; path = ../../src/osx/combobox_osx.cpp; sourceTree = SOURCE_ROOT; }; - B61D36546E97371FAC5D4565 /* LexStata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexStata.cxx; path = ../../src/stc/lexilla/lexers/LexStata.cxx; sourceTree = SOURCE_ROOT; }; - DB6963739198360DB3DBCC6C /* dataview.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = dataview.mm; path = ../../src/osx/cocoa/dataview.mm; sourceTree = SOURCE_ROOT; }; - C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdata.cpp; path = ../../src/common/fontdata.cpp; sourceTree = SOURCE_ROOT; }; - 147800BBCB80346798B35D75 /* xh_stbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_stbox.cpp; path = ../../src/xrc/xh_stbox.cpp; sourceTree = SOURCE_ROOT; }; - 7C97C1F26B5A38C49543060C /* mimetype.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mimetype.cpp; path = ../../src/osx/core/mimetype.cpp; sourceTree = SOURCE_ROOT; }; - D784A32C094730FEAA391A9B /* sckstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckstrm.cpp; path = ../../src/common/sckstrm.cpp; sourceTree = SOURCE_ROOT; }; - 5BE1FB352696346BB642C044 /* secretstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = secretstore.cpp; path = ../../src/common/secretstore.cpp; sourceTree = SOURCE_ROOT; }; - 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexProgress.cxx; path = ../../src/stc/lexilla/lexers/LexProgress.cxx; sourceTree = SOURCE_ROOT; }; - 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_pattern_info.c; path = ../../3rdparty/pcre/src/pcre2_pattern_info.c; sourceTree = SOURCE_ROOT; }; - EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fddlgcmn.cpp; path = ../../src/common/fddlgcmn.cpp; sourceTree = SOURCE_ROOT; }; - 84758329F2163F00A9C005DF /* collpaneg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collpaneg.cpp; path = ../../src/generic/collpaneg.cpp; sourceTree = SOURCE_ROOT; }; - 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stopwatch.cpp; path = ../../src/common/stopwatch.cpp; sourceTree = SOURCE_ROOT; }; - 54BD19211DBD388AA0DEC7A1 /* stattextcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattextcmn.cpp; path = ../../src/common/stattextcmn.cpp; sourceTree = SOURCE_ROOT; }; - 81821049E39B32C6ABCF6820 /* helpdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdlg.cpp; path = ../../src/html/helpdlg.cpp; sourceTree = SOURCE_ROOT; }; - E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_frame.cpp; path = ../../src/xrc/xh_frame.cpp; sourceTree = SOURCE_ROOT; }; - 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textctrl_osx.cpp; path = ../../src/osx/textctrl_osx.cpp; sourceTree = SOURCE_ROOT; }; - 4867546E8B8D3C8683A23ED5 /* any.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = any.cpp; path = ../../src/common/any.cpp; sourceTree = SOURCE_ROOT; }; - 7CC8B73BB8C0391E9EC1B2D1 /* colour.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = colour.mm; path = ../../src/osx/cocoa/colour.mm; sourceTree = SOURCE_ROOT; }; - B99CA41708513A599AE275A2 /* listbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listbox_osx.cpp; path = ../../src/osx/listbox_osx.cpp; sourceTree = SOURCE_ROOT; }; - 9E1B538562B93D148F54645B /* LexSAS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSAS.cxx; path = ../../src/stc/lexilla/lexers/LexSAS.cxx; sourceTree = SOURCE_ROOT; }; - 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filtall.cpp; path = ../../src/common/filtall.cpp; sourceTree = SOURCE_ROOT; }; - D9016355F66D3125919E017D /* listctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listctrl.cpp; path = ../../src/generic/listctrl.cpp; sourceTree = SOURCE_ROOT; }; - 6AC666417602346EA583709E /* translation.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = translation.cpp; path = ../../src/common/translation.cpp; sourceTree = SOURCE_ROOT; }; - 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_xclass.c; path = ../../3rdparty/pcre/src/pcre2_xclass.c; sourceTree = SOURCE_ROOT; }; - 726C0457DF1232C793918DC1 /* tif_zip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_zip.c; path = ../../src/tiff/libtiff/tif_zip.c; sourceTree = SOURCE_ROOT; }; - 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmpbt.cpp; path = ../../src/xrc/xh_bmpbt.cpp; sourceTree = SOURCE_ROOT; }; - F175D6E8E5723FC797701275 /* menucmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menucmn.cpp; path = ../../src/common/menucmn.cpp; sourceTree = SOURCE_ROOT; }; - CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menuitem_osx.cpp; path = ../../src/osx/menuitem_osx.cpp; sourceTree = SOURCE_ROOT; }; - DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utilsunx.cpp; path = ../../src/unix/utilsunx.cpp; sourceTree = SOURCE_ROOT; }; - EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dircmn.cpp; path = ../../src/common/dircmn.cpp; sourceTree = SOURCE_ROOT; }; 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dumpmode.c; path = ../../src/tiff/libtiff/tif_dumpmode.c; sourceTree = SOURCE_ROOT; }; - 5DE635F30F3935099AF1486C /* stattextg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattextg.cpp; path = ../../src/generic/stattextg.cpp; sourceTree = SOURCE_ROOT; }; - 373242CD08F330208A7CF438 /* fontenumcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontenumcmn.cpp; path = ../../src/common/fontenumcmn.cpp; sourceTree = SOURCE_ROOT; }; - A881F49ADCF33C299B041584 /* floatpane.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = floatpane.cpp; path = ../../src/aui/floatpane.cpp; sourceTree = SOURCE_ROOT; }; - FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cpp; path = ../../src/common/stream.cpp; sourceTree = SOURCE_ROOT; }; - CF502E0E4D853CBBBEC885EF /* LexerSimple.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerSimple.cxx; path = ../../src/stc/lexilla/lexlib/LexerSimple.cxx; sourceTree = SOURCE_ROOT; }; - 58E1F571B01F34D4AB70CA18 /* property.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = property.cpp; path = ../../src/propgrid/property.cpp; sourceTree = SOURCE_ROOT; }; - 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSmalltalk.cxx; path = ../../src/stc/lexilla/lexers/LexSmalltalk.cxx; sourceTree = SOURCE_ROOT; }; - D2DE67C976CF3004A8FE883A /* Accessor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Accessor.cxx; path = ../../src/stc/lexilla/lexlib/Accessor.cxx; sourceTree = SOURCE_ROOT; }; - 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrlwing.cpp; path = ../../src/generic/scrlwing.cpp; sourceTree = SOURCE_ROOT; }; - 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_richtext.cpp; path = ../../src/xrc/xh_richtext.cpp; sourceTree = SOURCE_ROOT; }; - 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatchercmn.cpp; path = ../../src/common/fswatchercmn.cpp; sourceTree = SOURCE_ROOT; }; - 194ADD28300E329E80F7892E /* htmprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmprint.cpp; path = ../../src/html/htmprint.cpp; sourceTree = SOURCE_ROOT; }; - A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontpickercmn.cpp; path = ../../src/common/fontpickercmn.cpp; sourceTree = SOURCE_ROOT; }; - 51054B41BFD83E97BAF76D07 /* tabart.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabart.cpp; path = ../../src/aui/tabart.cpp; sourceTree = SOURCE_ROOT; }; - EDB48813110636DBA045BF3A /* LexPS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPS.cxx; path = ../../src/stc/lexilla/lexers/LexPS.cxx; sourceTree = SOURCE_ROOT; }; - BBB30516233A39BE809405AA /* helpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpbase.cpp; path = ../../src/common/helpbase.cpp; sourceTree = SOURCE_ROOT; }; - 773D91F8280434519BD167EA /* radiobox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobox_osx.cpp; path = ../../src/osx/radiobox_osx.cpp; sourceTree = SOURCE_ROOT; }; - 418AD9241B673308BE31DC06 /* xlocale.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xlocale.cpp; path = ../../src/common/xlocale.cpp; sourceTree = SOURCE_ROOT; }; - 45D7558DF5E03A2EB41883F0 /* pngwutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwutil.c; path = ../../src/png/pngwutil.c; sourceTree = SOURCE_ROOT; }; - 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listbk.cpp; path = ../../src/xrc/xh_listbk.cpp; sourceTree = SOURCE_ROOT; }; - 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listbkg.cpp; path = ../../src/generic/listbkg.cpp; sourceTree = SOURCE_ROOT; }; - FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_config.c; path = ../../3rdparty/pcre/src/pcre2_config.c; sourceTree = SOURCE_ROOT; }; - A46D50BEBF523B3F88831086 /* LexAsn1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsn1.cxx; path = ../../src/stc/lexilla/lexers/LexAsn1.cxx; sourceTree = SOURCE_ROOT; }; - 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fldlgcmn.cpp; path = ../../src/common/fldlgcmn.cpp; sourceTree = SOURCE_ROOT; }; - 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_ord2utf.c; path = ../../3rdparty/pcre/src/pcre2_ord2utf.c; sourceTree = SOURCE_ROOT; }; - E1B1FBB2BCC43BA7A45E9438 /* listctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listctrlcmn.cpp; path = ../../src/common/listctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - DE0102314288305D830B9EFE /* LexProps.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexProps.cxx; path = ../../src/stc/lexilla/lexers/LexProps.cxx; sourceTree = SOURCE_ROOT; }; - 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_gauge.cpp; path = ../../src/xrc/xh_gauge.cpp; sourceTree = SOURCE_ROOT; }; - 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sizer.cpp; path = ../../src/common/sizer.cpp; sourceTree = SOURCE_ROOT; }; - DC8A52CA69053B27B09F1037 /* filedlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = filedlg.mm; path = ../../src/osx/cocoa/filedlg.mm; sourceTree = SOURCE_ROOT; }; - F43AF44465B335479752116D /* xh_radbx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_radbx.cpp; path = ../../src/xrc/xh_radbx.cpp; sourceTree = SOURCE_ROOT; }; - E9B9B85572D0312BBF2878DB /* windowid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = windowid.cpp; path = ../../src/common/windowid.cpp; sourceTree = SOURCE_ROOT; }; - F1E724EA70AB35DDB130F84F /* stringops.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stringops.cpp; path = ../../src/common/stringops.cpp; sourceTree = SOURCE_ROOT; }; - 5B9586328A1F3C4BA0390AA5 /* time.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = time.cpp; path = ../../src/common/time.cpp; sourceTree = SOURCE_ROOT; }; - AB466912FDA23F8B87A00A3C /* threadpsx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = threadpsx.cpp; path = ../../src/unix/threadpsx.cpp; sourceTree = SOURCE_ROOT; }; - 60DFD5962DE3379F801AF78F /* power.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = power.mm; path = ../../src/osx/cocoa/power.mm; sourceTree = SOURCE_ROOT; }; - 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calctrlcmn.cpp; path = ../../src/common/calctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - C94DC3402FAE3C4FA776DEEA /* window.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = window.mm; path = ../../src/osx/cocoa/window.mm; sourceTree = SOURCE_ROOT; }; - AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = nonownedwnd.mm; path = ../../src/osx/cocoa/nonownedwnd.mm; sourceTree = SOURCE_ROOT; }; - C466F32CCBD13DBC87285B3D /* helpdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdata.cpp; path = ../../src/html/helpdata.cpp; sourceTree = SOURCE_ROOT; }; - 4FC2F076657431458896115A /* checkboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checkboxcmn.cpp; path = ../../src/common/checkboxcmn.cpp; sourceTree = SOURCE_ROOT; }; + 5FEECFD764E037288CE94FEB /* webview_webkit.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webview_webkit.mm; path = ../../src/osx/webview_webkit.mm; sourceTree = SOURCE_ROOT; }; + DC0FFDC7A6163F2DA73B84EB /* jchuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jchuff.c; path = ../../src/jpeg/jchuff.c; sourceTree = SOURCE_ROOT; }; + 71DB140E670738839EC42C2B /* Document.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Document.cxx; path = ../../src/stc/scintilla/src/Document.cxx; sourceTree = SOURCE_ROOT; }; BACAA6CE4A0934459F26B27C /* graphicc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicc.cpp; path = ../../src/generic/graphicc.cpp; sourceTree = SOURCE_ROOT; }; - 7A24E9101688368296C21EBE /* gzclose.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzclose.c; path = ../../src/zlib/gzclose.c; sourceTree = SOURCE_ROOT; }; - AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uiaction_osx.cpp; path = ../../src/osx/uiaction_osx.cpp; sourceTree = SOURCE_ROOT; }; - FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridcmn.cpp; path = ../../src/common/gridcmn.cpp; sourceTree = SOURCE_ROOT; }; - DECAF5DD80383A2CA76EB383 /* jdatasrc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdatasrc.c; path = ../../src/jpeg/jdatasrc.c; sourceTree = SOURCE_ROOT; }; - 9FDDE855D9F83E4891362EB4 /* bar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bar.cpp; path = ../../src/ribbon/bar.cpp; sourceTree = SOURCE_ROOT; }; - 0E45F6DF601A34BCB3CC0206 /* adler32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = adler32.c; path = ../../src/zlib/adler32.c; sourceTree = SOURCE_ROOT; }; - 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzwrite.c; path = ../../src/zlib/gzwrite.c; sourceTree = SOURCE_ROOT; }; - D0CDADAF2D893E32A38351E4 /* tif_aux.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_aux.c; path = ../../src/tiff/libtiff/tif_aux.c; sourceTree = SOURCE_ROOT; }; - 0903EE9B3793303285FF96E3 /* textfile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfile.cpp; path = ../../src/common/textfile.cpp; sourceTree = SOURCE_ROOT; }; - ABE3DC4AA47D39ACA83F27C0 /* settcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settcmn.cpp; path = ../../src/common/settcmn.cpp; sourceTree = SOURCE_ROOT; }; - 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prntdlgg.cpp; path = ../../src/generic/prntdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gallery.cpp; path = ../../src/ribbon/gallery.cpp; sourceTree = SOURCE_ROOT; }; - 59ED0C057D8F388A89DC7177 /* page.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = page.cpp; path = ../../src/ribbon/page.cpp; sourceTree = SOURCE_ROOT; }; - 4B3B8AD0120F3EA6BF5B0AE0 /* LexCaml.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCaml.cxx; path = ../../src/stc/lexilla/lexers/LexCaml.cxx; sourceTree = SOURCE_ROOT; }; + 693F731B7D1730A79485F9EC /* minifram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = minifram.cpp; path = ../../src/osx/minifram.cpp; sourceTree = SOURCE_ROOT; }; + 5B32A13D5B3336098B1B9765 /* pngtrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngtrans.c; path = ../../src/png/pngtrans.c; sourceTree = SOURCE_ROOT; }; + 69F098E47EBF34368ABAE7ED /* timer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cpp; path = ../../src/osx/core/timer.cpp; sourceTree = SOURCE_ROOT; }; + 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrlcmn.cpp; path = ../../src/common/ctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + E110907DDC13305E88B90086 /* dirctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirctrlcmn.cpp; path = ../../src/common/dirctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; D7B3307E56B332769901E99F /* filehistorycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filehistorycmn.cpp; path = ../../src/common/filehistorycmn.cpp; sourceTree = SOURCE_ROOT; }; - C9E32802E8ED3E729FF34CFC /* printdlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = printdlg.mm; path = ../../src/osx/cocoa/printdlg.mm; sourceTree = SOURCE_ROOT; }; - 2334539088B036BEAB230D1C /* filectrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filectrlg.cpp; path = ../../src/generic/filectrlg.cpp; sourceTree = SOURCE_ROOT; }; - 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckipc.cpp; path = ../../src/common/sckipc.cpp; sourceTree = SOURCE_ROOT; }; - 0E8036758CEC3296B555E4DF /* notebook.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = notebook.mm; path = ../../src/osx/cocoa/notebook.mm; sourceTree = SOURCE_ROOT; }; - CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_tglbtn.cpp; path = ../../src/xrc/xh_tglbtn.cpp; sourceTree = SOURCE_ROOT; }; - 1D799486AD7F336BB1F33DDC /* menu.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = menu.mm; path = ../../src/osx/cocoa/menu.mm; sourceTree = SOURCE_ROOT; }; - 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSML.cxx; path = ../../src/stc/lexilla/lexers/LexSML.cxx; sourceTree = SOURCE_ROOT; }; - 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = bmpbndl.mm; path = ../../src/osx/core/bmpbndl.mm; sourceTree = SOURCE_ROOT; }; - 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapimin.c; path = ../../src/jpeg/jcapimin.c; sourceTree = SOURCE_ROOT; }; - AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_clrpicker.cpp; path = ../../src/xrc/xh_clrpicker.cpp; sourceTree = SOURCE_ROOT; }; - 04082EC1C91334379425802D /* LexConf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexConf.cxx; path = ../../src/stc/lexilla/lexers/LexConf.cxx; sourceTree = SOURCE_ROOT; }; - 56653FACC7D13804A70556AD /* sckfile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckfile.cpp; path = ../../src/common/sckfile.cpp; sourceTree = SOURCE_ROOT; }; - CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imaggif.cpp; path = ../../src/common/imaggif.cpp; sourceTree = SOURCE_ROOT; }; - 53D06E47477B3E32BB6B915E /* jcsample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcsample.c; path = ../../src/jpeg/jcsample.c; sourceTree = SOURCE_ROOT; }; - A65399C8A6D636139E362119 /* LexAsm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsm.cxx; path = ../../src/stc/lexilla/lexers/LexAsm.cxx; sourceTree = SOURCE_ROOT; }; - 2ED0C0702D2734D9B08FC31D /* utils_base.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utils_base.mm; path = ../../src/osx/cocoa/utils_base.mm; sourceTree = SOURCE_ROOT; }; - B4028ABB08C63AB59F5F240B /* m_list.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_list.cpp; path = ../../src/html/m_list.cpp; sourceTree = SOURCE_ROOT; }; - 093B5233861B3F9B8C85762B /* xh_cald.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_cald.cpp; path = ../../src/xrc/xh_cald.cpp; sourceTree = SOURCE_ROOT; }; - D016F584D14C31E192DB3179 /* pcre2_maketables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_maketables.c; path = ../../3rdparty/pcre/src/pcre2_maketables.c; sourceTree = SOURCE_ROOT; }; + 3B98123FD57731139044B064 /* tif_zstd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_zstd.c; path = ../../src/tiff/libtiff/tif_zstd.c; sourceTree = SOURCE_ROOT; }; + E145FC31ED523B4AA5080A61 /* RESearch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RESearch.cxx; path = ../../src/stc/scintilla/src/RESearch.cxx; sourceTree = SOURCE_ROOT; }; + F46EC1508C063C8395CE7A95 /* sstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sstream.cpp; path = ../../src/common/sstream.cpp; sourceTree = SOURCE_ROOT; }; + 55EBB18CB4773C788510B14B /* LexEiffel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEiffel.cxx; path = ../../src/stc/lexilla/lexers/LexEiffel.cxx; sourceTree = SOURCE_ROOT; }; + EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_split.cpp; path = ../../src/xrc/xh_split.cpp; sourceTree = SOURCE_ROOT; }; + DE8238DA30FF3FB984511250 /* sckaddr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckaddr.cpp; path = ../../src/common/sckaddr.cpp; sourceTree = SOURCE_ROOT; }; + 108517BCD39230E7A89BC943 /* jerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jerror.c; path = ../../src/jpeg/jerror.c; sourceTree = SOURCE_ROOT; }; + 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHollywood.cxx; path = ../../src/stc/lexilla/lexers/LexHollywood.cxx; sourceTree = SOURCE_ROOT; }; + 26632A254717372BAA4D514D /* framemanager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = framemanager.cpp; path = ../../src/aui/framemanager.cpp; sourceTree = SOURCE_ROOT; }; + C9A305CEC03B3085B159B617 /* fs_mem.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_mem.cpp; path = ../../src/common/fs_mem.cpp; sourceTree = SOURCE_ROOT; }; + FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTeX.cxx; path = ../../src/stc/lexilla/lexers/LexTeX.cxx; sourceTree = SOURCE_ROOT; }; + 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_gauge.cpp; path = ../../src/xrc/xh_gauge.cpp; sourceTree = SOURCE_ROOT; }; + 5F3D473DC5123EDAB767045C /* datavgen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datavgen.cpp; path = ../../src/generic/datavgen.cpp; sourceTree = SOURCE_ROOT; }; + 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrlwing.cpp; path = ../../src/generic/scrlwing.cpp; sourceTree = SOURCE_ROOT; }; + E9B992CB6C28339FB0CA5E27 /* tif_write.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_write.c; path = ../../src/tiff/libtiff/tif_write.c; sourceTree = SOURCE_ROOT; }; + 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_pattern_info.c; path = ../../3rdparty/pcre/src/pcre2_pattern_info.c; sourceTree = SOURCE_ROOT; }; + 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bookctrl.cpp; path = ../../src/common/bookctrl.cpp; sourceTree = SOURCE_ROOT; }; + F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbmp_osx.cpp; path = ../../src/osx/statbmp_osx.cpp; sourceTree = SOURCE_ROOT; }; + 59ED0C057D8F388A89DC7177 /* page.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = page.cpp; path = ../../src/ribbon/page.cpp; sourceTree = SOURCE_ROOT; }; + 8D529E2668C23D94A7706C8A /* textdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdlgg.cpp; path = ../../src/generic/textdlgg.cpp; sourceTree = SOURCE_ROOT; }; + 41AE72D4E8FF307F86A02F5F /* LexIndent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexIndent.cxx; path = ../../src/stc/lexilla/lexers/LexIndent.cxx; sourceTree = SOURCE_ROOT; }; + 8D2549709E0133C9A267E3A5 /* evtloop.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = evtloop.mm; path = ../../src/osx/cocoa/evtloop.mm; sourceTree = SOURCE_ROOT; }; + 25A81E9028793C109D868068 /* xh_timectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_timectrl.cpp; path = ../../src/xrc/xh_timectrl.cpp; sourceTree = SOURCE_ROOT; }; + B540E18F9C91381CA175BABB /* art_msw.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_msw.cpp; path = ../../src/ribbon/art_msw.cpp; sourceTree = SOURCE_ROOT; }; + 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextbuffer.cpp; path = ../../src/richtext/richtextbuffer.cpp; sourceTree = SOURCE_ROOT; }; + C513377E9E303F778BA9D7ED /* arcfind.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arcfind.cpp; path = ../../src/common/arcfind.cpp; sourceTree = SOURCE_ROOT; }; + 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fldlgcmn.cpp; path = ../../src/common/fldlgcmn.cpp; sourceTree = SOURCE_ROOT; }; + 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_filepicker.cpp; path = ../../src/xrc/xh_filepicker.cpp; sourceTree = SOURCE_ROOT; }; + F6EA240B3DB93D398A990FAD /* tif_dirread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirread.c; path = ../../src/tiff/libtiff/tif_dirread.c; sourceTree = SOURCE_ROOT; }; + E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMarkdown.cxx; path = ../../src/stc/lexilla/lexers/LexMarkdown.cxx; sourceTree = SOURCE_ROOT; }; + A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrolbarcmn.cpp; path = ../../src/common/scrolbarcmn.cpp; sourceTree = SOURCE_ROOT; }; + E685D81FB9FF3081B6C5C321 /* EditModel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EditModel.cxx; path = ../../src/stc/scintilla/src/EditModel.cxx; sourceTree = SOURCE_ROOT; }; + 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cfstring.cpp; path = ../../src/osx/core/cfstring.cpp; sourceTree = SOURCE_ROOT; }; + 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDiff.cxx; path = ../../src/stc/lexilla/lexers/LexDiff.cxx; sourceTree = SOURCE_ROOT; }; + 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcscreen.cpp; path = ../../src/osx/carbon/dcscreen.cpp; sourceTree = SOURCE_ROOT; }; + 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctint.c; path = ../../src/jpeg/jidctint.c; sourceTree = SOURCE_ROOT; }; + 0EEAD9C3E180305D8899441E /* strvararg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strvararg.cpp; path = ../../src/common/strvararg.cpp; sourceTree = SOURCE_ROOT; }; + 3026D20A03E53F1DB40FB35A /* pcre2_context.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_context.c; path = ../../3rdparty/pcre/src/pcre2_context.c; sourceTree = SOURCE_ROOT; }; + 5ED2105A5A033E3384EBC4ED /* selstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selstore.cpp; path = ../../src/generic/selstore.cpp; sourceTree = SOURCE_ROOT; }; + A046179831F63824A67B509B /* preferencescmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preferencescmn.cpp; path = ../../src/common/preferencescmn.cpp; sourceTree = SOURCE_ROOT; }; + B1AA9AF75D233FFC9FC90E7C /* LexNim.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNim.cxx; path = ../../src/stc/lexilla/lexers/LexNim.cxx; sourceTree = SOURCE_ROOT; }; + AA90128E29A03CCCA30F4D35 /* vlbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vlbox.cpp; path = ../../src/generic/vlbox.cpp; sourceTree = SOURCE_ROOT; }; + 93B77251C0E0382D9A8E113D /* xh_grid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_grid.cpp; path = ../../src/xrc/xh_grid.cpp; sourceTree = SOURCE_ROOT; }; + AE856D950B8C369EB0FE13BA /* datectlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datectlg.cpp; path = ../../src/generic/datectlg.cpp; sourceTree = SOURCE_ROOT; }; + 54BD19211DBD388AA0DEC7A1 /* stattextcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattextcmn.cpp; path = ../../src/common/stattextcmn.cpp; sourceTree = SOURCE_ROOT; }; + F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_panel.cpp; path = ../../src/xrc/xh_panel.cpp; sourceTree = SOURCE_ROOT; }; + 4FDE5A962FA234FA83A605AD /* Indicator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Indicator.cxx; path = ../../src/stc/scintilla/src/Indicator.cxx; sourceTree = SOURCE_ROOT; }; + 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexProgress.cxx; path = ../../src/stc/lexilla/lexers/LexProgress.cxx; sourceTree = SOURCE_ROOT; }; + E79B2D1F630036129B9677A7 /* tif_dir.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dir.c; path = ../../src/tiff/libtiff/tif_dir.c; sourceTree = SOURCE_ROOT; }; + D9016355F66D3125919E017D /* listctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listctrl.cpp; path = ../../src/generic/listctrl.cpp; sourceTree = SOURCE_ROOT; }; + 2ACC8667173D3AB09F6214F4 /* sound.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cpp; path = ../../src/osx/core/sound.cpp; sourceTree = SOURCE_ROOT; }; + 5248A45AB113341EAC361910 /* notebook_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notebook_osx.cpp; path = ../../src/osx/notebook_osx.cpp; sourceTree = SOURCE_ROOT; }; + DA7F7633279936EFA0B9C5CF /* markupparser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = markupparser.cpp; path = ../../src/common/markupparser.cpp; sourceTree = SOURCE_ROOT; }; + 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listbkg.cpp; path = ../../src/generic/listbkg.cpp; sourceTree = SOURCE_ROOT; }; + C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCL.cxx; path = ../../src/stc/lexilla/lexers/LexTCL.cxx; sourceTree = SOURCE_ROOT; }; + 77F5E7BCD9B2307D8DBCC052 /* font.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = font.cpp; path = ../../src/osx/carbon/font.cpp; sourceTree = SOURCE_ROOT; }; + 17A8A93EF3C03546BE19F43B /* LexX12.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexX12.cxx; path = ../../src/stc/lexilla/lexers/LexX12.cxx; sourceTree = SOURCE_ROOT; }; + AB8A747FB60239B9AB710264 /* clrpickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrpickercmn.cpp; path = ../../src/common/clrpickercmn.cpp; sourceTree = SOURCE_ROOT; }; + 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_unkwn.cpp; path = ../../src/xrc/xh_unkwn.cpp; sourceTree = SOURCE_ROOT; }; + C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngmem.c; path = ../../src/png/pngmem.c; sourceTree = SOURCE_ROOT; }; 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtooltipcmn.cpp; path = ../../src/common/richtooltipcmn.cpp; sourceTree = SOURCE_ROOT; }; - 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_mdi.cpp; path = ../../src/xrc/xh_mdi.cpp; sourceTree = SOURCE_ROOT; }; - C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = encconv.cpp; path = ../../src/common/encconv.cpp; sourceTree = SOURCE_ROOT; }; - 83B878A16ABC396E8C03A15E /* dialog.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = dialog.mm; path = ../../src/osx/cocoa/dialog.mm; sourceTree = SOURCE_ROOT; }; - 5C85865D28DC31649440A921 /* imagxpm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagxpm.cpp; path = ../../src/common/imagxpm.cpp; sourceTree = SOURCE_ROOT; }; - E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = creddlgg.cpp; path = ../../src/generic/creddlgg.cpp; sourceTree = SOURCE_ROOT; }; - 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextimagedlg.cpp; path = ../../src/richtext/richtextimagedlg.cpp; sourceTree = SOURCE_ROOT; }; - 72869747E68E37998CB0A07E /* jdhuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdhuff.c; path = ../../src/jpeg/jdhuff.c; sourceTree = SOURCE_ROOT; }; - A92B6033D8233DB1821F193B /* xmlparse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = xmlparse.c; path = ../../src/expat/expat/lib/xmlparse.c; sourceTree = SOURCE_ROOT; }; - 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCharacterSet.cxx; path = ../../src/stc/lexilla/lexlib/LexCharacterSet.cxx; sourceTree = SOURCE_ROOT; }; - 0DA80913C0E33144A42BD30F /* webview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webview.cpp; path = ../../src/common/webview.cpp; sourceTree = SOURCE_ROOT; }; - 3D5F00FC91343C35AF99F708 /* LexMake.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMake.cxx; path = ../../src/stc/lexilla/lexers/LexMake.cxx; sourceTree = SOURCE_ROOT; }; - 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lboxcmn.cpp; path = ../../src/common/lboxcmn.cpp; sourceTree = SOURCE_ROOT; }; - B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_sttxt.cpp; path = ../../src/xrc/xh_sttxt.cpp; sourceTree = SOURCE_ROOT; }; + 5145561C78303EEE9F827962 /* LexLua.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLua.cxx; path = ../../src/stc/lexilla/lexers/LexLua.cxx; sourceTree = SOURCE_ROOT; }; + DCBD877191233EE9984112D2 /* InList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = InList.cxx; path = ../../src/stc/lexilla/lexlib/InList.cxx; sourceTree = SOURCE_ROOT; }; + 9DB43FAB1E563B02ACEFF647 /* module.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cpp; path = ../../src/common/module.cpp; sourceTree = SOURCE_ROOT; }; + 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrolbar_osx.cpp; path = ../../src/osx/scrolbar_osx.cpp; sourceTree = SOURCE_ROOT; }; + 664736BDE465350C9C4750E9 /* jcmarker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmarker.c; path = ../../src/jpeg/jcmarker.c; sourceTree = SOURCE_ROOT; }; + 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbndl.cpp; path = ../../src/common/bmpbndl.cpp; sourceTree = SOURCE_ROOT; }; + B63EBEE1A04537E7887E9FD0 /* ustring.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ustring.cpp; path = ../../src/common/ustring.cpp; sourceTree = SOURCE_ROOT; }; + 36E1DBA275AD325DB759C180 /* fontenum.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontenum.cpp; path = ../../src/osx/core/fontenum.cpp; sourceTree = SOURCE_ROOT; }; + E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbase.cpp; path = ../../src/common/bmpbase.cpp; sourceTree = SOURCE_ROOT; }; + F7440859617F3B47AF4D3817 /* valgen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valgen.cpp; path = ../../src/common/valgen.cpp; sourceTree = SOURCE_ROOT; }; + 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmpcbox.cpp; path = ../../src/xrc/xh_bmpcbox.cpp; sourceTree = SOURCE_ROOT; }; + A87BF60D0D4A33E2AD2E1E25 /* uiactioncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uiactioncmn.cpp; path = ../../src/common/uiactioncmn.cpp; sourceTree = SOURCE_ROOT; }; + 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_dfa_match.c; path = ../../3rdparty/pcre/src/pcre2_dfa_match.c; sourceTree = SOURCE_ROOT; }; + AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = nonownedwnd.mm; path = ../../src/osx/cocoa/nonownedwnd.mm; sourceTree = SOURCE_ROOT; }; + 7C97C1F26B5A38C49543060C /* mimetype.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mimetype.cpp; path = ../../src/osx/core/mimetype.cpp; sourceTree = SOURCE_ROOT; }; + 0E7BF9256DF533EBAE2B945E /* WordList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WordList.cxx; path = ../../src/stc/lexilla/lexlib/WordList.cxx; sourceTree = SOURCE_ROOT; }; + 0FA0840034F1386F94D17639 /* timectrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timectrl_osx.cpp; path = ../../src/osx/timectrl_osx.cpp; sourceTree = SOURCE_ROOT; }; + 3C4A7A93CAFC3E22A2A5F7F3 /* spinbutt.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = spinbutt.mm; path = ../../src/osx/cocoa/spinbutt.mm; sourceTree = SOURCE_ROOT; }; + 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridctrl.cpp; path = ../../src/generic/gridctrl.cpp; sourceTree = SOURCE_ROOT; }; + E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirdlgg.cpp; path = ../../src/generic/dirdlgg.cpp; sourceTree = SOURCE_ROOT; }; 36296C259D023EAAA240FC79 /* bannerwindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bannerwindow.cpp; path = ../../src/generic/bannerwindow.cpp; sourceTree = SOURCE_ROOT; }; - 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = event.cpp; path = ../../src/common/event.cpp; sourceTree = SOURCE_ROOT; }; - 95B4B2890C3A372DAB8DC7BA /* datectrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datectrl_osx.cpp; path = ../../src/osx/datectrl_osx.cpp; sourceTree = SOURCE_ROOT; }; - A54B80C17F823CB5900AD2E8 /* framecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = framecmn.cpp; path = ../../src/common/framecmn.cpp; sourceTree = SOURCE_ROOT; }; + EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_wizrd.cpp; path = ../../src/xrc/xh_wizrd.cpp; sourceTree = SOURCE_ROOT; }; + 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RunStyles.cxx; path = ../../src/stc/scintilla/src/RunStyles.cxx; sourceTree = SOURCE_ROOT; }; ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_hline.cpp; path = ../../src/html/m_hline.cpp; sourceTree = SOURCE_ROOT; }; - 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notifmsgg.cpp; path = ../../src/generic/notifmsgg.cpp; sourceTree = SOURCE_ROOT; }; - 5219A792C6A736F193D4A82F /* ContractionState.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ContractionState.cxx; path = ../../src/stc/scintilla/src/ContractionState.cxx; sourceTree = SOURCE_ROOT; }; - DFDC805DD3063C389F93642D /* tif_next.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_next.c; path = ../../src/tiff/libtiff/tif_next.c; sourceTree = SOURCE_ROOT; }; - 58421C141C9E31C6A7A3C183 /* filefn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filefn.cpp; path = ../../src/common/filefn.cpp; sourceTree = SOURCE_ROOT; }; - 31EFBD7D10003A5187348B35 /* tooltip.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = tooltip.mm; path = ../../src/osx/cocoa/tooltip.mm; sourceTree = SOURCE_ROOT; }; - 40586C8986443431A64EB066 /* LexLisp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLisp.cxx; path = ../../src/stc/lexilla/lexers/LexLisp.cxx; sourceTree = SOURCE_ROOT; }; - 6DBF3053414F3C448312165A /* jcdctmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcdctmgr.c; path = ../../src/jpeg/jcdctmgr.c; sourceTree = SOURCE_ROOT; }; - 5CFC6875EF4732E88E029065 /* tglbtn.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = tglbtn.mm; path = ../../src/osx/cocoa/tglbtn.mm; sourceTree = SOURCE_ROOT; }; - 95E2B80B2D7033808504DA8D /* utilsexc_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utilsexc_cf.cpp; path = ../../src/osx/core/utilsexc_cf.cpp; sourceTree = SOURCE_ROOT; }; - 48F1439BF6C3361296F05A33 /* tif_error.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_error.c; path = ../../src/tiff/libtiff/tif_error.c; sourceTree = SOURCE_ROOT; }; - 2E24C6F2A04E30EB95598305 /* chm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = chm.cpp; path = ../../src/html/chm.cpp; sourceTree = SOURCE_ROOT; }; - C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anybutton_osx.cpp; path = ../../src/osx/anybutton_osx.cpp; sourceTree = SOURCE_ROOT; }; - FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xtistrm.cpp; path = ../../src/common/xtistrm.cpp; sourceTree = SOURCE_ROOT; }; - 67DCEEB6861731319C30817F /* cshelp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cshelp.cpp; path = ../../src/common/cshelp.cpp; sourceTree = SOURCE_ROOT; }; - 6E53493CB84A30AE8C1CD721 /* dnd.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = dnd.mm; path = ../../src/osx/cocoa/dnd.mm; sourceTree = SOURCE_ROOT; }; - C513377E9E303F778BA9D7ED /* arcfind.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arcfind.cpp; path = ../../src/common/arcfind.cpp; sourceTree = SOURCE_ROOT; }; - A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrolbarcmn.cpp; path = ../../src/common/scrolbarcmn.cpp; sourceTree = SOURCE_ROOT; }; + E0EBCDDF248638B58B01D9CC /* datetime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datetime.cpp; path = ../../src/common/datetime.cpp; sourceTree = SOURCE_ROOT; }; + 42E433D1700631A8907B8227 /* helpctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpctrl.cpp; path = ../../src/html/helpctrl.cpp; sourceTree = SOURCE_ROOT; }; + 271B4B77622B3411A7BF6634 /* dataobj.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dataobj.cpp; path = ../../src/osx/carbon/dataobj.cpp; sourceTree = SOURCE_ROOT; }; + F43AF44465B335479752116D /* xh_radbx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_radbx.cpp; path = ../../src/xrc/xh_radbx.cpp; sourceTree = SOURCE_ROOT; }; + AF26BAB1F4733114926F1724 /* png.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = png.c; path = ../../src/png/png.c; sourceTree = SOURCE_ROOT; }; + 552757A901E732CAA8E3F16D /* list.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = list.cpp; path = ../../src/common/list.cpp; sourceTree = SOURCE_ROOT; }; + C28429A964C337A192D76CC8 /* Style.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Style.cxx; path = ../../src/stc/scintilla/src/Style.cxx; sourceTree = SOURCE_ROOT; }; + 12363D1F50FE301DAEE7F04A /* control.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = control.cpp; path = ../../src/osx/carbon/control.cpp; sourceTree = SOURCE_ROOT; }; + 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calctrlcmn.cpp; path = ../../src/common/calctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_mdi.cpp; path = ../../src/xrc/xh_mdi.cpp; sourceTree = SOURCE_ROOT; }; + A4A745D1821A32D591D76650 /* imagiff.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagiff.cpp; path = ../../src/common/imagiff.cpp; sourceTree = SOURCE_ROOT; }; DA2119A7C67D37B290C17989 /* statbmpg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbmpg.cpp; path = ../../src/generic/statbmpg.cpp; sourceTree = SOURCE_ROOT; }; - 18044326B5B13A98A49732DD /* fontdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdlg.cpp; path = ../../src/osx/carbon/fontdlg.cpp; sourceTree = SOURCE_ROOT; }; - B1AA9AF75D233FFC9FC90E7C /* LexNim.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNim.cxx; path = ../../src/stc/lexilla/lexers/LexNim.cxx; sourceTree = SOURCE_ROOT; }; - 24396D584D053948A3FF0DCD /* imagpng.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagpng.cpp; path = ../../src/common/imagpng.cpp; sourceTree = SOURCE_ROOT; }; - C9A305CEC03B3085B159B617 /* fs_mem.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_mem.cpp; path = ../../src/common/fs_mem.cpp; sourceTree = SOURCE_ROOT; }; + EC28591B403B32B7AFCC079D /* gauge_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gauge_osx.cpp; path = ../../src/osx/gauge_osx.cpp; sourceTree = SOURCE_ROOT; }; + 38891BF8F51E398F9082903F /* LexTAL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTAL.cxx; path = ../../src/stc/lexilla/lexers/LexTAL.cxx; sourceTree = SOURCE_ROOT; }; + C20E46A504113C899B9DD9B7 /* props.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = props.cpp; path = ../../src/propgrid/props.cpp; sourceTree = SOURCE_ROOT; }; + 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = debugrpt.cpp; path = ../../src/common/debugrpt.cpp; sourceTree = SOURCE_ROOT; }; + 02D9332D5C5632E981936E29 /* jquant2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jquant2.c; path = ../../src/jpeg/jquant2.c; sourceTree = SOURCE_ROOT; }; + 57C06D5DB5F733A4A235B206 /* combobox.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = combobox.mm; path = ../../src/osx/cocoa/combobox.mm; sourceTree = SOURCE_ROOT; }; + 87799D3168B43EB7B5686826 /* pngrtran.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrtran.c; path = ../../src/png/pngrtran.c; sourceTree = SOURCE_ROOT; }; + D3F32C01D122301AB00D06A5 /* tbarbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbarbase.cpp; path = ../../src/common/tbarbase.cpp; sourceTree = SOURCE_ROOT; }; + 725574EF98C4301989181CBF /* jctrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jctrans.c; path = ../../src/jpeg/jctrans.c; sourceTree = SOURCE_ROOT; }; + E1F2E9C9052D3E53BBD17DE3 /* statbrma.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbrma.cpp; path = ../../src/osx/carbon/statbrma.cpp; sourceTree = SOURCE_ROOT; }; + 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numdlgg.cpp; path = ../../src/generic/numdlgg.cpp; sourceTree = SOURCE_ROOT; }; + 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCoffeeScript.cxx; path = ../../src/stc/lexilla/lexers/LexCoffeeScript.cxx; sourceTree = SOURCE_ROOT; }; + 24BD2EF635673E819B8406CB /* LexRust.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRust.cxx; path = ../../src/stc/lexilla/lexers/LexRust.cxx; sourceTree = SOURCE_ROOT; }; + 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prntdlgg.cpp; path = ../../src/generic/prntdlgg.cpp; sourceTree = SOURCE_ROOT; }; + 0851C46057CE3C37991B9E34 /* LexBibTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBibTeX.cxx; path = ../../src/stc/lexilla/lexers/LexBibTeX.cxx; sourceTree = SOURCE_ROOT; }; + BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dialog_osx.cpp; path = ../../src/osx/dialog_osx.cpp; sourceTree = SOURCE_ROOT; }; + 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbox_osx.cpp; path = ../../src/osx/statbox_osx.cpp; sourceTree = SOURCE_ROOT; }; + B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexD.cxx; path = ../../src/stc/lexilla/lexers/LexD.cxx; sourceTree = SOURCE_ROOT; }; + 7EE2459D69BA35838C274488 /* LexCLW.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCLW.cxx; path = ../../src/stc/lexilla/lexers/LexCLW.cxx; sourceTree = SOURCE_ROOT; }; + 9D6B0D32537D35069C7E053F /* inftrees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inftrees.c; path = ../../src/zlib/inftrees.c; sourceTree = SOURCE_ROOT; }; + 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choicbkg.cpp; path = ../../src/generic/choicbkg.cpp; sourceTree = SOURCE_ROOT; }; + E6AB648BC5173104A96CAE66 /* xml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xml.cpp; path = ../../src/xml/xml.cpp; sourceTree = SOURCE_ROOT; }; + 8685B8ED68F23DB0B770FD74 /* xmltok.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = xmltok.c; path = ../../src/expat/expat/lib/xmltok.c; sourceTree = SOURCE_ROOT; }; + 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapistd.c; path = ../../src/jpeg/jdapistd.c; sourceTree = SOURCE_ROOT; }; + 4692909E4B823F71822B13F8 /* taskbarcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskbarcmn.cpp; path = ../../src/common/taskbarcmn.cpp; sourceTree = SOURCE_ROOT; }; 4188821BBA833CCAA678B234 /* utilscmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utilscmn.cpp; path = ../../src/common/utilscmn.cpp; sourceTree = SOURCE_ROOT; }; - 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imaglist.cpp; path = ../../src/generic/imaglist.cpp; sourceTree = SOURCE_ROOT; }; - 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = StyleContext.cxx; path = ../../src/stc/lexilla/lexlib/StyleContext.cxx; sourceTree = SOURCE_ROOT; }; - FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = palette_neon_intrinsics.c; path = ../../src/png/arm/palette_neon_intrinsics.c; sourceTree = SOURCE_ROOT; }; - C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextformatdlg.cpp; path = ../../src/richtext/richtextformatdlg.cpp; sourceTree = SOURCE_ROOT; }; + 1D799486AD7F336BB1F33DDC /* menu.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = menu.mm; path = ../../src/osx/cocoa/menu.mm; sourceTree = SOURCE_ROOT; }; + 5EA9E372A64B3B808A64B178 /* webrequest.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webrequest.cpp; path = ../../src/common/webrequest.cpp; sourceTree = SOURCE_ROOT; }; + 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zipstrm.cpp; path = ../../src/common/zipstrm.cpp; sourceTree = SOURCE_ROOT; }; + C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_auto_possess.c; path = ../../3rdparty/pcre/src/pcre2_auto_possess.c; sourceTree = SOURCE_ROOT; }; + 58E1F571B01F34D4AB70CA18 /* property.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = property.cpp; path = ../../src/propgrid/property.cpp; sourceTree = SOURCE_ROOT; }; + BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_serialize.c; path = ../../3rdparty/pcre/src/pcre2_serialize.c; sourceTree = SOURCE_ROOT; }; + D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVerilog.cxx; path = ../../src/stc/lexilla/lexers/LexVerilog.cxx; sourceTree = SOURCE_ROOT; }; + A82C367B86F83981803D55DB /* LexASY.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexASY.cxx; path = ../../src/stc/lexilla/lexers/LexASY.cxx; sourceTree = SOURCE_ROOT; }; + F8AD617806563DE394C15922 /* LexFSharp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFSharp.cxx; path = ../../src/stc/lexilla/lexers/LexFSharp.cxx; sourceTree = SOURCE_ROOT; }; + 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCharacterCategory.cxx; path = ../../src/stc/lexilla/lexlib/LexCharacterCategory.cxx; sourceTree = SOURCE_ROOT; }; + BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = progdlgg.cpp; path = ../../src/generic/progdlgg.cpp; sourceTree = SOURCE_ROOT; }; + BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVE.cxx; path = ../../src/stc/lexilla/lexers/LexAVE.cxx; sourceTree = SOURCE_ROOT; }; + A54B80C17F823CB5900AD2E8 /* framecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = framecmn.cpp; path = ../../src/common/framecmn.cpp; sourceTree = SOURCE_ROOT; }; + 149D299A0EDB3D998118EC93 /* tif_color.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_color.c; path = ../../src/tiff/libtiff/tif_color.c; sourceTree = SOURCE_ROOT; }; + 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerPro.cxx; path = ../../src/stc/lexilla/lexers/LexPowerPro.cxx; sourceTree = SOURCE_ROOT; }; + A284E855892F3A9E9E19E854 /* LexTADS3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTADS3.cxx; path = ../../src/stc/lexilla/lexers/LexTADS3.cxx; sourceTree = SOURCE_ROOT; }; + BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_fax3sm.c; path = ../../src/tiff/libtiff/tif_fax3sm.c; sourceTree = SOURCE_ROOT; }; + 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = filter_neon_intrinsics.c; path = ../../src/png/arm/filter_neon_intrinsics.c; sourceTree = SOURCE_ROOT; }; + DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iconbndl.cpp; path = ../../src/common/iconbndl.cpp; sourceTree = SOURCE_ROOT; }; + C06FED83BF933DF98C2466AE /* button.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = button.mm; path = ../../src/osx/cocoa/button.mm; sourceTree = SOURCE_ROOT; }; + 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ownerdrwcmn.cpp; path = ../../src/common/ownerdrwcmn.cpp; sourceTree = SOURCE_ROOT; }; + B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmainct.c; path = ../../src/jpeg/jdmainct.c; sourceTree = SOURCE_ROOT; }; 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_comboctrl.cpp; path = ../../src/xrc/xh_comboctrl.cpp; sourceTree = SOURCE_ROOT; }; - 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCoffeeScript.cxx; path = ../../src/stc/lexilla/lexers/LexCoffeeScript.cxx; sourceTree = SOURCE_ROOT; }; - 6876262846EA3569B36D92E9 /* imagjpeg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagjpeg.cpp; path = ../../src/common/imagjpeg.cpp; sourceTree = SOURCE_ROOT; }; - F46EC1508C063C8395CE7A95 /* sstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sstream.cpp; path = ../../src/common/sstream.cpp; sourceTree = SOURCE_ROOT; }; - 7BA6ADD758693BD180D3275B /* treebase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treebase.cpp; path = ../../src/common/treebase.cpp; sourceTree = SOURCE_ROOT; }; - 22D9626646773CED82449D5D /* persist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = persist.cpp; path = ../../src/common/persist.cpp; sourceTree = SOURCE_ROOT; }; - F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbmp_osx.cpp; path = ../../src/osx/statbmp_osx.cpp; sourceTree = SOURCE_ROOT; }; - B7581D7140293BAE88E43DBE /* fs_inet.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_inet.cpp; path = ../../src/common/fs_inet.cpp; sourceTree = SOURCE_ROOT; }; - 926BDF9C386C3A9A8C24D453 /* statbox.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = statbox.mm; path = ../../src/osx/cocoa/statbox.mm; sourceTree = SOURCE_ROOT; }; - FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexGui4Cli.cxx; path = ../../src/stc/lexilla/lexers/LexGui4Cli.cxx; sourceTree = SOURCE_ROOT; }; - A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selectdispatcher.cpp; path = ../../src/common/selectdispatcher.cpp; sourceTree = SOURCE_ROOT; }; - 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBaan.cxx; path = ../../src/stc/lexilla/lexers/LexBaan.cxx; sourceTree = SOURCE_ROOT; }; - 98A7F0605AAC3D28A8C9F253 /* gauge.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = gauge.mm; path = ../../src/osx/cocoa/gauge.mm; sourceTree = SOURCE_ROOT; }; - E145FC31ED523B4AA5080A61 /* RESearch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RESearch.cxx; path = ../../src/stc/scintilla/src/RESearch.cxx; sourceTree = SOURCE_ROOT; }; - 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_choic.cpp; path = ../../src/xrc/xh_choic.cpp; sourceTree = SOURCE_ROOT; }; - E110907DDC13305E88B90086 /* dirctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirctrlcmn.cpp; path = ../../src/common/dirctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPascal.cxx; path = ../../src/stc/lexilla/lexers/LexPascal.cxx; sourceTree = SOURCE_ROOT; }; - 777385D10CCC350C90F02824 /* textentry_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textentry_osx.cpp; path = ../../src/osx/textentry_osx.cpp; sourceTree = SOURCE_ROOT; }; - 9CE73979D0933A43830307E4 /* tif_packbits.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_packbits.c; path = ../../src/tiff/libtiff/tif_packbits.c; sourceTree = SOURCE_ROOT; }; - 238741BDA2C73E56899CCB04 /* dcprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcprint.cpp; path = ../../src/osx/carbon/dcprint.cpp; sourceTree = SOURCE_ROOT; }; - 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_pixarlog.c; path = ../../src/tiff/libtiff/tif_pixarlog.c; sourceTree = SOURCE_ROOT; }; + 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmp.cpp; path = ../../src/xrc/xh_bmp.cpp; sourceTree = SOURCE_ROOT; }; + 0B0DC125AFFC322E8E496262 /* dirdlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = dirdlg.mm; path = ../../src/osx/cocoa/dirdlg.mm; sourceTree = SOURCE_ROOT; }; + 864438709B363773B8C3382D /* datetimefmt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datetimefmt.cpp; path = ../../src/common/datetimefmt.cpp; sourceTree = SOURCE_ROOT; }; + 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_match_data.c; path = ../../3rdparty/pcre/src/pcre2_match_data.c; sourceTree = SOURCE_ROOT; }; + B3645350F572364BABF50238 /* containr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = containr.cpp; path = ../../src/common/containr.cpp; sourceTree = SOURCE_ROOT; }; + F175D6E8E5723FC797701275 /* menucmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menucmn.cpp; path = ../../src/common/menucmn.cpp; sourceTree = SOURCE_ROOT; }; + 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsciidoc.cxx; path = ../../src/stc/lexilla/lexers/LexAsciidoc.cxx; sourceTree = SOURCE_ROOT; }; + D0B9C41A4D12345AAA764CAD /* stc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stc.cpp; path = ../../src/stc/stc.cpp; sourceTree = SOURCE_ROOT; }; + F2024D29170D3B50A4DFDE11 /* base64.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = base64.cpp; path = ../../src/common/base64.cpp; sourceTree = SOURCE_ROOT; }; + 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tglbtn_osx.cpp; path = ../../src/osx/tglbtn_osx.cpp; sourceTree = SOURCE_ROOT; }; + B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCOBOL.cxx; path = ../../src/stc/lexilla/lexers/LexCOBOL.cxx; sourceTree = SOURCE_ROOT; }; + 6BC93D1DE277395592610085 /* propdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propdlg.cpp; path = ../../src/generic/propdlg.cpp; sourceTree = SOURCE_ROOT; }; + 5E463A493FD930DE80E58608 /* pngset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngset.c; path = ../../src/png/pngset.c; sourceTree = SOURCE_ROOT; }; + D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preferencesg.cpp; path = ../../src/generic/preferencesg.cpp; sourceTree = SOURCE_ROOT; }; + AA234ACC79743DA797601AA6 /* jcarith.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcarith.c; path = ../../src/jpeg/jcarith.c; sourceTree = SOURCE_ROOT; }; + 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jquant1.c; path = ../../src/jpeg/jquant1.c; sourceTree = SOURCE_ROOT; }; + 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVHDL.cxx; path = ../../src/stc/lexilla/lexers/LexVHDL.cxx; sourceTree = SOURCE_ROOT; }; + 773D91F8280434519BD167EA /* radiobox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobox_osx.cpp; path = ../../src/osx/radiobox_osx.cpp; sourceTree = SOURCE_ROOT; }; + 68B81FBDA49D3C1991B6356A /* jdcolor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcolor.c; path = ../../src/jpeg/jdcolor.c; sourceTree = SOURCE_ROOT; }; + BBB30516233A39BE809405AA /* helpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpbase.cpp; path = ../../src/common/helpbase.cpp; sourceTree = SOURCE_ROOT; }; + B890199A37723EFD86C0ADA5 /* quantize.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = quantize.cpp; path = ../../src/common/quantize.cpp; sourceTree = SOURCE_ROOT; }; + F0905A1EBD653F6D82395602 /* xh_combo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_combo.cpp; path = ../../src/xrc/xh_combo.cpp; sourceTree = SOURCE_ROOT; }; + 45C65E309F3A39598C043657 /* xh_infobar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_infobar.cpp; path = ../../src/xrc/xh_infobar.cpp; sourceTree = SOURCE_ROOT; }; + AC12D557950A3B0D89D9F2F3 /* fileback.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileback.cpp; path = ../../src/common/fileback.cpp; sourceTree = SOURCE_ROOT; }; + 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmpbt.cpp; path = ../../src/xrc/xh_bmpbt.cpp; sourceTree = SOURCE_ROOT; }; + 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = bmpbndl.mm; path = ../../src/osx/core/bmpbndl.mm; sourceTree = SOURCE_ROOT; }; + FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = palette_neon_intrinsics.c; path = ../../src/png/arm/palette_neon_intrinsics.c; sourceTree = SOURCE_ROOT; }; + BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filepickercmn.cpp; path = ../../src/common/filepickercmn.cpp; sourceTree = SOURCE_ROOT; }; + 239D386E9D7D39C5A1E859C6 /* clipcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipcmn.cpp; path = ../../src/common/clipcmn.cpp; sourceTree = SOURCE_ROOT; }; + B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirwrite.c; path = ../../src/tiff/libtiff/tif_dirwrite.c; sourceTree = SOURCE_ROOT; }; + 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toplevel_osx.cpp; path = ../../src/osx/toplevel_osx.cpp; sourceTree = SOURCE_ROOT; }; + 5F84098A475939BB9EE87E70 /* imagbmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagbmp.cpp; path = ../../src/common/imagbmp.cpp; sourceTree = SOURCE_ROOT; }; + B17772732159304AA7312D72 /* dcclient.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcclient.cpp; path = ../../src/osx/carbon/dcclient.cpp; sourceTree = SOURCE_ROOT; }; + EA93D41B11683E758D456531 /* log.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = ../../src/common/log.cpp; sourceTree = SOURCE_ROOT; }; + 303ACF199BE431BD891C9301 /* overlaycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = overlaycmn.cpp; path = ../../src/common/overlaycmn.cpp; sourceTree = SOURCE_ROOT; }; + 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pickerbase.cpp; path = ../../src/common/pickerbase.cpp; sourceTree = SOURCE_ROOT; }; + 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatchercmn.cpp; path = ../../src/common/fswatchercmn.cpp; sourceTree = SOURCE_ROOT; }; + D215A0D67563350CB4EECB06 /* slider_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slider_osx.cpp; path = ../../src/osx/slider_osx.cpp; sourceTree = SOURCE_ROOT; }; + FCCFF49F92B4323D9181CEDA /* htmltag.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmltag.cpp; path = ../../src/html/htmltag.cpp; sourceTree = SOURCE_ROOT; }; + 810EB7316DF3344197C78EC0 /* jcmainct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmainct.c; path = ../../src/jpeg/jcmainct.c; sourceTree = SOURCE_ROOT; }; + CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_tglbtn.cpp; path = ../../src/xrc/xh_tglbtn.cpp; sourceTree = SOURCE_ROOT; }; + 033B94A9AC8A3370A794503F /* extended.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = extended.c; path = ../../src/common/extended.c; sourceTree = SOURCE_ROOT; }; + 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDataflex.cxx; path = ../../src/stc/lexilla/lexers/LexDataflex.cxx; sourceTree = SOURCE_ROOT; }; + EBED392D081335FA80523244 /* manager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = manager.cpp; path = ../../src/propgrid/manager.cpp; sourceTree = SOURCE_ROOT; }; + 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collheaderctrlg.cpp; path = ../../src/generic/collheaderctrlg.cpp; sourceTree = SOURCE_ROOT; }; + 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlwin.cpp; path = ../../src/html/htmlwin.cpp; sourceTree = SOURCE_ROOT; }; + A57CF60203F53459A03951A9 /* arrstr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arrstr.cpp; path = ../../src/common/arrstr.cpp; sourceTree = SOURCE_ROOT; }; + 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nonownedwnd_osx.cpp; path = ../../src/osx/nonownedwnd_osx.cpp; sourceTree = SOURCE_ROOT; }; + 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cairo.cpp; path = ../../src/common/cairo.cpp; sourceTree = SOURCE_ROOT; }; + 889FFA9573A835F280A21CB4 /* xh_html.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_html.cpp; path = ../../src/xrc/xh_html.cpp; sourceTree = SOURCE_ROOT; }; + C9E32802E8ED3E729FF34CFC /* printdlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = printdlg.mm; path = ../../src/osx/cocoa/printdlg.mm; sourceTree = SOURCE_ROOT; }; + 02D2E8B5C89939CE90B99E2B /* archive.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = archive.cpp; path = ../../src/common/archive.cpp; sourceTree = SOURCE_ROOT; }; + 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colrdlgg.cpp; path = ../../src/generic/colrdlgg.cpp; sourceTree = SOURCE_ROOT; }; + DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcsvg.cpp; path = ../../src/common/dcsvg.cpp; sourceTree = SOURCE_ROOT; }; + D4C4495603293C07A3B09D54 /* compress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = compress.c; path = ../../src/zlib/compress.c; sourceTree = SOURCE_ROOT; }; + 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tipwin.cpp; path = ../../src/generic/tipwin.cpp; sourceTree = SOURCE_ROOT; }; + 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMaxima.cxx; path = ../../src/stc/lexilla/lexers/LexMaxima.cxx; sourceTree = SOURCE_ROOT; }; + E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = creddlgg.cpp; path = ../../src/generic/creddlgg.cpp; sourceTree = SOURCE_ROOT; }; + 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtooltipg.cpp; path = ../../src/generic/richtooltipg.cpp; sourceTree = SOURCE_ROOT; }; + 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_radbt.cpp; path = ../../src/xrc/xh_radbt.cpp; sourceTree = SOURCE_ROOT; }; + 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHex.cxx; path = ../../src/stc/lexilla/lexers/LexHex.cxx; sourceTree = SOURCE_ROOT; }; + 3116006345D833509865FF7F /* xh_bannerwindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bannerwindow.cpp; path = ../../src/xrc/xh_bannerwindow.cpp; sourceTree = SOURCE_ROOT; }; E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CellBuffer.cxx; path = ../../src/stc/scintilla/src/CellBuffer.cxx; sourceTree = SOURCE_ROOT; }; - 49612306912038DDBCABB4DE /* url.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = url.cpp; path = ../../src/common/url.cpp; sourceTree = SOURCE_ROOT; }; - 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_htmllbox.cpp; path = ../../src/xrc/xh_htmllbox.cpp; sourceTree = SOURCE_ROOT; }; - 3F8836E29C5A370E80CE070E /* splash.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splash.cpp; path = ../../src/generic/splash.cpp; sourceTree = SOURCE_ROOT; }; - F84F0DB790A23D92A193D2B4 /* http.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = http.cpp; path = ../../src/common/http.cpp; sourceTree = SOURCE_ROOT; }; - 5E463A493FD930DE80E58608 /* pngset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngset.c; path = ../../src/png/pngset.c; sourceTree = SOURCE_ROOT; }; - 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = filter_neon_intrinsics.c; path = ../../src/png/arm/filter_neon_intrinsics.c; sourceTree = SOURCE_ROOT; }; - 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctint.c; path = ../../src/jpeg/jfdctint.c; sourceTree = SOURCE_ROOT; }; - 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerNoExceptions.cxx; path = ../../src/stc/lexilla/lexlib/LexerNoExceptions.cxx; sourceTree = SOURCE_ROOT; }; - 071FEABEA61E3B559A47A7DB /* statusbr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statusbr.cpp; path = ../../src/generic/statusbr.cpp; sourceTree = SOURCE_ROOT; }; - 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sashwin.cpp; path = ../../src/generic/sashwin.cpp; sourceTree = SOURCE_ROOT; }; - 684D92E552BE313CBE0A88AA /* valnum.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valnum.cpp; path = ../../src/common/valnum.cpp; sourceTree = SOURCE_ROOT; }; - 8744F2C80ECF375999195935 /* LexPB.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPB.cxx; path = ../../src/stc/lexilla/lexers/LexPB.cxx; sourceTree = SOURCE_ROOT; }; - 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checklstcmn.cpp; path = ../../src/common/checklstcmn.cpp; sourceTree = SOURCE_ROOT; }; - D3F32C01D122301AB00D06A5 /* tbarbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbarbase.cpp; path = ../../src/common/tbarbase.cpp; sourceTree = SOURCE_ROOT; }; - 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colourdata.cpp; path = ../../src/common/colourdata.cpp; sourceTree = SOURCE_ROOT; }; - A82C367B86F83981803D55DB /* LexASY.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexASY.cxx; path = ../../src/stc/lexilla/lexers/LexASY.cxx; sourceTree = SOURCE_ROOT; }; - 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_find_bracket.c; path = ../../3rdparty/pcre/src/pcre2_find_bracket.c; sourceTree = SOURCE_ROOT; }; - 0FA0840034F1386F94D17639 /* timectrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timectrl_osx.cpp; path = ../../src/osx/timectrl_osx.cpp; sourceTree = SOURCE_ROOT; }; - 5145561C78303EEE9F827962 /* LexLua.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLua.cxx; path = ../../src/stc/lexilla/lexers/LexLua.cxx; sourceTree = SOURCE_ROOT; }; - 7255468B6D5F3D8697994A53 /* LexR.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexR.cxx; path = ../../src/stc/lexilla/lexers/LexR.cxx; sourceTree = SOURCE_ROOT; }; - 8685B8ED68F23DB0B770FD74 /* xmltok.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = xmltok.c; path = ../../src/expat/expat/lib/xmltok.c; sourceTree = SOURCE_ROOT; }; - F1A6F3936A0D31CBB58082BA /* jdcoefct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcoefct.c; path = ../../src/jpeg/jdcoefct.c; sourceTree = SOURCE_ROOT; }; - B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirwrite.c; path = ../../src/tiff/libtiff/tif_dirwrite.c; sourceTree = SOURCE_ROOT; }; - 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_predict.c; path = ../../src/tiff/libtiff/tif_predict.c; sourceTree = SOURCE_ROOT; }; - BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filename.cpp; path = ../../src/common/filename.cpp; sourceTree = SOURCE_ROOT; }; - 607EF0043E723B7B9BE101EA /* wxprintf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wxprintf.cpp; path = ../../src/common/wxprintf.cpp; sourceTree = SOURCE_ROOT; }; - F82278F9AF0432529891E6D7 /* tif_close.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_close.c; path = ../../src/tiff/libtiff/tif_close.c; sourceTree = SOURCE_ROOT; }; - DC9153A350893820B942D37E /* LexMatlab.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMatlab.cxx; path = ../../src/stc/lexilla/lexers/LexMatlab.cxx; sourceTree = SOURCE_ROOT; }; - DC3D1E222FD93A69B1D1366E /* mstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mstream.cpp; path = ../../src/common/mstream.cpp; sourceTree = SOURCE_ROOT; }; - ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRaku.cxx; path = ../../src/stc/lexilla/lexers/LexRaku.cxx; sourceTree = SOURCE_ROOT; }; - FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_srchctrl.cpp; path = ../../src/xrc/xh_srchctrl.cpp; sourceTree = SOURCE_ROOT; }; - 7FE0455EBDC63D82B2D88587 /* jcprepct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcprepct.c; path = ../../src/jpeg/jcprepct.c; sourceTree = SOURCE_ROOT; }; - 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirctrlg.cpp; path = ../../src/generic/dirctrlg.cpp; sourceTree = SOURCE_ROOT; }; - 2851EAAEE9B73FE8981912C9 /* LexErrorList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexErrorList.cxx; path = ../../src/stc/lexilla/lexers/LexErrorList.cxx; sourceTree = SOURCE_ROOT; }; - 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_sizer.cpp; path = ../../src/xrc/xh_sizer.cpp; sourceTree = SOURCE_ROOT; }; - B5370A676AAC32419D7FDD87 /* inflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inflate.c; path = ../../src/zlib/inflate.c; sourceTree = SOURCE_ROOT; }; - DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultLexer.cxx; path = ../../src/stc/lexilla/lexlib/DefaultLexer.cxx; sourceTree = SOURCE_ROOT; }; - 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_tree.cpp; path = ../../src/xrc/xh_tree.cpp; sourceTree = SOURCE_ROOT; }; - F8AD617806563DE394C15922 /* LexFSharp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFSharp.cxx; path = ../../src/stc/lexilla/lexers/LexFSharp.cxx; sourceTree = SOURCE_ROOT; }; - 17A8A93EF3C03546BE19F43B /* LexX12.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexX12.cxx; path = ../../src/stc/lexilla/lexers/LexX12.cxx; sourceTree = SOURCE_ROOT; }; - B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appunix.cpp; path = ../../src/unix/appunix.cpp; sourceTree = SOURCE_ROOT; }; - DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iconbndl.cpp; path = ../../src/common/iconbndl.cpp; sourceTree = SOURCE_ROOT; }; - B540E18F9C91381CA175BABB /* art_msw.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_msw.cpp; path = ../../src/ribbon/art_msw.cpp; sourceTree = SOURCE_ROOT; }; - E9B992CB6C28339FB0CA5E27 /* tif_write.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_write.c; path = ../../src/tiff/libtiff/tif_write.c; sourceTree = SOURCE_ROOT; }; - B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listb.cpp; path = ../../src/xrc/xh_listb.cpp; sourceTree = SOURCE_ROOT; }; - 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCrontab.cxx; path = ../../src/stc/lexilla/lexers/LexCrontab.cxx; sourceTree = SOURCE_ROOT; }; - BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_fax3sm.c; path = ../../src/tiff/libtiff/tif_fax3sm.c; sourceTree = SOURCE_ROOT; }; - 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_unkwn.cpp; path = ../../src/xrc/xh_unkwn.cpp; sourceTree = SOURCE_ROOT; }; - 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_ojpeg.c; path = ../../src/tiff/libtiff/tif_ojpeg.c; sourceTree = SOURCE_ROOT; }; - C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_auto_possess.c; path = ../../3rdparty/pcre/src/pcre2_auto_possess.c; sourceTree = SOURCE_ROOT; }; - DD09A813E10A31C19554B425 /* affinematrix2d.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = affinematrix2d.cpp; path = ../../src/common/affinematrix2d.cpp; sourceTree = SOURCE_ROOT; }; - E0EBCDDF248638B58B01D9CC /* datetime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datetime.cpp; path = ../../src/common/datetime.cpp; sourceTree = SOURCE_ROOT; }; - 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtloopunix.cpp; path = ../../src/unix/evtloopunix.cpp; sourceTree = SOURCE_ROOT; }; - 7EB95BCFA255323183A996C9 /* m_style.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_style.cpp; path = ../../src/html/m_style.cpp; sourceTree = SOURCE_ROOT; }; - 5B32A13D5B3336098B1B9765 /* pngtrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngtrans.c; path = ../../src/png/pngtrans.c; sourceTree = SOURCE_ROOT; }; - BAD4614CABC934D6AFF8D9CD /* gzread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzread.c; path = ../../src/zlib/gzread.c; sourceTree = SOURCE_ROOT; }; - 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_codec.c; path = ../../src/tiff/libtiff/tif_codec.c; sourceTree = SOURCE_ROOT; }; - CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choicdgg.cpp; path = ../../src/generic/choicdgg.cpp; sourceTree = SOURCE_ROOT; }; - 92CCFD77BFB537EAA48E8BD3 /* renderer.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = renderer.mm; path = ../../src/osx/cocoa/renderer.mm; sourceTree = SOURCE_ROOT; }; - A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headerctrlcmn.cpp; path = ../../src/common/headerctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - 71DB140E670738839EC42C2B /* Document.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Document.cxx; path = ../../src/stc/scintilla/src/Document.cxx; sourceTree = SOURCE_ROOT; }; - AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagtiff.cpp; path = ../../src/common/imagtiff.cpp; sourceTree = SOURCE_ROOT; }; B6AADC1056E03A3B80C20C5B /* LexBasic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBasic.cxx; path = ../../src/stc/lexilla/lexers/LexBasic.cxx; sourceTree = SOURCE_ROOT; }; + F4020D790AE7363CB29F1C2F /* anybutton.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = anybutton.mm; path = ../../src/osx/cocoa/anybutton.mm; sourceTree = SOURCE_ROOT; }; + 743EF8DB16CE371DA5C66623 /* statline.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = statline.mm; path = ../../src/osx/cocoa/statline.mm; sourceTree = SOURCE_ROOT; }; + 6E53493CB84A30AE8C1CD721 /* dnd.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = dnd.mm; path = ../../src/osx/cocoa/dnd.mm; sourceTree = SOURCE_ROOT; }; + D784A32C094730FEAA391A9B /* sckstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckstrm.cpp; path = ../../src/common/sckstrm.cpp; sourceTree = SOURCE_ROOT; }; + BCD873D873A53BBF955D8A4E /* PositionCache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PositionCache.cxx; path = ../../src/stc/scintilla/src/PositionCache.cxx; sourceTree = SOURCE_ROOT; }; + BD91A34971FB3D0299B894A5 /* appprogress.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = appprogress.mm; path = ../../src/osx/cocoa/appprogress.mm; sourceTree = SOURCE_ROOT; }; + 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statlinecmn.cpp; path = ../../src/common/statlinecmn.cpp; sourceTree = SOURCE_ROOT; }; + 093B5233861B3F9B8C85762B /* xh_cald.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_cald.cpp; path = ../../src/xrc/xh_cald.cpp; sourceTree = SOURCE_ROOT; }; + 7020ADB5D3E0375E875B418B /* LexA68k.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexA68k.cxx; path = ../../src/stc/lexilla/lexers/LexA68k.cxx; sourceTree = SOURCE_ROOT; }; 50859F0155753FDCB8C5222A /* LexSTTXT.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSTTXT.cxx; path = ../../src/stc/lexilla/lexers/LexSTTXT.cxx; sourceTree = SOURCE_ROOT; }; - A0DCC5EF59143640BE13AD73 /* jidctfst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctfst.c; path = ../../src/jpeg/jidctfst.c; sourceTree = SOURCE_ROOT; }; - FDB0E2D0966C3E408C4A2D3D /* infback.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = infback.c; path = ../../src/zlib/infback.c; sourceTree = SOURCE_ROOT; }; - 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dynload.cpp; path = ../../src/common/dynload.cpp; sourceTree = SOURCE_ROOT; }; - 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printmac.cpp; path = ../../src/osx/core/printmac.cpp; sourceTree = SOURCE_ROOT; }; - B14D6E7E15FD3C869E341198 /* LexLout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLout.cxx; path = ../../src/stc/lexilla/lexers/LexLout.cxx; sourceTree = SOURCE_ROOT; }; - 8D529E2668C23D94A7706C8A /* textdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdlgg.cpp; path = ../../src/generic/textdlgg.cpp; sourceTree = SOURCE_ROOT; }; - DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socketiohandler.cpp; path = ../../src/common/socketiohandler.cpp; sourceTree = SOURCE_ROOT; }; - DB82939EDC593F9CA95C3098 /* init.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = init.cpp; path = ../../src/common/init.cpp; sourceTree = SOURCE_ROOT; }; - 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCmake.cxx; path = ../../src/stc/lexilla/lexers/LexCmake.cxx; sourceTree = SOURCE_ROOT; }; - 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_getimage.c; path = ../../src/tiff/libtiff/tif_getimage.c; sourceTree = SOURCE_ROOT; }; - 108517BCD39230E7A89BC943 /* jerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jerror.c; path = ../../src/jpeg/jerror.c; sourceTree = SOURCE_ROOT; }; - 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = filter_sse2_intrinsics.c; path = ../../src/png/intel/filter_sse2_intrinsics.c; sourceTree = SOURCE_ROOT; }; - 950D51915EF83B57B5E8306F /* xh_spin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_spin.cpp; path = ../../src/xrc/xh_spin.cpp; sourceTree = SOURCE_ROOT; }; - BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textmeasurecmn.cpp; path = ../../src/common/textmeasurecmn.cpp; sourceTree = SOURCE_ROOT; }; - 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_auitoolb.cpp; path = ../../src/xrc/xh_auitoolb.cpp; sourceTree = SOURCE_ROOT; }; - 97FFB03FF6793506B246BAC6 /* platinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = platinfo.cpp; path = ../../src/common/platinfo.cpp; sourceTree = SOURCE_ROOT; }; - 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webviewarchivehandler.cpp; path = ../../src/common/webviewarchivehandler.cpp; sourceTree = SOURCE_ROOT; }; - B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrapsizer.cpp; path = ../../src/common/wrapsizer.cpp; sourceTree = SOURCE_ROOT; }; - 61548D0FE1353D7C846DD721 /* menuitem.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = menuitem.mm; path = ../../src/osx/cocoa/menuitem.mm; sourceTree = SOURCE_ROOT; }; - FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_valid_utf.c; path = ../../3rdparty/pcre/src/pcre2_valid_utf.c; sourceTree = SOURCE_ROOT; }; - 4549845C0751356A907C23E0 /* jdtrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdtrans.c; path = ../../src/jpeg/jdtrans.c; sourceTree = SOURCE_ROOT; }; + 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jpeg_12.c; path = ../../src/tiff/libtiff/tif_jpeg_12.c; sourceTree = SOURCE_ROOT; }; + 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSmalltalk.cxx; path = ../../src/stc/lexilla/lexers/LexSmalltalk.cxx; sourceTree = SOURCE_ROOT; }; + C69E48C06BD23C178F650E42 /* richtextxml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextxml.cpp; path = ../../src/richtext/richtextxml.cpp; sourceTree = SOURCE_ROOT; }; + C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextformatdlg.cpp; path = ../../src/richtext/richtextformatdlg.cpp; sourceTree = SOURCE_ROOT; }; + 5190E3E110443FD29F2474FC /* treelist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treelist.cpp; path = ../../src/generic/treelist.cpp; sourceTree = SOURCE_ROOT; }; + 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = StyleContext.cxx; path = ../../src/stc/lexilla/lexlib/StyleContext.cxx; sourceTree = SOURCE_ROOT; }; + 0C7F18C26877336DBE638D75 /* LexCIL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCIL.cxx; path = ../../src/stc/lexilla/lexers/LexCIL.cxx; sourceTree = SOURCE_ROOT; }; + 81A30C745CA73E30B788B408 /* image.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image.cpp; path = ../../src/common/image.cpp; sourceTree = SOURCE_ROOT; }; + AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uiaction_osx.cpp; path = ../../src/osx/uiaction_osx.cpp; sourceTree = SOURCE_ROOT; }; + F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexJSON.cxx; path = ../../src/stc/lexilla/lexers/LexJSON.cxx; sourceTree = SOURCE_ROOT; }; + E4E16323A43E36DC8024EDF1 /* textctrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = textctrl.mm; path = ../../src/osx/cocoa/textctrl.mm; sourceTree = SOURCE_ROOT; }; + F83172EE2DAE352FB969D4F2 /* jcapistd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapistd.c; path = ../../src/jpeg/jcapistd.c; sourceTree = SOURCE_ROOT; }; + ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docmdi.cpp; path = ../../src/common/docmdi.cpp; sourceTree = SOURCE_ROOT; }; + 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filtall.cpp; path = ../../src/common/filtall.cpp; sourceTree = SOURCE_ROOT; }; + 418AD9241B673308BE31DC06 /* xlocale.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xlocale.cpp; path = ../../src/common/xlocale.cpp; sourceTree = SOURCE_ROOT; }; + 3E3043D7BE9C33B59E900CCE /* jcmaster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmaster.c; path = ../../src/jpeg/jcmaster.c; sourceTree = SOURCE_ROOT; }; + 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtexthtml.cpp; path = ../../src/richtext/richtexthtml.cpp; sourceTree = SOURCE_ROOT; }; + 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterCategory.cxx; path = ../../src/stc/scintilla/src/CharacterCategory.cxx; sourceTree = SOURCE_ROOT; }; + B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listb.cpp; path = ../../src/xrc/xh_listb.cpp; sourceTree = SOURCE_ROOT; }; + 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_toolb.cpp; path = ../../src/xrc/xh_toolb.cpp; sourceTree = SOURCE_ROOT; }; + 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ScintillaBase.cxx; path = ../../src/stc/scintilla/src/ScintillaBase.cxx; sourceTree = SOURCE_ROOT; }; + 0E45F6DF601A34BCB3CC0206 /* adler32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = adler32.c; path = ../../src/zlib/adler32.c; sourceTree = SOURCE_ROOT; }; + 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinctrlcmn.cpp; path = ../../src/common/spinctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; 9EF09C7CC5413CC6A5E7B21B /* LexCPP.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCPP.cxx; path = ../../src/stc/lexilla/lexers/LexCPP.cxx; sourceTree = SOURCE_ROOT; }; + 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgridpagestate.cpp; path = ../../src/propgrid/propgridpagestate.cpp; sourceTree = SOURCE_ROOT; }; + 5279968877003A8BB8279765 /* webrequest_curl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webrequest_curl.cpp; path = ../../src/common/webrequest_curl.cpp; sourceTree = SOURCE_ROOT; }; + 6DBF3053414F3C448312165A /* jcdctmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcdctmgr.c; path = ../../src/jpeg/jcdctmgr.c; sourceTree = SOURCE_ROOT; }; + CBA9036479943A4990CEB3AC /* webview_chromium.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webview_chromium.mm; path = ../../src/osx/webview_chromium.mm; sourceTree = SOURCE_ROOT; }; + CA2D9F325F833C408657E7B7 /* dlunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlunix.cpp; path = ../../src/unix/dlunix.cpp; sourceTree = SOURCE_ROOT; }; + 5F094B0B07DF33BCA6077BC0 /* fdrepdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fdrepdlg.cpp; path = ../../src/generic/fdrepdlg.cpp; sourceTree = SOURCE_ROOT; }; + 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCSS.cxx; path = ../../src/stc/lexilla/lexers/LexCSS.cxx; sourceTree = SOURCE_ROOT; }; + EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_chckl.cpp; path = ../../src/xrc/xh_chckl.cpp; sourceTree = SOURCE_ROOT; }; + 238741BDA2C73E56899CCB04 /* dcprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcprint.cpp; path = ../../src/osx/carbon/dcprint.cpp; sourceTree = SOURCE_ROOT; }; D46A36564C78312CAC538E93 /* srchctlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchctlg.cpp; path = ../../src/generic/srchctlg.cpp; sourceTree = SOURCE_ROOT; }; - EED7C691150139EFA35E8EBD /* utils_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utils_osx.cpp; path = ../../src/osx/utils_osx.cpp; sourceTree = SOURCE_ROOT; }; - 0851C46057CE3C37991B9E34 /* LexBibTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBibTeX.cxx; path = ../../src/stc/lexilla/lexers/LexBibTeX.cxx; sourceTree = SOURCE_ROOT; }; - 2C090A76B6F23E6481A27282 /* ipcbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ipcbase.cpp; path = ../../src/common/ipcbase.cpp; sourceTree = SOURCE_ROOT; }; - 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNull.cxx; path = ../../src/stc/lexilla/lexers/LexNull.cxx; sourceTree = SOURCE_ROOT; }; - BD91A34971FB3D0299B894A5 /* appprogress.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = appprogress.mm; path = ../../src/osx/cocoa/appprogress.mm; sourceTree = SOURCE_ROOT; }; - 1197B997B1D139C5AE4D198A /* dseldlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dseldlg.cpp; path = ../../src/common/dseldlg.cpp; sourceTree = SOURCE_ROOT; }; - BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextsymboldlg.cpp; path = ../../src/richtext/richtextsymboldlg.cpp; sourceTree = SOURCE_ROOT; }; - AC12D557950A3B0D89D9F2F3 /* fileback.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileback.cpp; path = ../../src/common/fileback.cpp; sourceTree = SOURCE_ROOT; }; - 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtloop_cf.cpp; path = ../../src/osx/core/evtloop_cf.cpp; sourceTree = SOURCE_ROOT; }; - 305614D19CF23CB2B14A5B2E /* tif_flush.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_flush.c; path = ../../src/tiff/libtiff/tif_flush.c; sourceTree = SOURCE_ROOT; }; - 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_study.c; path = ../../3rdparty/pcre/src/pcre2_study.c; sourceTree = SOURCE_ROOT; }; - 38891BF8F51E398F9082903F /* LexTAL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTAL.cxx; path = ../../src/stc/lexilla/lexers/LexTAL.cxx; sourceTree = SOURCE_ROOT; }; - E08A51FA8D8A361681B07295 /* glcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glcmn.cpp; path = ../../src/common/glcmn.cpp; sourceTree = SOURCE_ROOT; }; - F4020D790AE7363CB29F1C2F /* anybutton.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = anybutton.mm; path = ../../src/osx/cocoa/anybutton.mm; sourceTree = SOURCE_ROOT; }; - 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tglbtn_osx.cpp; path = ../../src/osx/tglbtn_osx.cpp; sourceTree = SOURCE_ROOT; }; - 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVisualProlog.cxx; path = ../../src/stc/lexilla/lexers/LexVisualProlog.cxx; sourceTree = SOURCE_ROOT; }; - 9BC8BFDE41F93504B7A51D08 /* nativewin.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = nativewin.mm; path = ../../src/osx/cocoa/nativewin.mm; sourceTree = SOURCE_ROOT; }; - 25E03E349FC13E4A9428B94E /* pcre2_error.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_error.c; path = ../../3rdparty/pcre/src/pcre2_error.c; sourceTree = SOURCE_ROOT; }; - 1AD9605C9385374C87FAC9BC /* LexECL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexECL.cxx; path = ../../src/stc/lexilla/lexers/LexECL.cxx; sourceTree = SOURCE_ROOT; }; - 4592464D4868329897F3864D /* LexSpice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpice.cxx; path = ../../src/stc/lexilla/lexers/LexSpice.cxx; sourceTree = SOURCE_ROOT; }; - 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexJulia.cxx; path = ../../src/stc/lexilla/lexers/LexJulia.cxx; sourceTree = SOURCE_ROOT; }; - 06B4A895955B32258DCD62BF /* xh_dlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_dlg.cpp; path = ../../src/xrc/xh_dlg.cpp; sourceTree = SOURCE_ROOT; }; - 96CED508FA3C3B6B9265099E /* rendcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rendcmn.cpp; path = ../../src/common/rendcmn.cpp; sourceTree = SOURCE_ROOT; }; - BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dialog_osx.cpp; path = ../../src/osx/dialog_osx.cpp; sourceTree = SOURCE_ROOT; }; - 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsciidoc.cxx; path = ../../src/stc/lexilla/lexers/LexAsciidoc.cxx; sourceTree = SOURCE_ROOT; }; - EBED392D081335FA80523244 /* manager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = manager.cpp; path = ../../src/propgrid/manager.cpp; sourceTree = SOURCE_ROOT; }; - 239D386E9D7D39C5A1E859C6 /* clipcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipcmn.cpp; path = ../../src/common/clipcmn.cpp; sourceTree = SOURCE_ROOT; }; - FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexKVIrc.cxx; path = ../../src/stc/lexilla/lexers/LexKVIrc.cxx; sourceTree = SOURCE_ROOT; }; - D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preferencesg.cpp; path = ../../src/generic/preferencesg.cpp; sourceTree = SOURCE_ROOT; }; - 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PropSetSimple.cxx; path = ../../src/stc/lexilla/lexlib/PropSetSimple.cxx; sourceTree = SOURCE_ROOT; }; + F1E724EA70AB35DDB130F84F /* stringops.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stringops.cpp; path = ../../src/common/stringops.cpp; sourceTree = SOURCE_ROOT; }; + A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animatecmn.cpp; path = ../../src/common/animatecmn.cpp; sourceTree = SOURCE_ROOT; }; + 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uilocale.cpp; path = ../../src/common/uilocale.cpp; sourceTree = SOURCE_ROOT; }; + A737317EDE0F3921B1412966 /* LexRegistry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRegistry.cxx; path = ../../src/stc/lexilla/lexers/LexRegistry.cxx; sourceTree = SOURCE_ROOT; }; + 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSorcus.cxx; path = ../../src/stc/lexilla/lexers/LexSorcus.cxx; sourceTree = SOURCE_ROOT; }; + DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utilsunx.cpp; path = ../../src/unix/utilsunx.cpp; sourceTree = SOURCE_ROOT; }; + 6718204F4700318E89EAC906 /* LexBullant.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBullant.cxx; path = ../../src/stc/lexilla/lexers/LexBullant.cxx; sourceTree = SOURCE_ROOT; }; + 0964797530CF3FE7B8DB6242 /* pngwtran.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwtran.c; path = ../../src/png/pngwtran.c; sourceTree = SOURCE_ROOT; }; + 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_propdlg.cpp; path = ../../src/xrc/xh_propdlg.cpp; sourceTree = SOURCE_ROOT; }; + 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCharacterSet.cxx; path = ../../src/stc/lexilla/lexlib/LexCharacterSet.cxx; sourceTree = SOURCE_ROOT; }; + 7EB95BCFA255323183A996C9 /* m_style.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_style.cpp; path = ../../src/html/m_style.cpp; sourceTree = SOURCE_ROOT; }; + 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpecman.cxx; path = ../../src/stc/lexilla/lexers/LexSpecman.cxx; sourceTree = SOURCE_ROOT; }; + D2DE67C976CF3004A8FE883A /* Accessor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Accessor.cxx; path = ../../src/stc/lexilla/lexlib/Accessor.cxx; sourceTree = SOURCE_ROOT; }; + FDB0E2D0966C3E408C4A2D3D /* infback.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = infback.c; path = ../../src/zlib/infback.c; sourceTree = SOURCE_ROOT; }; + 56653FACC7D13804A70556AD /* sckfile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckfile.cpp; path = ../../src/common/sckfile.cpp; sourceTree = SOURCE_ROOT; }; + 81708CFA21A03013ACB8DDD7 /* checkbox.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = checkbox.mm; path = ../../src/osx/cocoa/checkbox.mm; sourceTree = SOURCE_ROOT; }; 302A13BC64C238A297F4399F /* brush.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brush.cpp; path = ../../src/osx/brush.cpp; sourceTree = SOURCE_ROOT; }; - 25A81E9028793C109D868068 /* xh_timectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_timectrl.cpp; path = ../../src/xrc/xh_timectrl.cpp; sourceTree = SOURCE_ROOT; }; - 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_text.cpp; path = ../../src/xrc/xh_text.cpp; sourceTree = SOURCE_ROOT; }; - F01DDE448E4C3983ACCE67FD /* appcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appcmn.cpp; path = ../../src/common/appcmn.cpp; sourceTree = SOURCE_ROOT; }; - 7CF5C09D9A1230EEB42713E1 /* stattext_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattext_osx.cpp; path = ../../src/osx/stattext_osx.cpp; sourceTree = SOURCE_ROOT; }; - F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexJSON.cxx; path = ../../src/stc/lexilla/lexers/LexJSON.cxx; sourceTree = SOURCE_ROOT; }; - A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgdlgg.cpp; path = ../../src/generic/msgdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tokenzr.cpp; path = ../../src/common/tokenzr.cpp; sourceTree = SOURCE_ROOT; }; - 8555204EBA8930809B732842 /* accesscmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accesscmn.cpp; path = ../../src/common/accesscmn.cpp; sourceTree = SOURCE_ROOT; }; + FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextctrl.cpp; path = ../../src/richtext/richtextctrl.cpp; sourceTree = SOURCE_ROOT; }; + C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbtncmn.cpp; path = ../../src/common/spinbtncmn.cpp; sourceTree = SOURCE_ROOT; }; + 6AC666417602346EA583709E /* translation.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = translation.cpp; path = ../../src/common/translation.cpp; sourceTree = SOURCE_ROOT; }; + 789F45D14FF23E248FCFB5FA /* utils.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utils.mm; path = ../../src/osx/cocoa/utils.mm; sourceTree = SOURCE_ROOT; }; + 375FF97B202F3C359402D13E /* jdpostct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdpostct.c; path = ../../src/jpeg/jdpostct.c; sourceTree = SOURCE_ROOT; }; + 373242CD08F330208A7CF438 /* fontenumcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontenumcmn.cpp; path = ../../src/common/fontenumcmn.cpp; sourceTree = SOURCE_ROOT; }; + 0890779C662C35889A8C6C2E /* jdmerge.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmerge.c; path = ../../src/jpeg/jdmerge.c; sourceTree = SOURCE_ROOT; }; + 3088384F07C63A5DB3581656 /* tif_lzma.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_lzma.c; path = ../../src/tiff/libtiff/tif_lzma.c; sourceTree = SOURCE_ROOT; }; + D73962222F573116BE63576C /* xh_propgrid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_propgrid.cpp; path = ../../src/xrc/xh_propgrid.cpp; sourceTree = SOURCE_ROOT; }; + 741578B590AF3F2CABE615EB /* timectrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timectrlg.cpp; path = ../../src/generic/timectrlg.cpp; sourceTree = SOURCE_ROOT; }; + 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_getimage.c; path = ../../src/tiff/libtiff/tif_getimage.c; sourceTree = SOURCE_ROOT; }; + CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choicdgg.cpp; path = ../../src/generic/choicdgg.cpp; sourceTree = SOURCE_ROOT; }; + 147800BBCB80346798B35D75 /* xh_stbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_stbox.cpp; path = ../../src/xrc/xh_stbox.cpp; sourceTree = SOURCE_ROOT; }; + F52DCBC0442233738B39138E /* CaseFolder.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CaseFolder.cxx; path = ../../src/stc/scintilla/src/CaseFolder.cxx; sourceTree = SOURCE_ROOT; }; + C64705CE9398316D87BAB4DC /* logg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = logg.cpp; path = ../../src/generic/logg.cpp; sourceTree = SOURCE_ROOT; }; + 14EF4B028AD63B4A885D29A1 /* srchctrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = srchctrl.mm; path = ../../src/osx/cocoa/srchctrl.mm; sourceTree = SOURCE_ROOT; }; + 2718D06670953933B897B0D8 /* webview_chromium.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webview_chromium.cpp; path = ../../src/common/webview_chromium.cpp; sourceTree = SOURCE_ROOT; }; + D0817D6A1AF83608B050EBC3 /* fontmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontmap.cpp; path = ../../src/common/fontmap.cpp; sourceTree = SOURCE_ROOT; }; + 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbuttn_osx.cpp; path = ../../src/osx/bmpbuttn_osx.cpp; sourceTree = SOURCE_ROOT; }; + 346C68F0CCD23823B78267F0 /* tif_lzw.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_lzw.c; path = ../../src/tiff/libtiff/tif_lzw.c; sourceTree = SOURCE_ROOT; }; + A1276C0E5D48337489DEE8DF /* LexErlang.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexErlang.cxx; path = ../../src/stc/lexilla/lexers/LexErlang.cxx; sourceTree = SOURCE_ROOT; }; + 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combocmn.cpp; path = ../../src/common/combocmn.cpp; sourceTree = SOURCE_ROOT; }; + 58EFF24DE2E737CA8A164F5C /* LexEScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEScript.cxx; path = ../../src/stc/lexilla/lexers/LexEScript.cxx; sourceTree = SOURCE_ROOT; }; + 082CA018FB883999839C1DCE /* m_tables.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_tables.cpp; path = ../../src/html/m_tables.cpp; sourceTree = SOURCE_ROOT; }; + 95B4B2890C3A372DAB8DC7BA /* datectrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datectrl_osx.cpp; path = ../../src/osx/datectrl_osx.cpp; sourceTree = SOURCE_ROOT; }; + AB466912FDA23F8B87A00A3C /* threadpsx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = threadpsx.cpp; path = ../../src/unix/threadpsx.cpp; sourceTree = SOURCE_ROOT; }; + 5219A792C6A736F193D4A82F /* ContractionState.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ContractionState.cxx; path = ../../src/stc/scintilla/src/ContractionState.cxx; sourceTree = SOURCE_ROOT; }; + C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextprint.cpp; path = ../../src/richtext/richtextprint.cpp; sourceTree = SOURCE_ROOT; }; + 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpcboxcmn.cpp; path = ../../src/common/bmpcboxcmn.cpp; sourceTree = SOURCE_ROOT; }; + 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpfrm.cpp; path = ../../src/html/helpfrm.cpp; sourceTree = SOURCE_ROOT; }; + 4CB467F9898C3952A68D988B /* zutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = zutil.c; path = ../../src/zlib/zutil.c; sourceTree = SOURCE_ROOT; }; + D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_cmdlinkbn.cpp; path = ../../src/xrc/xh_cmdlinkbn.cpp; sourceTree = SOURCE_ROOT; }; + C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabmdi.cpp; path = ../../src/aui/tabmdi.cpp; sourceTree = SOURCE_ROOT; }; + C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdata.cpp; path = ../../src/common/fontdata.cpp; sourceTree = SOURCE_ROOT; }; + 86884BC843F6337EABF744BB /* jdapimin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapimin.c; path = ../../src/jpeg/jdapimin.c; sourceTree = SOURCE_ROOT; }; + EEA0945B20913754A54D0FD9 /* dcpsg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcpsg.cpp; path = ../../src/generic/dcpsg.cpp; sourceTree = SOURCE_ROOT; }; + 98A7F0605AAC3D28A8C9F253 /* gauge.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = gauge.mm; path = ../../src/osx/cocoa/gauge.mm; sourceTree = SOURCE_ROOT; }; + 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgridiface.cpp; path = ../../src/propgrid/propgridiface.cpp; sourceTree = SOURCE_ROOT; }; + DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statline_osx.cpp; path = ../../src/osx/statline_osx.cpp; sourceTree = SOURCE_ROOT; }; + 573D0D15EE9E3E629D61EA65 /* jaricom.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jaricom.c; path = ../../src/jpeg/jaricom.c; sourceTree = SOURCE_ROOT; }; + C133B838193A35ABBB803151 /* ViewStyle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewStyle.cxx; path = ../../src/stc/scintilla/src/ViewStyle.cxx; sourceTree = SOURCE_ROOT; }; + CCF7564A2B733F759AA8496B /* jdinput.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdinput.c; path = ../../src/jpeg/jdinput.c; sourceTree = SOURCE_ROOT; }; + FADE850169F7347F83FE1499 /* xh_statbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_statbar.cpp; path = ../../src/xrc/xh_statbar.cpp; sourceTree = SOURCE_ROOT; }; + 2F41EDEB298538CC86FF6DC1 /* jcparam.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcparam.c; path = ../../src/jpeg/jcparam.c; sourceTree = SOURCE_ROOT; }; + 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_codec.c; path = ../../src/tiff/libtiff/tif_codec.c; sourceTree = SOURCE_ROOT; }; + 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlrsall.cpp; path = ../../src/xrc/xmlrsall.cpp; sourceTree = SOURCE_ROOT; }; + 888BD97139C936679691FF34 /* hash.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cpp; path = ../../src/common/hash.cpp; sourceTree = SOURCE_ROOT; }; + 0080254545B9383ABDF2045C /* xh_odcombo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_odcombo.cpp; path = ../../src/xrc/xh_odcombo.cpp; sourceTree = SOURCE_ROOT; }; + FE3B47058A723243A285594D /* LexMPT.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMPT.cxx; path = ../../src/stc/lexilla/lexers/LexMPT.cxx; sourceTree = SOURCE_ROOT; }; + 38CEA4A3579331EF808B8363 /* fontdlgosx.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = fontdlgosx.mm; path = ../../src/osx/carbon/fontdlgosx.mm; sourceTree = SOURCE_ROOT; }; + 4FC2F076657431458896115A /* checkboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checkboxcmn.cpp; path = ../../src/common/checkboxcmn.cpp; sourceTree = SOURCE_ROOT; }; + 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerShell.cxx; path = ../../src/stc/lexilla/lexers/LexPowerShell.cxx; sourceTree = SOURCE_ROOT; }; + 93D07403FCA530D7A9FD2917 /* jfdctflt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctflt.c; path = ../../src/jpeg/jfdctflt.c; sourceTree = SOURCE_ROOT; }; + BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filename.cpp; path = ../../src/common/filename.cpp; sourceTree = SOURCE_ROOT; }; + ED19EF377E653F71B1876259 /* jdmaster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmaster.c; path = ../../src/jpeg/jdmaster.c; sourceTree = SOURCE_ROOT; }; + 1C4762898E5330C28651EE73 /* graphics.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphics.cpp; path = ../../src/osx/carbon/graphics.cpp; sourceTree = SOURCE_ROOT; }; + DAAED71A534135A9A61612A6 /* colordlgosx.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = colordlgosx.mm; path = ../../src/osx/carbon/colordlgosx.mm; sourceTree = SOURCE_ROOT; }; + 69A6CAF721E53E83B4820DE6 /* pngwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwrite.c; path = ../../src/png/pngwrite.c; sourceTree = SOURCE_ROOT; }; + C562D5885AFF3E15837325CE /* xpmdecod.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xpmdecod.cpp; path = ../../src/common/xpmdecod.cpp; sourceTree = SOURCE_ROOT; }; + 7BA6ADD758693BD180D3275B /* treebase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treebase.cpp; path = ../../src/common/treebase.cpp; sourceTree = SOURCE_ROOT; }; + 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_ord2utf.c; path = ../../3rdparty/pcre/src/pcre2_ord2utf.c; sourceTree = SOURCE_ROOT; }; + D037EA567C253DEEA17E822B /* mousemanager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mousemanager.cpp; path = ../../src/common/mousemanager.cpp; sourceTree = SOURCE_ROOT; }; + 0E8036758CEC3296B555E4DF /* notebook.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = notebook.mm; path = ../../src/osx/cocoa/notebook.mm; sourceTree = SOURCE_ROOT; }; + B0665A40F3FC3F218074C63C /* artmac.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artmac.cpp; path = ../../src/osx/artmac.cpp; sourceTree = SOURCE_ROOT; }; + 7273A7E255323EB3B391D997 /* headerctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headerctrlg.cpp; path = ../../src/generic/headerctrlg.cpp; sourceTree = SOURCE_ROOT; }; + B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headercolcmn.cpp; path = ../../src/common/headercolcmn.cpp; sourceTree = SOURCE_ROOT; }; + CF4F4F5211933057824B5621 /* button_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = button_osx.cpp; path = ../../src/osx/button_osx.cpp; sourceTree = SOURCE_ROOT; }; + 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colourdata.cpp; path = ../../src/common/colourdata.cpp; sourceTree = SOURCE_ROOT; }; + 2A4D36DE66EC3EB09E883D6B /* taskbar.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = taskbar.mm; path = ../../src/osx/cocoa/taskbar.mm; sourceTree = SOURCE_ROOT; }; + 01BA6D45FE4C381493EB4372 /* validate.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validate.cpp; path = ../../src/common/validate.cpp; sourceTree = SOURCE_ROOT; }; + 75D0C937F2A03ADA8581A2BB /* arcall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arcall.cpp; path = ../../src/common/arcall.cpp; sourceTree = SOURCE_ROOT; }; + FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMMIXAL.cxx; path = ../../src/stc/lexilla/lexers/LexMMIXAL.cxx; sourceTree = SOURCE_ROOT; }; + 4B3B8AD0120F3EA6BF5B0AE0 /* LexCaml.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCaml.cxx; path = ../../src/stc/lexilla/lexers/LexCaml.cxx; sourceTree = SOURCE_ROOT; }; + 95E2B80B2D7033808504DA8D /* utilsexc_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utilsexc_cf.cpp; path = ../../src/osx/core/utilsexc_cf.cpp; sourceTree = SOURCE_ROOT; }; + 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHaskell.cxx; path = ../../src/stc/lexilla/lexers/LexHaskell.cxx; sourceTree = SOURCE_ROOT; }; + A5EE0B8985443BDCB36F781F /* m_layout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_layout.cpp; path = ../../src/html/m_layout.cpp; sourceTree = SOURCE_ROOT; }; + AF9EE701DD653E2299293E5F /* pngwio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwio.c; path = ../../src/png/pngwio.c; sourceTree = SOURCE_ROOT; }; + 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hyperlnkcmn.cpp; path = ../../src/common/hyperlnkcmn.cpp; sourceTree = SOURCE_ROOT; }; + 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textcmn.cpp; path = ../../src/common/textcmn.cpp; sourceTree = SOURCE_ROOT; }; + 52FE1599218730CC99A3F801 /* m_dflist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_dflist.cpp; path = ../../src/html/m_dflist.cpp; sourceTree = SOURCE_ROOT; }; + 724927B0045F3CC0884878BB /* radiobtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobtncmn.cpp; path = ../../src/common/radiobtncmn.cpp; sourceTree = SOURCE_ROOT; }; + 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexJulia.cxx; path = ../../src/stc/lexilla/lexers/LexJulia.cxx; sourceTree = SOURCE_ROOT; }; + 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utilscocoa.mm; path = ../../src/osx/carbon/utilscocoa.mm; sourceTree = SOURCE_ROOT; }; 66FDA882451239EA8DF2E0B5 /* tif_luv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_luv.c; path = ../../src/tiff/libtiff/tif_luv.c; sourceTree = SOURCE_ROOT; }; - A9B2316B32653DA0939A372D /* sound_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound_osx.cpp; path = ../../src/osx/sound_osx.cpp; sourceTree = SOURCE_ROOT; }; - 910D00F1C9143C6D85C24E7C /* LexDMIS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMIS.cxx; path = ../../src/stc/lexilla/lexers/LexDMIS.cxx; sourceTree = SOURCE_ROOT; }; - C55AF552EE6931E8BFF7281B /* xh_aui.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_aui.cpp; path = ../../src/xrc/xh_aui.cpp; sourceTree = SOURCE_ROOT; }; + 374E341C8703367686DEDE93 /* jmemnobs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemnobs.c; path = ../../src/jpeg/jmemnobs.c; sourceTree = SOURCE_ROOT; }; + FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridcmn.cpp; path = ../../src/common/gridcmn.cpp; sourceTree = SOURCE_ROOT; }; + F263022F3FEA3F75895B644D /* filesys.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filesys.cpp; path = ../../src/common/filesys.cpp; sourceTree = SOURCE_ROOT; }; + 31EFBD7D10003A5187348B35 /* tooltip.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = tooltip.mm; path = ../../src/osx/cocoa/tooltip.mm; sourceTree = SOURCE_ROOT; }; + A46D50BEBF523B3F88831086 /* LexAsn1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsn1.cxx; path = ../../src/stc/lexilla/lexers/LexAsn1.cxx; sourceTree = SOURCE_ROOT; }; + FB46BC22F6B23909A938C561 /* regex.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regex.cpp; path = ../../src/common/regex.cpp; sourceTree = SOURCE_ROOT; }; + 18044326B5B13A98A49732DD /* fontdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdlg.cpp; path = ../../src/osx/carbon/fontdlg.cpp; sourceTree = SOURCE_ROOT; }; + 3C131F7BF8A83960ACB26242 /* jidctflt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctflt.c; path = ../../src/jpeg/jidctflt.c; sourceTree = SOURCE_ROOT; }; + 63867276260C3F4A980E83D8 /* rgncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rgncmn.cpp; path = ../../src/common/rgncmn.cpp; sourceTree = SOURCE_ROOT; }; + 607EF0043E723B7B9BE101EA /* wxprintf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wxprintf.cpp; path = ../../src/common/wxprintf.cpp; sourceTree = SOURCE_ROOT; }; + 95B4EDF38F8A3E5EBAFF560F /* trees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = trees.c; path = ../../src/zlib/trees.c; sourceTree = SOURCE_ROOT; }; + 0401B7302088357BB6B7F16F /* timerimpl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timerimpl.cpp; path = ../../src/common/timerimpl.cpp; sourceTree = SOURCE_ROOT; }; + AC62806DE67F33E18C386D4F /* LexDMAP.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMAP.cxx; path = ../../src/stc/lexilla/lexers/LexDMAP.cxx; sourceTree = SOURCE_ROOT; }; + EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dircmn.cpp; path = ../../src/common/dircmn.cpp; sourceTree = SOURCE_ROOT; }; + 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ScintillaWX.cpp; path = ../../src/stc/ScintillaWX.cpp; sourceTree = SOURCE_ROOT; }; + FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xtistrm.cpp; path = ../../src/common/xtistrm.cpp; sourceTree = SOURCE_ROOT; }; + B5370A676AAC32419D7FDD87 /* inflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inflate.c; path = ../../src/zlib/inflate.c; sourceTree = SOURCE_ROOT; }; + 30FD1048328234E59D319863 /* tif_fax3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_fax3.c; path = ../../src/tiff/libtiff/tif_fax3.c; sourceTree = SOURCE_ROOT; }; + 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerBase.cxx; path = ../../src/stc/lexilla/lexlib/LexerBase.cxx; sourceTree = SOURCE_ROOT; }; 757B31FCCA1F381C95B30DF8 /* app.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cpp; path = ../../src/osx/carbon/app.cpp; sourceTree = SOURCE_ROOT; }; - 0BF1F491B8A8376E8E2E8182 /* cursor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cursor.cpp; path = ../../src/osx/carbon/cursor.cpp; sourceTree = SOURCE_ROOT; }; - BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbar.cpp; path = ../../src/ribbon/toolbar.cpp; sourceTree = SOURCE_ROOT; }; - D4A23A8BC7373D4BBD72851D /* apptraits.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = apptraits.cpp; path = ../../src/unix/apptraits.cpp; sourceTree = SOURCE_ROOT; }; + 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_text.cpp; path = ../../src/xrc/xh_text.cpp; sourceTree = SOURCE_ROOT; }; + 7A24E9101688368296C21EBE /* gzclose.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzclose.c; path = ../../src/zlib/gzclose.c; sourceTree = SOURCE_ROOT; }; + 530DC2E26BF2313E8702AD43 /* popupwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupwin.cpp; path = ../../src/osx/carbon/popupwin.cpp; sourceTree = SOURCE_ROOT; }; + 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapimin.c; path = ../../src/jpeg/jcapimin.c; sourceTree = SOURCE_ROOT; }; + 04082EC1C91334379425802D /* LexConf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexConf.cxx; path = ../../src/stc/lexilla/lexers/LexConf.cxx; sourceTree = SOURCE_ROOT; }; + F84F0DB790A23D92A193D2B4 /* http.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = http.cpp; path = ../../src/common/http.cpp; sourceTree = SOURCE_ROOT; }; + 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_simplebook.cpp; path = ../../src/xrc/xh_simplebook.cpp; sourceTree = SOURCE_ROOT; }; + CBD7B44E33373BCCB60FC11F /* combog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combog.cpp; path = ../../src/generic/combog.cpp; sourceTree = SOURCE_ROOT; }; + C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcher_kqueue.cpp; path = ../../src/unix/fswatcher_kqueue.cpp; sourceTree = SOURCE_ROOT; }; + A5BBC1E494D33D028CA547FF /* jddctmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jddctmgr.c; path = ../../src/jpeg/jddctmgr.c; sourceTree = SOURCE_ROOT; }; + 2F94CF171F4532B89FECF475 /* busyinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = busyinfo.cpp; path = ../../src/generic/busyinfo.cpp; sourceTree = SOURCE_ROOT; }; 6BD8DAB407D231EFA5B2CAE5 /* numformatter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numformatter.cpp; path = ../../src/common/numformatter.cpp; sourceTree = SOURCE_ROOT; }; - 81708CFA21A03013ACB8DDD7 /* checkbox.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = checkbox.mm; path = ../../src/osx/cocoa/checkbox.mm; sourceTree = SOURCE_ROOT; }; - A5617D10CB7136EC9A4194EF /* display.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = display.cpp; path = ../../src/osx/core/display.cpp; sourceTree = SOURCE_ROOT; }; - 23FC98E2305230E2990471E3 /* wxcrt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wxcrt.cpp; path = ../../src/common/wxcrt.cpp; sourceTree = SOURCE_ROOT; }; - F0905A1EBD653F6D82395602 /* xh_combo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_combo.cpp; path = ../../src/xrc/xh_combo.cpp; sourceTree = SOURCE_ROOT; }; - DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcsvg.cpp; path = ../../src/common/dcsvg.cpp; sourceTree = SOURCE_ROOT; }; - 3026D20A03E53F1DB40FB35A /* pcre2_context.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_context.c; path = ../../3rdparty/pcre/src/pcre2_context.c; sourceTree = SOURCE_ROOT; }; - 12363D1F50FE301DAEE7F04A /* control.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = control.cpp; path = ../../src/ribbon/control.cpp; sourceTree = SOURCE_ROOT; }; - 2ACC8667173D3AB09F6214F5 /* sound.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cpp; path = ../../src/osx/carbon/sound.cpp; sourceTree = SOURCE_ROOT; }; - 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueString.cxx; path = ../../src/stc/scintilla/src/UniqueString.cxx; sourceTree = SOURCE_ROOT; }; - BDADEB1DA6433E52972C8934 /* pcre2_compile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_compile.c; path = ../../3rdparty/pcre/src/pcre2_compile.c; sourceTree = SOURCE_ROOT; }; - 1BC0322549563787A21CE8F1 /* LexNsis.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNsis.cxx; path = ../../src/stc/lexilla/lexers/LexNsis.cxx; sourceTree = SOURCE_ROOT; }; - AB634FD597793A74B3B3AA7F /* docview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docview.cpp; path = ../../src/common/docview.cpp; sourceTree = SOURCE_ROOT; }; - 87D973CA8D673267BD0844D3 /* paper.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paper.cpp; path = ../../src/common/paper.cpp; sourceTree = SOURCE_ROOT; }; - 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtexthtml.cpp; path = ../../src/richtext/richtexthtml.cpp; sourceTree = SOURCE_ROOT; }; - 3CF73F49AEC238C99CE89845 /* deflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = deflate.c; path = ../../src/zlib/deflate.c; sourceTree = SOURCE_ROOT; }; - A6636144CDE83E8E85270FAF /* hashmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hashmap.cpp; path = ../../src/common/hashmap.cpp; sourceTree = SOURCE_ROOT; }; - 67D76B026121359F9B22F8B0 /* languageinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = languageinfo.cpp; path = ../../src/common/languageinfo.cpp; sourceTree = SOURCE_ROOT; }; - A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_styledtextctrl.cpp; path = ../../src/xrc/xh_styledtextctrl.cpp; sourceTree = SOURCE_ROOT; }; - B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_hyperlink.cpp; path = ../../src/xrc/xh_hyperlink.cpp; sourceTree = SOURCE_ROOT; }; - 9D1F14339D1C331087650931 /* colour.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colour.cpp; path = ../../src/osx/core/colour.cpp; sourceTree = SOURCE_ROOT; }; - F7332A03D93D3DABB050615D /* dir.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dir.cpp; path = ../../src/unix/dir.cpp; sourceTree = SOURCE_ROOT; }; - 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharClassify.cxx; path = ../../src/stc/scintilla/src/CharClassify.cxx; sourceTree = SOURCE_ROOT; }; - EA2520F427493A22A70A5C09 /* stackwalk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stackwalk.cpp; path = ../../src/unix/stackwalk.cpp; sourceTree = SOURCE_ROOT; }; - 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipbrd.cpp; path = ../../src/osx/carbon/clipbrd.cpp; sourceTree = SOURCE_ROOT; }; - 7013DB195D023C31ADE68546 /* crc32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = crc32.c; path = ../../src/zlib/crc32.c; sourceTree = SOURCE_ROOT; }; - 4C4649974D8B3A109D1BF145 /* art_internal.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_internal.cpp; path = ../../src/ribbon/art_internal.cpp; sourceTree = SOURCE_ROOT; }; - 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collheaderctrlg.cpp; path = ../../src/generic/collheaderctrlg.cpp; sourceTree = SOURCE_ROOT; }; - AA234ACC79743DA797601AA6 /* jcarith.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcarith.c; path = ../../src/jpeg/jcarith.c; sourceTree = SOURCE_ROOT; }; - 6A82EDCFFBAC30098B238957 /* caret.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = caret.cpp; path = ../../src/generic/caret.cpp; sourceTree = SOURCE_ROOT; }; - D9446ADCCDCD32E6BCF95599 /* notifmsg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = notifmsg.mm; path = ../../src/osx/cocoa/notifmsg.mm; sourceTree = SOURCE_ROOT; }; - 57E4784E521339BEB971D81D /* LexAVS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVS.cxx; path = ../../src/stc/lexilla/lexers/LexAVS.cxx; sourceTree = SOURCE_ROOT; }; - B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headercolcmn.cpp; path = ../../src/common/headercolcmn.cpp; sourceTree = SOURCE_ROOT; }; - B890199A37723EFD86C0ADA5 /* quantize.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = quantize.cpp; path = ../../src/common/quantize.cpp; sourceTree = SOURCE_ROOT; }; - 5F63BF9430CE371DA04AC900 /* textentrycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textentrycmn.cpp; path = ../../src/common/textentrycmn.cpp; sourceTree = SOURCE_ROOT; }; - 743EF8DB16CE371DA5C66623 /* statline.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = statline.mm; path = ../../src/osx/cocoa/statline.mm; sourceTree = SOURCE_ROOT; }; - DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerModule.cxx; path = ../../src/stc/lexilla/lexlib/LexerModule.cxx; sourceTree = SOURCE_ROOT; }; - ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docmdi.cpp; path = ../../src/common/docmdi.cpp; sourceTree = SOURCE_ROOT; }; - D922063B2F2536629EEEAAF0 /* popupcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupcmn.cpp; path = ../../src/common/popupcmn.cpp; sourceTree = SOURCE_ROOT; }; - BB7661E9E09A397790ED9545 /* sockunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sockunix.cpp; path = ../../src/unix/sockunix.cpp; sourceTree = SOURCE_ROOT; }; - EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_wizrd.cpp; path = ../../src/xrc/xh_wizrd.cpp; sourceTree = SOURCE_ROOT; }; - 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bttn.cpp; path = ../../src/xrc/xh_bttn.cpp; sourceTree = SOURCE_ROOT; }; - 513033E36E643593AC305B3D /* uncompr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = uncompr.c; path = ../../src/zlib/uncompr.c; sourceTree = SOURCE_ROOT; }; - 5279968877003A8BB8279765 /* webrequest_curl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webrequest_curl.cpp; path = ../../src/common/webrequest_curl.cpp; sourceTree = SOURCE_ROOT; }; - C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCL.cxx; path = ../../src/stc/lexilla/lexers/LexTCL.cxx; sourceTree = SOURCE_ROOT; }; - 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMaxima.cxx; path = ../../src/stc/lexilla/lexers/LexMaxima.cxx; sourceTree = SOURCE_ROOT; }; - 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlrsall.cpp; path = ../../src/xrc/xmlrsall.cpp; sourceTree = SOURCE_ROOT; }; - 2C904B4BA8273355869812B2 /* clntdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clntdata.cpp; path = ../../src/common/clntdata.cpp; sourceTree = SOURCE_ROOT; }; - 616466F521DB3ECAB304289F /* xh_dataview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_dataview.cpp; path = ../../src/xrc/xh_dataview.cpp; sourceTree = SOURCE_ROOT; }; - 5612DBC4125B379DA2B28824 /* buttonbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = buttonbar.cpp; path = ../../src/ribbon/buttonbar.cpp; sourceTree = SOURCE_ROOT; }; - EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webrequest_urlsession.mm; path = ../../src/osx/webrequest_urlsession.mm; sourceTree = SOURCE_ROOT; }; - E89AC104BF4F33A083F8B382 /* jccoefct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccoefct.c; path = ../../src/jpeg/jccoefct.c; sourceTree = SOURCE_ROOT; }; - 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = epolldispatcher.cpp; path = ../../src/unix/epolldispatcher.cpp; sourceTree = SOURCE_ROOT; }; - AF9EE701DD653E2299293E5F /* pngwio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwio.c; path = ../../src/png/pngwio.c; sourceTree = SOURCE_ROOT; }; 160EB9744CB63A0B81DC651F /* hid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hid.cpp; path = ../../src/osx/core/hid.cpp; sourceTree = SOURCE_ROOT; }; - FA9DD56E399533A5BE7AAD16 /* jdarith.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdarith.c; path = ../../src/jpeg/jdarith.c; sourceTree = SOURCE_ROOT; }; - B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wakeuppipe.cpp; path = ../../src/unix/wakeuppipe.cpp; sourceTree = SOURCE_ROOT; }; - A046179831F63824A67B509B /* preferencescmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preferencescmn.cpp; path = ../../src/common/preferencescmn.cpp; sourceTree = SOURCE_ROOT; }; - D037EA567C253DEEA17E822B /* mousemanager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mousemanager.cpp; path = ../../src/common/mousemanager.cpp; sourceTree = SOURCE_ROOT; }; - 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = styleparams.cpp; path = ../../src/html/styleparams.cpp; sourceTree = SOURCE_ROOT; }; - 1C4762898E5330C28651EE73 /* graphics.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphics.cpp; path = ../../src/osx/carbon/graphics.cpp; sourceTree = SOURCE_ROOT; }; - 552757A901E732CAA8E3F16D /* list.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = list.cpp; path = ../../src/common/list.cpp; sourceTree = SOURCE_ROOT; }; - 0EEAD9C3E180305D8899441E /* strvararg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strvararg.cpp; path = ../../src/common/strvararg.cpp; sourceTree = SOURCE_ROOT; }; - 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = debugrpt.cpp; path = ../../src/common/debugrpt.cpp; sourceTree = SOURCE_ROOT; }; - D0817D6A1AF83608B050EBC3 /* fontmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontmap.cpp; path = ../../src/common/fontmap.cpp; sourceTree = SOURCE_ROOT; }; - 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgridpagestate.cpp; path = ../../src/propgrid/propgridpagestate.cpp; sourceTree = SOURCE_ROOT; }; - 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSQL.cxx; path = ../../src/stc/lexilla/lexers/LexSQL.cxx; sourceTree = SOURCE_ROOT; }; - 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = odcombo.cpp; path = ../../src/generic/odcombo.cpp; sourceTree = SOURCE_ROOT; }; - C20E46A504113C899B9DD9B7 /* props.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = props.cpp; path = ../../src/propgrid/props.cpp; sourceTree = SOURCE_ROOT; }; - 0B0DC125AFFC322E8E496262 /* dirdlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = dirdlg.mm; path = ../../src/osx/cocoa/dirdlg.mm; sourceTree = SOURCE_ROOT; }; - 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numdlgg.cpp; path = ../../src/generic/numdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 374E341C8703367686DEDE93 /* jmemnobs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemnobs.c; path = ../../src/jpeg/jmemnobs.c; sourceTree = SOURCE_ROOT; }; - 66426B63AA3E3A279936C034 /* grideditors.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grideditors.cpp; path = ../../src/generic/grideditors.cpp; sourceTree = SOURCE_ROOT; }; - 58E7C516E2453A269280A404 /* modalhook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modalhook.cpp; path = ../../src/common/modalhook.cpp; sourceTree = SOURCE_ROOT; }; - 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapistd.c; path = ../../src/jpeg/jdapistd.c; sourceTree = SOURCE_ROOT; }; - 998D611109EC33A9A6A11C5A /* gdicmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdicmn.cpp; path = ../../src/common/gdicmn.cpp; sourceTree = SOURCE_ROOT; }; - D87406BCF3E833369E12D89A /* LexHTML.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHTML.cxx; path = ../../src/stc/lexilla/lexers/LexHTML.cxx; sourceTree = SOURCE_ROOT; }; - DE8701E1CF2B352B945C17E5 /* valtext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valtext.cpp; path = ../../src/common/valtext.cpp; sourceTree = SOURCE_ROOT; }; - 1731A6096BFC3A468AB4755A /* tif_open.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_open.c; path = ../../src/tiff/libtiff/tif_open.c; sourceTree = SOURCE_ROOT; }; - F52DCBC0442233738B39138E /* CaseFolder.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CaseFolder.cxx; path = ../../src/stc/scintilla/src/CaseFolder.cxx; sourceTree = SOURCE_ROOT; }; - 271B4B77622B3411A7BF6634 /* dataobj.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dataobj.cpp; path = ../../src/osx/carbon/dataobj.cpp; sourceTree = SOURCE_ROOT; }; - 3716DA7B0C79360CBA26A71E /* tif_webp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_webp.c; path = ../../src/tiff/libtiff/tif_webp.c; sourceTree = SOURCE_ROOT; }; - 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = aboutdlgg.cpp; path = ../../src/generic/aboutdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 018B15DE6F3A3D49B9CDE9DE /* hidjoystick.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hidjoystick.cpp; path = ../../src/osx/core/hidjoystick.cpp; sourceTree = SOURCE_ROOT; }; - 66C21CA37BF63893887FD91B /* menu_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menu_osx.cpp; path = ../../src/osx/menu_osx.cpp; sourceTree = SOURCE_ROOT; }; - EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filedlgg.cpp; path = ../../src/generic/filedlgg.cpp; sourceTree = SOURCE_ROOT; }; - 12363D1F50FE301DAEE7F04B /* control.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = control.cpp; path = ../../src/osx/carbon/control.cpp; sourceTree = SOURCE_ROOT; }; - D73962222F573116BE63576C /* xh_propgrid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_propgrid.cpp; path = ../../src/xrc/xh_propgrid.cpp; sourceTree = SOURCE_ROOT; }; - B233180893DB3328AF4847DA /* notifmsgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notifmsgcmn.cpp; path = ../../src/common/notifmsgcmn.cpp; sourceTree = SOURCE_ROOT; }; - 76337016F2CA3C85831702E6 /* grid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grid.cpp; path = ../../src/generic/grid.cpp; sourceTree = SOURCE_ROOT; }; - 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gifdecod.cpp; path = ../../src/common/gifdecod.cpp; sourceTree = SOURCE_ROOT; }; + B35DA585CFDD32468868E892 /* process.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cpp; path = ../../src/common/process.cpp; sourceTree = SOURCE_ROOT; }; + 70E9B2C076673C87B4218A01 /* panelcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = panelcmn.cpp; path = ../../src/common/panelcmn.cpp; sourceTree = SOURCE_ROOT; }; + 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNull.cxx; path = ../../src/stc/lexilla/lexers/LexNull.cxx; sourceTree = SOURCE_ROOT; }; + F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFlagship.cxx; path = ../../src/stc/lexilla/lexers/LexFlagship.cxx; sourceTree = SOURCE_ROOT; }; + 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gaugecmn.cpp; path = ../../src/common/gaugecmn.cpp; sourceTree = SOURCE_ROOT; }; B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_ribbon.cpp; path = ../../src/xrc/xh_ribbon.cpp; sourceTree = SOURCE_ROOT; }; - 2718D06670953933B897B0D8 /* webview_chromium.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webview_chromium.cpp; path = ../../src/common/webview_chromium.cpp; sourceTree = SOURCE_ROOT; }; - B9B5BC858CCF3477895D2786 /* zstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zstream.cpp; path = ../../src/common/zstream.cpp; sourceTree = SOURCE_ROOT; }; - 7020ADB5D3E0375E875B418B /* LexA68k.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexA68k.cxx; path = ../../src/stc/lexilla/lexers/LexA68k.cxx; sourceTree = SOURCE_ROOT; }; - FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextctrl.cpp; path = ../../src/richtext/richtextctrl.cpp; sourceTree = SOURCE_ROOT; }; - 65C47DFD6E243724A83603F3 /* libwx_osx_cocoa.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libwx_osx_cocoa.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; - D215A0D67563350CB4EECB06 /* slider_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slider_osx.cpp; path = ../../src/osx/slider_osx.cpp; sourceTree = SOURCE_ROOT; }; - 5FEECFD764E037288CE94FEB /* webview_webkit.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webview_webkit.mm; path = ../../src/osx/webview_webkit.mm; sourceTree = SOURCE_ROOT; }; + BD88495AF72531A28D2201D0 /* tif_tile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_tile.c; path = ../../src/tiff/libtiff/tif_tile.c; sourceTree = SOURCE_ROOT; }; + 78D7866F95C73A28BB540606 /* LexBash.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBash.cxx; path = ../../src/stc/lexilla/lexers/LexBash.cxx; sourceTree = SOURCE_ROOT; }; + 9C87B071E3593A889704F512 /* statbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbar.cpp; path = ../../src/common/statbar.cpp; sourceTree = SOURCE_ROOT; }; + F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMetapost.cxx; path = ../../src/stc/lexilla/lexers/LexMetapost.cxx; sourceTree = SOURCE_ROOT; }; + 88F2BA2F0598342186A484B5 /* fs_arc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_arc.cpp; path = ../../src/common/fs_arc.cpp; sourceTree = SOURCE_ROOT; }; + ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ffile.cpp; path = ../../src/common/ffile.cpp; sourceTree = SOURCE_ROOT; }; + E08A51FA8D8A361681B07295 /* glcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glcmn.cpp; path = ../../src/common/glcmn.cpp; sourceTree = SOURCE_ROOT; }; + 9988CBB0772A3539970162FA /* arttango.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arttango.cpp; path = ../../src/common/arttango.cpp; sourceTree = SOURCE_ROOT; }; + 22D9626646773CED82449D5D /* persist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = persist.cpp; path = ../../src/common/persist.cpp; sourceTree = SOURCE_ROOT; }; + AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagtiff.cpp; path = ../../src/common/imagtiff.cpp; sourceTree = SOURCE_ROOT; }; + 9D1F14339D1C331087650931 /* colour.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colour.cpp; path = ../../src/osx/core/colour.cpp; sourceTree = SOURCE_ROOT; }; + FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexKVIrc.cxx; path = ../../src/stc/lexilla/lexers/LexKVIrc.cxx; sourceTree = SOURCE_ROOT; }; + A6636144CDE83E8E85270FAF /* hashmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hashmap.cpp; path = ../../src/common/hashmap.cpp; sourceTree = SOURCE_ROOT; }; + 84758329F2163F00A9C005DF /* collpaneg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collpaneg.cpp; path = ../../src/generic/collpaneg.cpp; sourceTree = SOURCE_ROOT; }; + BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_activityindicator.cpp; path = ../../src/xrc/xh_activityindicator.cpp; sourceTree = SOURCE_ROOT; }; + 9CC7C6FFD67233788EEDFC5E /* LexYAML.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexYAML.cxx; path = ../../src/stc/lexilla/lexers/LexYAML.cxx; sourceTree = SOURCE_ROOT; }; + DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unichar.cpp; path = ../../src/common/unichar.cpp; sourceTree = SOURCE_ROOT; }; + 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checkbox_osx.cpp; path = ../../src/osx/checkbox_osx.cpp; sourceTree = SOURCE_ROOT; }; + 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = msgdlg.mm; path = ../../src/osx/cocoa/msgdlg.mm; sourceTree = SOURCE_ROOT; }; + 25E03E349FC13E4A9428B94E /* pcre2_error.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_error.c; path = ../../3rdparty/pcre/src/pcre2_error.c; sourceTree = SOURCE_ROOT; }; + 58421C141C9E31C6A7A3C183 /* filefn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filefn.cpp; path = ../../src/common/filefn.cpp; sourceTree = SOURCE_ROOT; }; + 2F4CDF9048EC36788619769D /* pcre2_script_run.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_script_run.c; path = ../../3rdparty/pcre/src/pcre2_script_run.c; sourceTree = SOURCE_ROOT; }; EE959EC7BFDD3A628E856404 /* anidecod.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anidecod.cpp; path = ../../src/common/anidecod.cpp; sourceTree = SOURCE_ROOT; }; - 9D6B0D32537D35069C7E053F /* inftrees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inftrees.c; path = ../../src/zlib/inftrees.c; sourceTree = SOURCE_ROOT; }; - 5F3D473DC5123EDAB767045C /* datavgen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datavgen.cpp; path = ../../src/generic/datavgen.cpp; sourceTree = SOURCE_ROOT; }; - E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = commandlinkbuttong.cpp; path = ../../src/generic/commandlinkbuttong.cpp; sourceTree = SOURCE_ROOT; }; - 99E5B6DD00273D978C241BCA /* radiobut.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = radiobut.mm; path = ../../src/osx/cocoa/radiobut.mm; sourceTree = SOURCE_ROOT; }; - 274A156457C63EC5801029C2 /* CaseConvert.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CaseConvert.cxx; path = ../../src/stc/scintilla/src/CaseConvert.cxx; sourceTree = SOURCE_ROOT; }; - 59C6B9849FF6325E890942EF /* xmlrole.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = xmlrole.c; path = ../../src/expat/expat/lib/xmlrole.c; sourceTree = SOURCE_ROOT; }; - 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_animatctrl.cpp; path = ../../src/xrc/xh_animatctrl.cpp; sourceTree = SOURCE_ROOT; }; - 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHaskell.cxx; path = ../../src/stc/lexilla/lexers/LexHaskell.cxx; sourceTree = SOURCE_ROOT; }; - 0964797530CF3FE7B8DB6242 /* pngwtran.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwtran.c; path = ../../src/png/pngwtran.c; sourceTree = SOURCE_ROOT; }; - 530DC2E26BF2313E8702AD43 /* popupwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupwin.cpp; path = ../../src/osx/carbon/popupwin.cpp; sourceTree = SOURCE_ROOT; }; + B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrapsizer.cpp; path = ../../src/common/wrapsizer.cpp; sourceTree = SOURCE_ROOT; }; + 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirctrlg.cpp; path = ../../src/generic/dirctrlg.cpp; sourceTree = SOURCE_ROOT; }; + 25C86D3D4839343BA1D8BDEE /* xti.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xti.cpp; path = ../../src/common/xti.cpp; sourceTree = SOURCE_ROOT; }; + 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_ojpeg.c; path = ../../src/tiff/libtiff/tif_ojpeg.c; sourceTree = SOURCE_ROOT; }; + 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlreshandler.cpp; path = ../../src/xrc/xmlreshandler.cpp; sourceTree = SOURCE_ROOT; }; + 207F0F88390138B6B41183EB /* aboutdlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = aboutdlg.mm; path = ../../src/osx/cocoa/aboutdlg.mm; sourceTree = SOURCE_ROOT; }; + 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndcmn.cpp; path = ../../src/common/dndcmn.cpp; sourceTree = SOURCE_ROOT; }; + 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontcmn.cpp; path = ../../src/common/fontcmn.cpp; sourceTree = SOURCE_ROOT; }; + 777385D10CCC350C90F02824 /* textentry_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textentry_osx.cpp; path = ../../src/osx/textentry_osx.cpp; sourceTree = SOURCE_ROOT; }; 9F838F853CB03CF7932C08C3 /* choice.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = choice.mm; path = ../../src/osx/cocoa/choice.mm; sourceTree = SOURCE_ROOT; }; - BD88495AF72531A28D2201D0 /* tif_tile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_tile.c; path = ../../src/tiff/libtiff/tif_tile.c; sourceTree = SOURCE_ROOT; }; - 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtstrm.cpp; path = ../../src/common/txtstrm.cpp; sourceTree = SOURCE_ROOT; }; - B901252876603DCEA4C66D89 /* nbkbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nbkbase.cpp; path = ../../src/common/nbkbase.cpp; sourceTree = SOURCE_ROOT; }; - 0401B7302088357BB6B7F16F /* timerimpl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timerimpl.cpp; path = ../../src/common/timerimpl.cpp; sourceTree = SOURCE_ROOT; }; - A436B55DC44E3827A757A6D8 /* accelcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accelcmn.cpp; path = ../../src/common/accelcmn.cpp; sourceTree = SOURCE_ROOT; }; - 24930711031D35288D28B04B /* choiccmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choiccmn.cpp; path = ../../src/common/choiccmn.cpp; sourceTree = SOURCE_ROOT; }; - F7440859617F3B47AF4D3817 /* valgen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valgen.cpp; path = ../../src/common/valgen.cpp; sourceTree = SOURCE_ROOT; }; + 3E6F40F4740C3ED29D83E107 /* tif_version.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_version.c; path = ../../src/tiff/libtiff/tif_version.c; sourceTree = SOURCE_ROOT; }; + F01DDE448E4C3983ACCE67FD /* appcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appcmn.cpp; path = ../../src/common/appcmn.cpp; sourceTree = SOURCE_ROOT; }; + 5CFC6875EF4732E88E029065 /* tglbtn.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = tglbtn.mm; path = ../../src/osx/cocoa/tglbtn.mm; sourceTree = SOURCE_ROOT; }; + 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_study.c; path = ../../3rdparty/pcre/src/pcre2_study.c; sourceTree = SOURCE_ROOT; }; + BAD4614CABC934D6AFF8D9CD /* gzread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzread.c; path = ../../src/zlib/gzread.c; sourceTree = SOURCE_ROOT; }; + 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bookctrlbase.cpp; path = ../../src/xrc/xh_bookctrlbase.cpp; sourceTree = SOURCE_ROOT; }; + 26381308E32A3A179E7A9B40 /* gridsel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridsel.cpp; path = ../../src/generic/gridsel.cpp; sourceTree = SOURCE_ROOT; }; + B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_hyperlink.cpp; path = ../../src/xrc/xh_hyperlink.cpp; sourceTree = SOURCE_ROOT; }; + 6F23140777B733679D2FAAFC /* odcombocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = odcombocmn.cpp; path = ../../src/common/odcombocmn.cpp; sourceTree = SOURCE_ROOT; }; + 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = protocol.cpp; path = ../../src/common/protocol.cpp; sourceTree = SOURCE_ROOT; }; + 40CE02524DD4385AB2C3DF95 /* socket.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socket.cpp; path = ../../src/common/socket.cpp; sourceTree = SOURCE_ROOT; }; + E9B9B85572D0312BBF2878DB /* windowid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = windowid.cpp; path = ../../src/common/windowid.cpp; sourceTree = SOURCE_ROOT; }; B1F3C70512D93501B0478F3E /* m_fonts.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_fonts.cpp; path = ../../src/html/m_fonts.cpp; sourceTree = SOURCE_ROOT; }; - F5DAF1F49F0F3F41A427A21D /* icon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = icon.cpp; path = ../../src/generic/icon.cpp; sourceTree = SOURCE_ROOT; }; - 01BA6D45FE4C381493EB4372 /* validate.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validate.cpp; path = ../../src/common/validate.cpp; sourceTree = SOURCE_ROOT; }; - 375FF97B202F3C359402D13E /* jdpostct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdpostct.c; path = ../../src/jpeg/jdpostct.c; sourceTree = SOURCE_ROOT; }; - 168DB301ACC736FF96D7F581 /* file.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file.cpp; path = ../../src/common/file.cpp; sourceTree = SOURCE_ROOT; }; - 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jutils.c; path = ../../src/jpeg/jutils.c; sourceTree = SOURCE_ROOT; }; - 346C68F0CCD23823B78267F0 /* tif_lzw.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_lzw.c; path = ../../src/tiff/libtiff/tif_lzw.c; sourceTree = SOURCE_ROOT; }; - 8052B1625907355894CCF263 /* LexillaAccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexillaAccess.cxx; path = ../../src/stc/lexilla/access/LexillaAccess.cxx; sourceTree = SOURCE_ROOT; }; - FAC42945539F362D91D6F559 /* pcre2_substitute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_substitute.c; path = ../../3rdparty/pcre/src/pcre2_substitute.c; sourceTree = SOURCE_ROOT; }; - F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMetapost.cxx; path = ../../src/stc/lexilla/lexers/LexMetapost.cxx; sourceTree = SOURCE_ROOT; }; + 1A0650754DC2358CA5933B28 /* pngerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngerror.c; path = ../../src/png/pngerror.c; sourceTree = SOURCE_ROOT; }; + 5DE635F30F3935099AF1486C /* stattextg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattextg.cpp; path = ../../src/generic/stattextg.cpp; sourceTree = SOURCE_ROOT; }; + 5FF661188B563D27A11F5716 /* fontutil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontutil.cpp; path = ../../src/osx/fontutil.cpp; sourceTree = SOURCE_ROOT; }; AF76670146413EEFA005206A /* printps.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printps.cpp; path = ../../src/generic/printps.cpp; sourceTree = SOURCE_ROOT; }; - 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = infobar.cpp; path = ../../src/generic/infobar.cpp; sourceTree = SOURCE_ROOT; }; - 5248A45AB113341EAC361910 /* notebook_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notebook_osx.cpp; path = ../../src/osx/notebook_osx.cpp; sourceTree = SOURCE_ROOT; }; - 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterCategory.cxx; path = ../../src/stc/scintilla/src/CharacterCategory.cxx; sourceTree = SOURCE_ROOT; }; - FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMMIXAL.cxx; path = ../../src/stc/lexilla/lexers/LexMMIXAL.cxx; sourceTree = SOURCE_ROOT; }; - BD709DEB71623974B9836D69 /* dockart.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockart.cpp; path = ../../src/aui/dockart.cpp; sourceTree = SOURCE_ROOT; }; - 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchctrl_osx.cpp; path = ../../src/osx/srchctrl_osx.cpp; sourceTree = SOURCE_ROOT; }; - F263022F3FEA3F75895B644D /* filesys.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filesys.cpp; path = ../../src/common/filesys.cpp; sourceTree = SOURCE_ROOT; }; - A737317EDE0F3921B1412966 /* LexRegistry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRegistry.cxx; path = ../../src/stc/lexilla/lexers/LexRegistry.cxx; sourceTree = SOURCE_ROOT; }; - 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ScintillaWX.cpp; path = ../../src/stc/ScintillaWX.cpp; sourceTree = SOURCE_ROOT; }; + 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_thunder.c; path = ../../src/tiff/libtiff/tif_thunder.c; sourceTree = SOURCE_ROOT; }; + A87662D69F0432FC96701280 /* xh_notbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_notbk.cpp; path = ../../src/xrc/xh_notbk.cpp; sourceTree = SOURCE_ROOT; }; + D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Lexilla.cxx; path = ../../src/stc/lexilla/src/Lexilla.cxx; sourceTree = SOURCE_ROOT; }; + 4FE0B33481283D3493613B0F /* config.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = config.cpp; path = ../../src/common/config.cpp; sourceTree = SOURCE_ROOT; }; 7D90D14874FD38079835AF0B /* editlbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = editlbox.cpp; path = ../../src/generic/editlbox.cpp; sourceTree = SOURCE_ROOT; }; - 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextbuffer.cpp; path = ../../src/richtext/richtextbuffer.cpp; sourceTree = SOURCE_ROOT; }; - E8072CA67D19346ABF4D465F /* slidercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slidercmn.cpp; path = ../../src/common/slidercmn.cpp; sourceTree = SOURCE_ROOT; }; - 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrlcmn.cpp; path = ../../src/common/ctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richmsgdlgg.cpp; path = ../../src/generic/richmsgdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 29387393C07C39DB8FF1663B /* artprov.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artprov.cpp; path = ../../src/common/artprov.cpp; sourceTree = SOURCE_ROOT; }; - B83EDE2D1731311ABDE62F9F /* tif_strip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_strip.c; path = ../../src/tiff/libtiff/tif_strip.c; sourceTree = SOURCE_ROOT; }; - E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMarkdown.cxx; path = ../../src/stc/lexilla/lexers/LexMarkdown.cxx; sourceTree = SOURCE_ROOT; }; - 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmpcbox.cpp; path = ../../src/xrc/xh_bmpcbox.cpp; sourceTree = SOURCE_ROOT; }; - 789F45D14FF23E248FCFB5FA /* utils.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utils.mm; path = ../../src/osx/cocoa/utils.mm; sourceTree = SOURCE_ROOT; }; - 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = stdpaths.mm; path = ../../src/osx/cocoa/stdpaths.mm; sourceTree = SOURCE_ROOT; }; - 93D07403FCA530D7A9FD2917 /* jfdctflt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctflt.c; path = ../../src/jpeg/jfdctflt.c; sourceTree = SOURCE_ROOT; }; - 149D299A0EDB3D998118EC93 /* tif_color.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_color.c; path = ../../src/tiff/libtiff/tif_color.c; sourceTree = SOURCE_ROOT; }; - C562D5885AFF3E15837325CE /* xpmdecod.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xpmdecod.cpp; path = ../../src/common/xpmdecod.cpp; sourceTree = SOURCE_ROOT; }; - 1CABAEA3B48333CB88B40F08 /* LexTCMD.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCMD.cxx; path = ../../src/stc/lexilla/lexers/LexTCMD.cxx; sourceTree = SOURCE_ROOT; }; - C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextprint.cpp; path = ../../src/richtext/richtextprint.cpp; sourceTree = SOURCE_ROOT; }; - 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_match.c; path = ../../3rdparty/pcre/src/pcre2_match.c; sourceTree = SOURCE_ROOT; }; - DA7F7633279936EFA0B9C5CF /* markupparser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = markupparser.cpp; path = ../../src/common/markupparser.cpp; sourceTree = SOURCE_ROOT; }; - 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jpeg.c; path = ../../src/tiff/libtiff/tif_jpeg.c; sourceTree = SOURCE_ROOT; }; + C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anybutton_osx.cpp; path = ../../src/osx/anybutton_osx.cpp; sourceTree = SOURCE_ROOT; }; + CC2713393AB132AA8E337AE1 /* LexPython.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPython.cxx; path = ../../src/stc/lexilla/lexers/LexPython.cxx; sourceTree = SOURCE_ROOT; }; + 8C78A1539462370CAA429508 /* accel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accel.cpp; path = ../../src/osx/accel.cpp; sourceTree = SOURCE_ROOT; }; + AA6C6739C3BD3EFA9CF71102 /* jcinit.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcinit.c; path = ../../src/jpeg/jcinit.c; sourceTree = SOURCE_ROOT; }; + 6506A965F677374491359FB8 /* volume.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = volume.mm; path = ../../src/osx/volume.mm; sourceTree = SOURCE_ROOT; }; + 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sashwin.cpp; path = ../../src/generic/sashwin.cpp; sourceTree = SOURCE_ROOT; }; + 49CABA38E78D34DFA260AA06 /* renderg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = renderg.cpp; path = ../../src/generic/renderg.cpp; sourceTree = SOURCE_ROOT; }; + 1C71BF55495034FFBE653C80 /* LexMSSQL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMSSQL.cxx; path = ../../src/stc/lexilla/lexers/LexMSSQL.cxx; sourceTree = SOURCE_ROOT; }; + 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexOpal.cxx; path = ../../src/stc/lexilla/lexers/LexOpal.cxx; sourceTree = SOURCE_ROOT; }; + 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVisualProlog.cxx; path = ../../src/stc/lexilla/lexers/LexVisualProlog.cxx; sourceTree = SOURCE_ROOT; }; + C3784C240C2F330683494926 /* laywin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = laywin.cpp; path = ../../src/generic/laywin.cpp; sourceTree = SOURCE_ROOT; }; + D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_menu.cpp; path = ../../src/xrc/xh_menu.cpp; sourceTree = SOURCE_ROOT; }; + 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choice_osx.cpp; path = ../../src/osx/choice_osx.cpp; sourceTree = SOURCE_ROOT; }; + 950D51915EF83B57B5E8306F /* xh_spin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_spin.cpp; path = ../../src/xrc/xh_spin.cpp; sourceTree = SOURCE_ROOT; }; FD6B26B5A6A733A89EF5AB9C /* statbmp.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = statbmp.mm; path = ../../src/osx/cocoa/statbmp.mm; sourceTree = SOURCE_ROOT; }; - CF4F4F5211933057824B5621 /* button_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = button_osx.cpp; path = ../../src/osx/button_osx.cpp; sourceTree = SOURCE_ROOT; }; - 57C06D5DB5F733A4A235B206 /* combobox.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = combobox.mm; path = ../../src/osx/cocoa/combobox.mm; sourceTree = SOURCE_ROOT; }; - 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbndl.cpp; path = ../../src/common/bmpbndl.cpp; sourceTree = SOURCE_ROOT; }; - 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = snglinst.cpp; path = ../../src/unix/snglinst.cpp; sourceTree = SOURCE_ROOT; }; - A06AB1974DB93EE2999EC75C /* pngrio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrio.c; path = ../../src/png/pngrio.c; sourceTree = SOURCE_ROOT; }; - 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bookctrl.cpp; path = ../../src/common/bookctrl.cpp; sourceTree = SOURCE_ROOT; }; - 91300EB871CC39ECBC430D48 /* pngget.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngget.c; path = ../../src/png/pngget.c; sourceTree = SOURCE_ROOT; }; - 69A6CAF721E53E83B4820DE6 /* pngwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwrite.c; path = ../../src/png/pngwrite.c; sourceTree = SOURCE_ROOT; }; - 1EF103B09F02315282EC8F44 /* srchcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchcmn.cpp; path = ../../src/common/srchcmn.cpp; sourceTree = SOURCE_ROOT; }; + DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultLexer.cxx; path = ../../src/stc/lexilla/lexlib/DefaultLexer.cxx; sourceTree = SOURCE_ROOT; }; + 24396D584D053948A3FF0DCD /* imagpng.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagpng.cpp; path = ../../src/common/imagpng.cpp; sourceTree = SOURCE_ROOT; }; + D9446ADCCDCD32E6BCF95599 /* notifmsg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = notifmsg.mm; path = ../../src/osx/cocoa/notifmsg.mm; sourceTree = SOURCE_ROOT; }; + F7332A03D93D3DABB050615D /* dir.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dir.cpp; path = ../../src/unix/dir.cpp; sourceTree = SOURCE_ROOT; }; + B14D6E7E15FD3C869E341198 /* LexLout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLout.cxx; path = ../../src/stc/lexilla/lexers/LexLout.cxx; sourceTree = SOURCE_ROOT; }; + 53D06E47477B3E32BB6B915E /* jcsample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcsample.c; path = ../../src/jpeg/jcsample.c; sourceTree = SOURCE_ROOT; }; + A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontpickercmn.cpp; path = ../../src/common/fontpickercmn.cpp; sourceTree = SOURCE_ROOT; }; + 81B3DFBB73573FFDBD320334 /* datstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datstrm.cpp; path = ../../src/common/datstrm.cpp; sourceTree = SOURCE_ROOT; }; + CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imaggif.cpp; path = ../../src/common/imaggif.cpp; sourceTree = SOURCE_ROOT; }; + 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checklst_osx.cpp; path = ../../src/osx/checklst_osx.cpp; sourceTree = SOURCE_ROOT; }; + D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTxt2tags.cxx; path = ../../src/stc/lexilla/lexers/LexTxt2tags.cxx; sourceTree = SOURCE_ROOT; }; + A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headerctrlcmn.cpp; path = ../../src/common/headerctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listbk.cpp; path = ../../src/xrc/xh_listbk.cpp; sourceTree = SOURCE_ROOT; }; + A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cpp; path = ../../src/osx/core/bitmap.cpp; sourceTree = SOURCE_ROOT; }; + BB7661E9E09A397790ED9545 /* sockunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sockunix.cpp; path = ../../src/unix/sockunix.cpp; sourceTree = SOURCE_ROOT; }; + 57E4784E521339BEB971D81D /* LexAVS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVS.cxx; path = ../../src/stc/lexilla/lexers/LexAVS.cxx; sourceTree = SOURCE_ROOT; }; + 5B9586328A1F3C4BA0390AA5 /* time.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = time.cpp; path = ../../src/common/time.cpp; sourceTree = SOURCE_ROOT; }; + 45860601270D318D93BEE1F3 /* LexMagik.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMagik.cxx; path = ../../src/stc/lexilla/lexers/LexMagik.cxx; sourceTree = SOURCE_ROOT; }; + 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listc.cpp; path = ../../src/xrc/xh_listc.cpp; sourceTree = SOURCE_ROOT; }; + 2D61240ABD70328BA5789663 /* colourcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colourcmn.cpp; path = ../../src/common/colourcmn.cpp; sourceTree = SOURCE_ROOT; }; + 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imaglist.cpp; path = ../../src/generic/imaglist.cpp; sourceTree = SOURCE_ROOT; }; + 51054B41BFD83E97BAF76D07 /* tabart.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabart.cpp; path = ../../src/aui/tabart.cpp; sourceTree = SOURCE_ROOT; }; + B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_treebk.cpp; path = ../../src/xrc/xh_treebk.cpp; sourceTree = SOURCE_ROOT; }; + 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtloop_cf.cpp; path = ../../src/osx/core/evtloop_cf.cpp; sourceTree = SOURCE_ROOT; }; + 2E00E14795F23A8392713A26 /* fontutilcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontutilcmn.cpp; path = ../../src/common/fontutilcmn.cpp; sourceTree = SOURCE_ROOT; }; + 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpcboxg.cpp; path = ../../src/generic/bmpcboxg.cpp; sourceTree = SOURCE_ROOT; }; + 0DA80913C0E33144A42BD30F /* webview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webview.cpp; path = ../../src/common/webview.cpp; sourceTree = SOURCE_ROOT; }; + 964578C24B9F390AAD08576E /* addremovectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = addremovectrl.cpp; path = ../../src/common/addremovectrl.cpp; sourceTree = SOURCE_ROOT; }; + F82278F9AF0432529891E6D7 /* tif_close.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_close.c; path = ../../src/tiff/libtiff/tif_close.c; sourceTree = SOURCE_ROOT; }; + C2BB2949CC0B387AB6879539 /* metafile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metafile.cpp; path = ../../src/osx/carbon/metafile.cpp; sourceTree = SOURCE_ROOT; }; + 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gbsizer.cpp; path = ../../src/common/gbsizer.cpp; sourceTree = SOURCE_ROOT; }; + AF3DF03795153E039B8F1F87 /* LineMarker.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LineMarker.cxx; path = ../../src/stc/scintilla/src/LineMarker.cxx; sourceTree = SOURCE_ROOT; }; + C37866F41B0C31E295AA7FA6 /* wfstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wfstream.cpp; path = ../../src/common/wfstream.cpp; sourceTree = SOURCE_ROOT; }; + 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexInno.cxx; path = ../../src/stc/lexilla/lexers/LexInno.cxx; sourceTree = SOURCE_ROOT; }; + 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CallTip.cxx; path = ../../src/stc/scintilla/src/CallTip.cxx; sourceTree = SOURCE_ROOT; }; + 7FE0455EBDC63D82B2D88587 /* jcprepct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcprepct.c; path = ../../src/jpeg/jcprepct.c; sourceTree = SOURCE_ROOT; }; + 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = stdpaths.mm; path = ../../src/osx/cocoa/stdpaths.mm; sourceTree = SOURCE_ROOT; }; + FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_config.c; path = ../../3rdparty/pcre/src/pcre2_config.c; sourceTree = SOURCE_ROOT; }; + D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPerl.cxx; path = ../../src/stc/lexilla/lexers/LexPerl.cxx; sourceTree = SOURCE_ROOT; }; + 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbar_osx.cpp; path = ../../src/osx/toolbar_osx.cpp; sourceTree = SOURCE_ROOT; }; + 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treectlg.cpp; path = ../../src/generic/treectlg.cpp; sourceTree = SOURCE_ROOT; }; + 3D5F00FC91343C35AF99F708 /* LexMake.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMake.cxx; path = ../../src/stc/lexilla/lexers/LexMake.cxx; sourceTree = SOURCE_ROOT; }; + 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAccessor.cxx; path = ../../src/stc/lexilla/lexlib/LexAccessor.cxx; sourceTree = SOURCE_ROOT; }; A3BF8C9FF2D5314591329D0D /* toolbar.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = toolbar.mm; path = ../../src/osx/cocoa/toolbar.mm; sourceTree = SOURCE_ROOT; }; - D049F49C75043592B7E318B3 /* datetimectrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datetimectrl_osx.cpp; path = ../../src/osx/datetimectrl_osx.cpp; sourceTree = SOURCE_ROOT; }; - 853C2741D98438DA90B87D90 /* LexBatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBatch.cxx; path = ../../src/stc/lexilla/lexers/LexBatch.cxx; sourceTree = SOURCE_ROOT; }; - F2024D29170D3B50A4DFDE11 /* base64.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = base64.cpp; path = ../../src/common/base64.cpp; sourceTree = SOURCE_ROOT; }; - 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jpeg_12.c; path = ../../src/tiff/libtiff/tif_jpeg_12.c; sourceTree = SOURCE_ROOT; }; - CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_choicbk.cpp; path = ../../src/xrc/xh_choicbk.cpp; sourceTree = SOURCE_ROOT; }; - 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmp.cpp; path = ../../src/xrc/xh_bmp.cpp; sourceTree = SOURCE_ROOT; }; - D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVerilog.cxx; path = ../../src/stc/lexilla/lexers/LexVerilog.cxx; sourceTree = SOURCE_ROOT; }; - 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cfstring.cpp; path = ../../src/osx/core/cfstring.cpp; sourceTree = SOURCE_ROOT; }; - B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexD.cxx; path = ../../src/stc/lexilla/lexers/LexD.cxx; sourceTree = SOURCE_ROOT; }; - E79B2D1F630036129B9677A7 /* tif_dir.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dir.c; path = ../../src/tiff/libtiff/tif_dir.c; sourceTree = SOURCE_ROOT; }; - 2F3EE2E9EE05311497826962 /* LexMySQL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMySQL.cxx; path = ../../src/stc/lexilla/lexers/LexMySQL.cxx; sourceTree = SOURCE_ROOT; }; - 832BBBFE664736D5978420C6 /* fmapbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmapbase.cpp; path = ../../src/common/fmapbase.cpp; sourceTree = SOURCE_ROOT; }; - 664736BDE465350C9C4750E9 /* jcmarker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmarker.c; path = ../../src/jpeg/jcmarker.c; sourceTree = SOURCE_ROOT; }; - 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCSS.cxx; path = ../../src/stc/lexilla/lexers/LexCSS.cxx; sourceTree = SOURCE_ROOT; }; + 7195E665E0F233839B967FC9 /* timercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timercmn.cpp; path = ../../src/common/timercmn.cpp; sourceTree = SOURCE_ROOT; }; + 72869747E68E37998CB0A07E /* jdhuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdhuff.c; path = ../../src/jpeg/jdhuff.c; sourceTree = SOURCE_ROOT; }; + 31F4B9B03D52339B8F82C114 /* variant.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = variant.cpp; path = ../../src/common/variant.cpp; sourceTree = SOURCE_ROOT; }; + 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_ucd.c; path = ../../3rdparty/pcre/src/pcre2_ucd.c; sourceTree = SOURCE_ROOT; }; + C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tarstrm.cpp; path = ../../src/common/tarstrm.cpp; sourceTree = SOURCE_ROOT; }; + 9051902662BE38B3912B34EA /* dlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlgcmn.cpp; path = ../../src/common/dlgcmn.cpp; sourceTree = SOURCE_ROOT; }; + B9B5BC858CCF3477895D2786 /* zstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zstream.cpp; path = ../../src/common/zstream.cpp; sourceTree = SOURCE_ROOT; }; + 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_jit_compile.c; path = ../../3rdparty/pcre/src/pcre2_jit_compile.c; sourceTree = SOURCE_ROOT; }; + D324650313003AAD96E12962 /* listbox.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = listbox.mm; path = ../../src/osx/cocoa/listbox.mm; sourceTree = SOURCE_ROOT; }; + 513033E36E643593AC305B3D /* uncompr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = uncompr.c; path = ../../src/zlib/uncompr.c; sourceTree = SOURCE_ROOT; }; 8734C52C7559310784396455 /* LexRuby.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRuby.cxx; path = ../../src/stc/lexilla/lexers/LexRuby.cxx; sourceTree = SOURCE_ROOT; }; - 0C7F18C26877336DBE638D75 /* LexCIL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCIL.cxx; path = ../../src/stc/lexilla/lexers/LexCIL.cxx; sourceTree = SOURCE_ROOT; }; - 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVHDL.cxx; path = ../../src/stc/lexilla/lexers/LexVHDL.cxx; sourceTree = SOURCE_ROOT; }; - D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTxt2tags.cxx; path = ../../src/stc/lexilla/lexers/LexTxt2tags.cxx; sourceTree = SOURCE_ROOT; }; - 861438BD294335D4B859EA71 /* toplvcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toplvcmn.cpp; path = ../../src/common/toplvcmn.cpp; sourceTree = SOURCE_ROOT; }; - BCD873D873A53BBF955D8A4E /* PositionCache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PositionCache.cxx; path = ../../src/stc/scintilla/src/PositionCache.cxx; sourceTree = SOURCE_ROOT; }; - 2F4CDF9048EC36788619769D /* pcre2_script_run.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_script_run.c; path = ../../3rdparty/pcre/src/pcre2_script_run.c; sourceTree = SOURCE_ROOT; }; - DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statline_osx.cpp; path = ../../src/osx/statline_osx.cpp; sourceTree = SOURCE_ROOT; }; - BEF6B3FB66243812969E5BD1 /* palette.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = palette.cpp; path = ../../src/osx/palette.cpp; sourceTree = SOURCE_ROOT; }; - 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pickerbase.cpp; path = ../../src/common/pickerbase.cpp; sourceTree = SOURCE_ROOT; }; - CC2E24773D853A77B9FEFA4C /* scrolbar.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = scrolbar.mm; path = ../../src/osx/cocoa/scrolbar.mm; sourceTree = SOURCE_ROOT; }; - 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datavcmn.cpp; path = ../../src/common/datavcmn.cpp; sourceTree = SOURCE_ROOT; }; - 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmndata.cpp; path = ../../src/common/cmndata.cpp; sourceTree = SOURCE_ROOT; }; - F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jbig.c; path = ../../src/tiff/libtiff/tif_jbig.c; sourceTree = SOURCE_ROOT; }; - 375E7A99FF4C38FA9E223772 /* LexAda.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAda.cxx; path = ../../src/stc/lexilla/lexers/LexAda.cxx; sourceTree = SOURCE_ROOT; }; - 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = msgdlg.mm; path = ../../src/osx/cocoa/msgdlg.mm; sourceTree = SOURCE_ROOT; }; - 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checkbox_osx.cpp; path = ../../src/osx/checkbox_osx.cpp; sourceTree = SOURCE_ROOT; }; - FB46BC22F6B23909A938C561 /* regex.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regex.cpp; path = ../../src/common/regex.cpp; sourceTree = SOURCE_ROOT; }; - 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RunStyles.cxx; path = ../../src/stc/scintilla/src/RunStyles.cxx; sourceTree = SOURCE_ROOT; }; - C83C97A1FCC5345896C9D7DE /* tif_warning.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_warning.c; path = ../../src/tiff/libtiff/tif_warning.c; sourceTree = SOURCE_ROOT; }; - 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDataflex.cxx; path = ../../src/stc/lexilla/lexers/LexDataflex.cxx; sourceTree = SOURCE_ROOT; }; - 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_gdctl.cpp; path = ../../src/xrc/xh_gdctl.cpp; sourceTree = SOURCE_ROOT; }; - 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHollywood.cxx; path = ../../src/stc/lexilla/lexers/LexHollywood.cxx; sourceTree = SOURCE_ROOT; }; - AAC12B4456E13F57BEA25A5E /* tif_swab.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_swab.c; path = ../../src/tiff/libtiff/tif_swab.c; sourceTree = SOURCE_ROOT; }; - 326723AEB79A305F90D6B41D /* advprops.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = advprops.cpp; path = ../../src/propgrid/advprops.cpp; sourceTree = SOURCE_ROOT; }; - 5F555177554E398286DBC6FB /* xh_stlin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_stlin.cpp; path = ../../src/xrc/xh_stlin.cpp; sourceTree = SOURCE_ROOT; }; - AB8A747FB60239B9AB710264 /* clrpickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrpickercmn.cpp; path = ../../src/common/clrpickercmn.cpp; sourceTree = SOURCE_ROOT; }; - 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ScintillaBase.cxx; path = ../../src/stc/scintilla/src/ScintillaBase.cxx; sourceTree = SOURCE_ROOT; }; + C76222F466E831F896A89269 /* LexAU3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAU3.cxx; path = ../../src/stc/lexilla/lexers/LexAU3.cxx; sourceTree = SOURCE_ROOT; }; + EED7C691150139EFA35E8EBD /* utils_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utils_osx.cpp; path = ../../src/osx/utils_osx.cpp; sourceTree = SOURCE_ROOT; }; + 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filectrlcmn.cpp; path = ../../src/common/filectrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgdlgg.cpp; path = ../../src/generic/msgdlgg.cpp; sourceTree = SOURCE_ROOT; }; + D272910EC35531E5B4D6E05B /* dynlib.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dynlib.cpp; path = ../../src/common/dynlib.cpp; sourceTree = SOURCE_ROOT; }; + F7E99B35A98D30818120B002 /* string.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = string.cpp; path = ../../src/common/string.cpp; sourceTree = SOURCE_ROOT; }; + 29387393C07C39DB8FF1663B /* artprov.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artprov.cpp; path = ../../src/common/artprov.cpp; sourceTree = SOURCE_ROOT; }; + 65C47DFD6E243724A83603F3 /* libwx_osx_cocoa.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libwx_osx_cocoa.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; + 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAPDL.cxx; path = ../../src/stc/lexilla/lexers/LexAPDL.cxx; sourceTree = SOURCE_ROOT; }; + A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_styledtextctrl.cpp; path = ../../src/xrc/xh_styledtextctrl.cpp; sourceTree = SOURCE_ROOT; }; + 994AF74DF2A13FF09A215853 /* intel_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = intel_init.c; path = ../../src/png/intel/intel_init.c; sourceTree = SOURCE_ROOT; }; + 071FEABEA61E3B559A47A7DB /* statusbr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statusbr.cpp; path = ../../src/generic/statusbr.cpp; sourceTree = SOURCE_ROOT; }; + 95A156A823B536DE8476E4F9 /* appbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbase.cpp; path = ../../src/common/appbase.cpp; sourceTree = SOURCE_ROOT; }; + A0DCC5EF59143640BE13AD73 /* jidctfst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctfst.c; path = ../../src/jpeg/jidctfst.c; sourceTree = SOURCE_ROOT; }; + 4549845C0751356A907C23E0 /* jdtrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdtrans.c; path = ../../src/jpeg/jdtrans.c; sourceTree = SOURCE_ROOT; }; + 9E1B538562B93D148F54645B /* LexSAS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSAS.cxx; path = ../../src/stc/lexilla/lexers/LexSAS.cxx; sourceTree = SOURCE_ROOT; }; + C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = encconv.cpp; path = ../../src/common/encconv.cpp; sourceTree = SOURCE_ROOT; }; + 35007225BB683683AA7C5E48 /* glcanvas.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = glcanvas.mm; path = ../../src/osx/cocoa/glcanvas.mm; sourceTree = SOURCE_ROOT; }; + 12363D1F50FE301DAEE7F04B /* control.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = control.cpp; path = ../../src/ribbon/control.cpp; sourceTree = SOURCE_ROOT; }; + B7581D7140293BAE88E43DBE /* fs_inet.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_inet.cpp; path = ../../src/common/fs_inet.cpp; sourceTree = SOURCE_ROOT; }; + 2F3EE2E9EE05311497826962 /* LexMySQL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMySQL.cxx; path = ../../src/stc/lexilla/lexers/LexMySQL.cxx; sourceTree = SOURCE_ROOT; }; + 933D7637CAA43F6C99814BC5 /* arm_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = arm_init.c; path = ../../src/png/arm/arm_init.c; sourceTree = SOURCE_ROOT; }; + 06B4A895955B32258DCD62BF /* xh_dlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_dlg.cpp; path = ../../src/xrc/xh_dlg.cpp; sourceTree = SOURCE_ROOT; }; + 84A7A3B499503ECABC6A838F /* btncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = btncmn.cpp; path = ../../src/common/btncmn.cpp; sourceTree = SOURCE_ROOT; }; + 7255468B6D5F3D8697994A53 /* LexR.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexR.cxx; path = ../../src/stc/lexilla/lexers/LexR.cxx; sourceTree = SOURCE_ROOT; }; + 5612DBC4125B379DA2B28825 /* buttonbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = buttonbar.cpp; path = ../../src/generic/buttonbar.cpp; sourceTree = SOURCE_ROOT; }; + 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stopwatch.cpp; path = ../../src/common/stopwatch.cpp; sourceTree = SOURCE_ROOT; }; + 5BE1FB352696346BB642C044 /* secretstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = secretstore.cpp; path = ../../src/common/secretstore.cpp; sourceTree = SOURCE_ROOT; }; + B303230368143F37B2409DE6 /* LexKix.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexKix.cxx; path = ../../src/stc/lexilla/lexers/LexKix.cxx; sourceTree = SOURCE_ROOT; }; + 194ADD28300E329E80F7892E /* htmprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmprint.cpp; path = ../../src/html/htmprint.cpp; sourceTree = SOURCE_ROOT; }; + EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filedlgg.cpp; path = ../../src/generic/filedlgg.cpp; sourceTree = SOURCE_ROOT; }; + AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wincmn.cpp; path = ../../src/common/wincmn.cpp; sourceTree = SOURCE_ROOT; }; + C3019BA65DD73F30A865365F /* frame.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frame.cpp; path = ../../src/osx/carbon/frame.cpp; sourceTree = SOURCE_ROOT; }; + 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sizer.cpp; path = ../../src/common/sizer.cpp; sourceTree = SOURCE_ROOT; }; + DF376BC55EA73F5FB7328142 /* helpext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpext.cpp; path = ../../src/generic/helpext.cpp; sourceTree = SOURCE_ROOT; }; + 4466008861AA37CFB13A46EF /* xh_vlistbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_vlistbox.cpp; path = ../../src/xrc/xh_vlistbox.cpp; sourceTree = SOURCE_ROOT; }; + 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzwrite.c; path = ../../src/zlib/gzwrite.c; sourceTree = SOURCE_ROOT; }; + 59572A234F0636D78BFD9F6B /* spinctlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinctlg.cpp; path = ../../src/generic/spinctlg.cpp; sourceTree = SOURCE_ROOT; }; + FAC42945539F362D91D6F559 /* pcre2_substitute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_substitute.c; path = ../../3rdparty/pcre/src/pcre2_substitute.c; sourceTree = SOURCE_ROOT; }; + 48F1439BF6C3361296F05A33 /* tif_error.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_error.c; path = ../../src/tiff/libtiff/tif_error.c; sourceTree = SOURCE_ROOT; }; + 6BC0A61629E635FAB4E09505 /* geometry.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = geometry.cpp; path = ../../src/common/geometry.cpp; sourceTree = SOURCE_ROOT; }; E968913A9A593B258BD8EACB /* msgout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgout.cpp; path = ../../src/common/msgout.cpp; sourceTree = SOURCE_ROOT; }; - 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbmpcmn.cpp; path = ../../src/common/statbmpcmn.cpp; sourceTree = SOURCE_ROOT; }; - 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = powercmn.cpp; path = ../../src/common/powercmn.cpp; sourceTree = SOURCE_ROOT; }; - 66411D54BAD338498AC59401 /* xh_scrol.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_scrol.cpp; path = ../../src/xrc/xh_scrol.cpp; sourceTree = SOURCE_ROOT; }; - B98B72B3A0A73044B85AED60 /* propgrid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgrid.cpp; path = ../../src/propgrid/propgrid.cpp; sourceTree = SOURCE_ROOT; }; - B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_toolbk.cpp; path = ../../src/xrc/xh_toolbk.cpp; sourceTree = SOURCE_ROOT; }; - 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lzmastream.cpp; path = ../../src/common/lzmastream.cpp; sourceTree = SOURCE_ROOT; }; - 77F5E7BCD9B2307D8DBCC052 /* font.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = font.cpp; path = ../../src/osx/carbon/font.cpp; sourceTree = SOURCE_ROOT; }; - B883F991159731DCB2717A21 /* CharacterSet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterSet.cxx; path = ../../src/stc/scintilla/src/CharacterSet.cxx; sourceTree = SOURCE_ROOT; }; - 87799D3168B43EB7B5686826 /* pngrtran.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrtran.c; path = ../../src/png/pngrtran.c; sourceTree = SOURCE_ROOT; }; - 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statlinecmn.cpp; path = ../../src/common/statlinecmn.cpp; sourceTree = SOURCE_ROOT; }; - F83172EE2DAE352FB969D4F2 /* jcapistd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapistd.c; path = ../../src/jpeg/jcapistd.c; sourceTree = SOURCE_ROOT; }; - 68B81FBDA49D3C1991B6356A /* jdcolor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcolor.c; path = ../../src/jpeg/jdcolor.c; sourceTree = SOURCE_ROOT; }; - B0665A40F3FC3F218074C63C /* artmac.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artmac.cpp; path = ../../src/osx/artmac.cpp; sourceTree = SOURCE_ROOT; }; - 3C131F7BF8A83960ACB26242 /* jidctflt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctflt.c; path = ../../src/jpeg/jidctflt.c; sourceTree = SOURCE_ROOT; }; - 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdpbase.cpp; path = ../../src/common/stdpbase.cpp; sourceTree = SOURCE_ROOT; }; - ED19EF377E653F71B1876259 /* jdmaster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmaster.c; path = ../../src/jpeg/jdmaster.c; sourceTree = SOURCE_ROOT; }; - 75D0C937F2A03ADA8581A2BB /* arcall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arcall.cpp; path = ../../src/common/arcall.cpp; sourceTree = SOURCE_ROOT; }; - 358D0A3AC73F322EA732D020 /* pngrutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrutil.c; path = ../../src/png/pngrutil.c; sourceTree = SOURCE_ROOT; }; + 1629FA905F903324AA5BE72C /* vscroll.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vscroll.cpp; path = ../../src/generic/vscroll.cpp; sourceTree = SOURCE_ROOT; }; + 8F633793051F371F94C27530 /* LexVB.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVB.cxx; path = ../../src/stc/lexilla/lexers/LexVB.cxx; sourceTree = SOURCE_ROOT; }; + A436B55DC44E3827A757A6D8 /* accelcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accelcmn.cpp; path = ../../src/common/accelcmn.cpp; sourceTree = SOURCE_ROOT; }; + 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCsound.cxx; path = ../../src/stc/lexilla/lexers/LexCsound.cxx; sourceTree = SOURCE_ROOT; }; + 2F1B41B0F10C3DA38188C239 /* LexScriptol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexScriptol.cxx; path = ../../src/stc/lexilla/lexers/LexScriptol.cxx; sourceTree = SOURCE_ROOT; }; + 49612306912038DDBCABB4DE /* url.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = url.cpp; path = ../../src/common/url.cpp; sourceTree = SOURCE_ROOT; }; + 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combobox_osx.cpp; path = ../../src/osx/combobox_osx.cpp; sourceTree = SOURCE_ROOT; }; + 326723AEB79A305F90D6B41D /* advprops.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = advprops.cpp; path = ../../src/propgrid/advprops.cpp; sourceTree = SOURCE_ROOT; }; + 375E7A99FF4C38FA9E223772 /* LexAda.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAda.cxx; path = ../../src/stc/lexilla/lexers/LexAda.cxx; sourceTree = SOURCE_ROOT; }; + B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appunix.cpp; path = ../../src/unix/appunix.cpp; sourceTree = SOURCE_ROOT; }; + 616466F521DB3ECAB304289F /* xh_dataview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_dataview.cpp; path = ../../src/xrc/xh_dataview.cpp; sourceTree = SOURCE_ROOT; }; + FA7029BB5751398AA02D8C24 /* imagtga.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagtga.cpp; path = ../../src/common/imagtga.cpp; sourceTree = SOURCE_ROOT; }; + FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cpp; path = ../../src/common/stream.cpp; sourceTree = SOURCE_ROOT; }; + 60DFD5962DE3379F801AF78F /* power.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = power.mm; path = ../../src/osx/cocoa/power.mm; sourceTree = SOURCE_ROOT; }; 61658C3EABB4341AA38C691E /* m_pre.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_pre.cpp; path = ../../src/html/m_pre.cpp; sourceTree = SOURCE_ROOT; }; - 5BE1FB352696346BB642C045 /* secretstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = secretstore.cpp; path = ../../src/osx/core/secretstore.cpp; sourceTree = SOURCE_ROOT; }; - 14EF4B028AD63B4A885D29A1 /* srchctrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = srchctrl.mm; path = ../../src/osx/cocoa/srchctrl.mm; sourceTree = SOURCE_ROOT; }; - C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcher_kqueue.cpp; path = ../../src/unix/fswatcher_kqueue.cpp; sourceTree = SOURCE_ROOT; }; - 082CA018FB883999839C1DCE /* m_tables.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_tables.cpp; path = ../../src/html/m_tables.cpp; sourceTree = SOURCE_ROOT; }; - 2F41EDEB298538CC86FF6DC1 /* jcparam.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcparam.c; path = ../../src/jpeg/jcparam.c; sourceTree = SOURCE_ROOT; }; - 3B98123FD57731139044B064 /* tif_zstd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_zstd.c; path = ../../src/tiff/libtiff/tif_zstd.c; sourceTree = SOURCE_ROOT; }; - 242BF97B558634A79322052C /* prntbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prntbase.cpp; path = ../../src/common/prntbase.cpp; sourceTree = SOURCE_ROOT; }; - A57CF60203F53459A03951A9 /* arrstr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arrstr.cpp; path = ../../src/common/arrstr.cpp; sourceTree = SOURCE_ROOT; }; - BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filepickercmn.cpp; path = ../../src/common/filepickercmn.cpp; sourceTree = SOURCE_ROOT; }; - 2D61240ABD70328BA5789663 /* colourcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colourcmn.cpp; path = ../../src/common/colourcmn.cpp; sourceTree = SOURCE_ROOT; }; - D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPerl.cxx; path = ../../src/stc/lexilla/lexers/LexPerl.cxx; sourceTree = SOURCE_ROOT; }; - 4BA819575B5136B09FA8FEB1 /* pen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pen.cpp; path = ../../src/osx/pen.cpp; sourceTree = SOURCE_ROOT; }; - E685D81FB9FF3081B6C5C321 /* EditModel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EditModel.cxx; path = ../../src/stc/scintilla/src/EditModel.cxx; sourceTree = SOURCE_ROOT; }; - 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_dfa_match.c; path = ../../3rdparty/pcre/src/pcre2_dfa_match.c; sourceTree = SOURCE_ROOT; }; + B181F564935730E89AB00D92 /* LexForth.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexForth.cxx; path = ../../src/stc/lexilla/lexers/LexForth.cxx; sourceTree = SOURCE_ROOT; }; + FD5F11A3646F397BA62EB037 /* htmllbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmllbox.cpp; path = ../../src/generic/htmllbox.cpp; sourceTree = SOURCE_ROOT; }; + 3716DA7B0C79360CBA26A71E /* tif_webp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_webp.c; path = ../../src/tiff/libtiff/tif_webp.c; sourceTree = SOURCE_ROOT; }; + 66C21CA37BF63893887FD91B /* menu_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menu_osx.cpp; path = ../../src/osx/menu_osx.cpp; sourceTree = SOURCE_ROOT; }; + 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fdiodispatcher.cpp; path = ../../src/common/fdiodispatcher.cpp; sourceTree = SOURCE_ROOT; }; + 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = powercmn.cpp; path = ../../src/common/powercmn.cpp; sourceTree = SOURCE_ROOT; }; + 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_chartables.c; path = ../../3rdparty/pcre/src/pcre2_chartables.c; sourceTree = SOURCE_ROOT; }; + 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBaan.cxx; path = ../../src/stc/lexilla/lexers/LexBaan.cxx; sourceTree = SOURCE_ROOT; }; + 087B66573CD33DA99DA82B1C /* xmlres.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlres.cpp; path = ../../src/xrc/xmlres.cpp; sourceTree = SOURCE_ROOT; }; + 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = snglinst.cpp; path = ../../src/unix/snglinst.cpp; sourceTree = SOURCE_ROOT; }; + DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_aui.cpp; path = ../../src/ribbon/art_aui.cpp; sourceTree = SOURCE_ROOT; }; + DFDC805DD3063C389F93642D /* tif_next.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_next.c; path = ../../src/tiff/libtiff/tif_next.c; sourceTree = SOURCE_ROOT; }; + AB634FD597793A74B3B3AA7F /* docview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docview.cpp; path = ../../src/common/docview.cpp; sourceTree = SOURCE_ROOT; }; + CF502E0E4D853CBBBEC885EF /* LexerSimple.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerSimple.cxx; path = ../../src/stc/lexilla/lexlib/LexerSimple.cxx; sourceTree = SOURCE_ROOT; }; + CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webviewfshandler.cpp; path = ../../src/common/webviewfshandler.cpp; sourceTree = SOURCE_ROOT; }; + 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = filter_sse2_intrinsics.c; path = ../../src/png/intel/filter_sse2_intrinsics.c; sourceTree = SOURCE_ROOT; }; + D0CDADAF2D893E32A38351E4 /* tif_aux.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_aux.c; path = ../../src/tiff/libtiff/tif_aux.c; sourceTree = SOURCE_ROOT; }; + 274A156457C63EC5801029C2 /* CaseConvert.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CaseConvert.cxx; path = ../../src/stc/scintilla/src/CaseConvert.cxx; sourceTree = SOURCE_ROOT; }; + 2ACC8667173D3AB09F6214F5 /* sound.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cpp; path = ../../src/osx/carbon/sound.cpp; sourceTree = SOURCE_ROOT; }; 0D9828C9BD9633C1A8F4E0CD /* LexRebol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRebol.cxx; path = ../../src/stc/lexilla/lexers/LexRebol.cxx; sourceTree = SOURCE_ROOT; }; - 3116006345D833509865FF7F /* xh_bannerwindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bannerwindow.cpp; path = ../../src/xrc/xh_bannerwindow.cpp; sourceTree = SOURCE_ROOT; }; - E9B31409EC6532FC83B0B957 /* textmeasure.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textmeasure.cpp; path = ../../src/generic/textmeasure.cpp; sourceTree = SOURCE_ROOT; }; - C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AutoComplete.cxx; path = ../../src/stc/scintilla/src/AutoComplete.cxx; sourceTree = SOURCE_ROOT; }; - E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = KeyMap.cxx; path = ../../src/stc/scintilla/src/KeyMap.cxx; sourceTree = SOURCE_ROOT; }; - C25521AF59B9324EB2809C73 /* XPM.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = XPM.cxx; path = ../../src/stc/scintilla/src/XPM.cxx; sourceTree = SOURCE_ROOT; }; - A1276C0E5D48337489DEE8DF /* LexErlang.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexErlang.cxx; path = ../../src/stc/lexilla/lexers/LexErlang.cxx; sourceTree = SOURCE_ROOT; }; - 9389DAF8B91030B7AAB029FF /* PerLine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PerLine.cxx; path = ../../src/stc/scintilla/src/PerLine.cxx; sourceTree = SOURCE_ROOT; }; - 20B922D61CDB3CCEB59A5194 /* convauto.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = convauto.cpp; path = ../../src/common/convauto.cpp; sourceTree = SOURCE_ROOT; }; - 4FE0B33481283D3493613B0F /* config.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = config.cpp; path = ../../src/common/config.cpp; sourceTree = SOURCE_ROOT; }; - C64705CE9398316D87BAB4DC /* logg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = logg.cpp; path = ../../src/generic/logg.cpp; sourceTree = SOURCE_ROOT; }; - ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ffile.cpp; path = ../../src/common/ffile.cpp; sourceTree = SOURCE_ROOT; }; - F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_panel.cpp; path = ../../src/xrc/xh_panel.cpp; sourceTree = SOURCE_ROOT; }; + 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timerunx.cpp; path = ../../src/unix/timerunx.cpp; sourceTree = SOURCE_ROOT; }; + 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datavcmn.cpp; path = ../../src/common/datavcmn.cpp; sourceTree = SOURCE_ROOT; }; + 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrlsub.cpp; path = ../../src/common/ctrlsub.cpp; sourceTree = SOURCE_ROOT; }; + 47FF6D792CA234C395692118 /* PlatWX.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PlatWX.cpp; path = ../../src/stc/PlatWX.cpp; sourceTree = SOURCE_ROOT; }; + 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webviewarchivehandler.cpp; path = ../../src/common/webviewarchivehandler.cpp; sourceTree = SOURCE_ROOT; }; + 24E82A05E9A9323287CDB15B /* artstd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artstd.cpp; path = ../../src/common/artstd.cpp; sourceTree = SOURCE_ROOT; }; + 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_fontpicker.cpp; path = ../../src/xrc/xh_fontpicker.cpp; sourceTree = SOURCE_ROOT; }; + 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notifmsgg.cpp; path = ../../src/generic/notifmsgg.cpp; sourceTree = SOURCE_ROOT; }; + 5D2F8259CC99380CB8217DEF /* tif_unix.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_unix.c; path = ../../src/tiff/libtiff/tif_unix.c; sourceTree = SOURCE_ROOT; }; + 1EF103B09F02315282EC8F44 /* srchcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchcmn.cpp; path = ../../src/common/srchcmn.cpp; sourceTree = SOURCE_ROOT; }; + 18ABDAF9EF723072A7708009 /* PlatWXcocoa.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = PlatWXcocoa.mm; path = ../../src/stc/PlatWXcocoa.mm; sourceTree = SOURCE_ROOT; }; + FBC5A5797B0D369291A76D6E /* dcbufcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcbufcmn.cpp; path = ../../src/common/dcbufcmn.cpp; sourceTree = SOURCE_ROOT; }; + 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEDIFACT.cxx; path = ../../src/stc/lexilla/lexers/LexEDIFACT.cxx; sourceTree = SOURCE_ROOT; }; + E1B1FBB2BCC43BA7A45E9438 /* listctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listctrlcmn.cpp; path = ../../src/common/listctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + 832BBBFE664736D5978420C6 /* fmapbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmapbase.cpp; path = ../../src/common/fmapbase.cpp; sourceTree = SOURCE_ROOT; }; + 032A38738B58394E8617617B /* tif_dirinfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirinfo.c; path = ../../src/tiff/libtiff/tif_dirinfo.c; sourceTree = SOURCE_ROOT; }; + 67DCEEB6861731319C30817F /* cshelp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cshelp.cpp; path = ../../src/common/cshelp.cpp; sourceTree = SOURCE_ROOT; }; + 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCrontab.cxx; path = ../../src/stc/lexilla/lexers/LexCrontab.cxx; sourceTree = SOURCE_ROOT; }; + CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hyperlinkg.cpp; path = ../../src/generic/hyperlinkg.cpp; sourceTree = SOURCE_ROOT; }; + DE8701E1CF2B352B945C17E5 /* valtext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valtext.cpp; path = ../../src/common/valtext.cpp; sourceTree = SOURCE_ROOT; }; + DD09A813E10A31C19554B425 /* affinematrix2d.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = affinematrix2d.cpp; path = ../../src/common/affinematrix2d.cpp; sourceTree = SOURCE_ROOT; }; + 701B84EE7C043B539FF5195A /* textbuf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbuf.cpp; path = ../../src/common/textbuf.cpp; sourceTree = SOURCE_ROOT; }; + FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_srchctrl.cpp; path = ../../src/xrc/xh_srchctrl.cpp; sourceTree = SOURCE_ROOT; }; + 24DF23D67E693D999B875101 /* toolbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbkg.cpp; path = ../../src/generic/toolbkg.cpp; sourceTree = SOURCE_ROOT; }; + 29D6506AEA5A323B8735F126 /* pngread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngread.c; path = ../../src/png/pngread.c; sourceTree = SOURCE_ROOT; }; + C125FA3837C631A9BE0ED5E7 /* splitter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splitter.cpp; path = ../../src/generic/splitter.cpp; sourceTree = SOURCE_ROOT; }; + EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fddlgcmn.cpp; path = ../../src/common/fddlgcmn.cpp; sourceTree = SOURCE_ROOT; }; + B60497805D37375EBFCF3D98 /* pcre2_tables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_tables.c; path = ../../3rdparty/pcre/src/pcre2_tables.c; sourceTree = SOURCE_ROOT; }; + 5FFCF47A161B3E08B19BFE14 /* jdsample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdsample.c; path = ../../src/jpeg/jdsample.c; sourceTree = SOURCE_ROOT; }; + 00969CBE3B8F32C78C195619 /* panel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = panel.cpp; path = ../../src/ribbon/panel.cpp; sourceTree = SOURCE_ROOT; }; + 1BC0322549563787A21CE8F1 /* LexNsis.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNsis.cxx; path = ../../src/stc/lexilla/lexers/LexNsis.cxx; sourceTree = SOURCE_ROOT; }; + 1731D6708BFE3DE7B101CE74 /* object.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = object.cpp; path = ../../src/common/object.cpp; sourceTree = SOURCE_ROOT; }; + 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctfst.c; path = ../../src/jpeg/jfdctfst.c; sourceTree = SOURCE_ROOT; }; + BEB08798C70E33DDB360E563 /* layout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layout.cpp; path = ../../src/common/layout.cpp; sourceTree = SOURCE_ROOT; }; + D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = markuptext.cpp; path = ../../src/generic/markuptext.cpp; sourceTree = SOURCE_ROOT; }; + FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontpickerg.cpp; path = ../../src/generic/fontpickerg.cpp; sourceTree = SOURCE_ROOT; }; + 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_predict.c; path = ../../src/tiff/libtiff/tif_predict.c; sourceTree = SOURCE_ROOT; }; + 5BE1FB352696346BB642C045 /* secretstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = secretstore.cpp; path = ../../src/osx/core/secretstore.cpp; sourceTree = SOURCE_ROOT; }; + 2851EAAEE9B73FE8981912C9 /* LexErrorList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexErrorList.cxx; path = ../../src/stc/lexilla/lexers/LexErrorList.cxx; sourceTree = SOURCE_ROOT; }; + 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = styleparams.cpp; path = ../../src/html/styleparams.cpp; sourceTree = SOURCE_ROOT; }; + CC2E24773D853A77B9FEFA4C /* scrolbar.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = scrolbar.mm; path = ../../src/osx/cocoa/scrolbar.mm; sourceTree = SOURCE_ROOT; }; + 7FCA75FE592C3469AE351FBF /* winpars.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winpars.cpp; path = ../../src/html/winpars.cpp; sourceTree = SOURCE_ROOT; }; + EF330EAACFA53877BE289896 /* matrix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = matrix.cpp; path = ../../src/common/matrix.cpp; sourceTree = SOURCE_ROOT; }; + 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpwnd.cpp; path = ../../src/html/helpwnd.cpp; sourceTree = SOURCE_ROOT; }; + DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerModule.cxx; path = ../../src/stc/lexilla/lexlib/LexerModule.cxx; sourceTree = SOURCE_ROOT; }; + D4A23A8BC7373D4BBD72851D /* apptraits.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = apptraits.cpp; path = ../../src/unix/apptraits.cpp; sourceTree = SOURCE_ROOT; }; + EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webrequest_urlsession.mm; path = ../../src/osx/webrequest_urlsession.mm; sourceTree = SOURCE_ROOT; }; + 7925E38823563BCDB5565DCF /* treebkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treebkg.cpp; path = ../../src/generic/treebkg.cpp; sourceTree = SOURCE_ROOT; }; + E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLaTeX.cxx; path = ../../src/stc/lexilla/lexers/LexLaTeX.cxx; sourceTree = SOURCE_ROOT; }; + B568A7364ECA30288820CCE7 /* mdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mdi.cpp; path = ../../src/osx/carbon/mdi.cpp; sourceTree = SOURCE_ROOT; }; + 684D92E552BE313CBE0A88AA /* valnum.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valnum.cpp; path = ../../src/common/valnum.cpp; sourceTree = SOURCE_ROOT; }; + 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_auitoolb.cpp; path = ../../src/xrc/xh_auitoolb.cpp; sourceTree = SOURCE_ROOT; }; + DC8A52CA69053B27B09F1037 /* filedlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = filedlg.mm; path = ../../src/osx/cocoa/filedlg.mm; sourceTree = SOURCE_ROOT; }; + BEF6B3FB66243812969E5BD1 /* palette.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = palette.cpp; path = ../../src/osx/palette.cpp; sourceTree = SOURCE_ROOT; }; + 1AD9605C9385374C87FAC9BC /* LexECL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexECL.cxx; path = ../../src/stc/lexilla/lexers/LexECL.cxx; sourceTree = SOURCE_ROOT; }; + 168DB301ACC736FF96D7F581 /* file.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file.cpp; path = ../../src/common/file.cpp; sourceTree = SOURCE_ROOT; }; + 64B25B87203E3464BCDD277D /* tif_read.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_read.c; path = ../../src/tiff/libtiff/tif_read.c; sourceTree = SOURCE_ROOT; }; + FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_valid_utf.c; path = ../../3rdparty/pcre/src/pcre2_valid_utf.c; sourceTree = SOURCE_ROOT; }; + 080597FC0436378E96EDA94B /* m_links.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_links.cpp; path = ../../src/html/m_links.cpp; sourceTree = SOURCE_ROOT; }; + DC3D1E222FD93A69B1D1366E /* mstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mstream.cpp; path = ../../src/common/mstream.cpp; sourceTree = SOURCE_ROOT; }; + 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_slidr.cpp; path = ../../src/xrc/xh_slidr.cpp; sourceTree = SOURCE_ROOT; }; + A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rowheightcache.cpp; path = ../../src/generic/rowheightcache.cpp; sourceTree = SOURCE_ROOT; }; + B61D36546E97371FAC5D4565 /* LexStata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexStata.cxx; path = ../../src/stc/lexilla/lexers/LexStata.cxx; sourceTree = SOURCE_ROOT; }; + 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchctrl_osx.cpp; path = ../../src/osx/srchctrl_osx.cpp; sourceTree = SOURCE_ROOT; }; + 20E4A10BCD773C84AEC481A1 /* jdmarker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmarker.c; path = ../../src/jpeg/jdmarker.c; sourceTree = SOURCE_ROOT; }; + F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_extuni.c; path = ../../3rdparty/pcre/src/pcre2_extuni.c; sourceTree = SOURCE_ROOT; }; + B98B72B3A0A73044B85AED60 /* propgrid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgrid.cpp; path = ../../src/propgrid/propgrid.cpp; sourceTree = SOURCE_ROOT; }; + 5CB4781DF8C432C688F30CDD /* ftp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftp.cpp; path = ../../src/common/ftp.cpp; sourceTree = SOURCE_ROOT; }; + 97FFB03FF6793506B246BAC6 /* platinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = platinfo.cpp; path = ../../src/common/platinfo.cpp; sourceTree = SOURCE_ROOT; }; 972BC9B2B0D438EFB12BCE1E /* rearrangectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rearrangectrl.cpp; path = ../../src/common/rearrangectrl.cpp; sourceTree = SOURCE_ROOT; }; - 6831AA74AB5B38D5AA6946D7 /* settings.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = settings.mm; path = ../../src/osx/cocoa/settings.mm; sourceTree = SOURCE_ROOT; }; - CBA9036479943A4990CEB3AC /* webview_chromium.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webview_chromium.mm; path = ../../src/osx/webview_chromium.mm; sourceTree = SOURCE_ROOT; }; - A5BBC1E494D33D028CA547FF /* jddctmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jddctmgr.c; path = ../../src/jpeg/jddctmgr.c; sourceTree = SOURCE_ROOT; }; - 2F94CF171F4532B89FECF475 /* busyinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = busyinfo.cpp; path = ../../src/generic/busyinfo.cpp; sourceTree = SOURCE_ROOT; }; - F951601E73683F27AD8CA99D /* MarginView.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MarginView.cxx; path = ../../src/stc/scintilla/src/MarginView.cxx; sourceTree = SOURCE_ROOT; }; - 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDiff.cxx; path = ../../src/stc/lexilla/lexers/LexDiff.cxx; sourceTree = SOURCE_ROOT; }; - 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_substring.c; path = ../../3rdparty/pcre/src/pcre2_substring.c; sourceTree = SOURCE_ROOT; }; - 5F84098A475939BB9EE87E70 /* imagbmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagbmp.cpp; path = ../../src/common/imagbmp.cpp; sourceTree = SOURCE_ROOT; }; - 496674699F173A5385EAFF07 /* calctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calctrlg.cpp; path = ../../src/generic/calctrlg.cpp; sourceTree = SOURCE_ROOT; }; - 86884BC843F6337EABF744BB /* jdapimin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapimin.c; path = ../../src/jpeg/jdapimin.c; sourceTree = SOURCE_ROOT; }; + 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tokenzr.cpp; path = ../../src/common/tokenzr.cpp; sourceTree = SOURCE_ROOT; }; + 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_sizer.cpp; path = ../../src/xrc/xh_sizer.cpp; sourceTree = SOURCE_ROOT; }; 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fdiounix.cpp; path = ../../src/unix/fdiounix.cpp; sourceTree = SOURCE_ROOT; }; - CCF7564A2B733F759AA8496B /* jdinput.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdinput.c; path = ../../src/jpeg/jdinput.c; sourceTree = SOURCE_ROOT; }; - 8D2549709E0133C9A267E3A5 /* evtloop.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = evtloop.mm; path = ../../src/osx/cocoa/evtloop.mm; sourceTree = SOURCE_ROOT; }; - B3645350F572364BABF50238 /* containr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = containr.cpp; path = ../../src/common/containr.cpp; sourceTree = SOURCE_ROOT; }; - A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animatecmn.cpp; path = ../../src/common/animatecmn.cpp; sourceTree = SOURCE_ROOT; }; - 137E01C362E134449BF966ED /* imagfill.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagfill.cpp; path = ../../src/common/imagfill.cpp; sourceTree = SOURCE_ROOT; }; - 4048A3523EC03409BD899BEF /* xtixml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xtixml.cpp; path = ../../src/common/xtixml.cpp; sourceTree = SOURCE_ROOT; }; - 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textcmn.cpp; path = ../../src/common/textcmn.cpp; sourceTree = SOURCE_ROOT; }; - 58EFF24DE2E737CA8A164F5C /* LexEScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEScript.cxx; path = ../../src/stc/lexilla/lexers/LexEScript.cxx; sourceTree = SOURCE_ROOT; }; - 9CAA325362C73AC8BE20FAA7 /* pngpread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngpread.c; path = ../../src/png/pngpread.c; sourceTree = SOURCE_ROOT; }; - 5612DBC4125B379DA2B28825 /* buttonbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = buttonbar.cpp; path = ../../src/generic/buttonbar.cpp; sourceTree = SOURCE_ROOT; }; - 41AE72D4E8FF307F86A02F5F /* LexIndent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexIndent.cxx; path = ../../src/stc/lexilla/lexers/LexIndent.cxx; sourceTree = SOURCE_ROOT; }; - 5EA9E372A64B3B808A64B178 /* webrequest.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webrequest.cpp; path = ../../src/common/webrequest.cpp; sourceTree = SOURCE_ROOT; }; + E29A8279BAEE303B95C9D3C6 /* LexGDScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexGDScript.cxx; path = ../../src/stc/lexilla/lexers/LexGDScript.cxx; sourceTree = SOURCE_ROOT; }; + 2E24C6F2A04E30EB95598305 /* chm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = chm.cpp; path = ../../src/html/chm.cpp; sourceTree = SOURCE_ROOT; }; + FA9DD56E399533A5BE7AAD16 /* jdarith.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdarith.c; path = ../../src/jpeg/jdarith.c; sourceTree = SOURCE_ROOT; }; + D016F584D14C31E192DB3179 /* pcre2_maketables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_maketables.c; path = ../../3rdparty/pcre/src/pcre2_maketables.c; sourceTree = SOURCE_ROOT; }; + 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdlg_osx.cpp; path = ../../src/osx/printdlg_osx.cpp; sourceTree = SOURCE_ROOT; }; + D1EE17722EA937E88A7F0C01 /* dcbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcbase.cpp; path = ../../src/common/dcbase.cpp; sourceTree = SOURCE_ROOT; }; + C466F32CCBD13DBC87285B3D /* helpdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdata.cpp; path = ../../src/html/helpdata.cpp; sourceTree = SOURCE_ROOT; }; + 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileconf.cpp; path = ../../src/common/fileconf.cpp; sourceTree = SOURCE_ROOT; }; + 358D0A3AC73F322EA732D020 /* pngrutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrutil.c; path = ../../src/png/pngrutil.c; sourceTree = SOURCE_ROOT; }; + 91300EB871CC39ECBC430D48 /* pngget.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngget.c; path = ../../src/png/pngget.c; sourceTree = SOURCE_ROOT; }; + D87406BCF3E833369E12D89A /* LexHTML.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHTML.cxx; path = ../../src/stc/lexilla/lexers/LexHTML.cxx; sourceTree = SOURCE_ROOT; }; + A208BFC0C8C43847A9620ADA /* pcre2_newline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_newline.c; path = ../../3rdparty/pcre/src/pcre2_newline.c; sourceTree = SOURCE_ROOT; }; + 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlpars.cpp; path = ../../src/html/htmlpars.cpp; sourceTree = SOURCE_ROOT; }; + 23FC98E2305230E2990471E3 /* wxcrt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wxcrt.cpp; path = ../../src/common/wxcrt.cpp; sourceTree = SOURCE_ROOT; }; + CA0D5D47D62A3148BA51B31B /* tif_compress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_compress.c; path = ../../src/tiff/libtiff/tif_compress.c; sourceTree = SOURCE_ROOT; }; + 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = epolldispatcher.cpp; path = ../../src/unix/epolldispatcher.cpp; sourceTree = SOURCE_ROOT; }; + E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_data.cpp; path = ../../src/common/fs_data.cpp; sourceTree = SOURCE_ROOT; }; + 741E9B48274638CD9DD73698 /* bmpsvg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpsvg.cpp; path = ../../src/generic/bmpsvg.cpp; sourceTree = SOURCE_ROOT; }; + 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_substring.c; path = ../../3rdparty/pcre/src/pcre2_substring.c; sourceTree = SOURCE_ROOT; }; + 853C2741D98438DA90B87D90 /* LexBatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBatch.cxx; path = ../../src/stc/lexilla/lexers/LexBatch.cxx; sourceTree = SOURCE_ROOT; }; + 0BF1F491B8A8376E8E2E8182 /* cursor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cursor.cpp; path = ../../src/osx/carbon/cursor.cpp; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -5418,6 +5418,15 @@ name = Products; sourceTree = ""; }; + 5C5CD199E7573C73AE6F392D /* media */ = { + isa = PBXGroup; + children = ( + C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */, + 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */, + ); + name = media; + sourceTree = ""; + }; 1D56230B75893DBA8A923441 /* wxcocoa */ = { isa = PBXGroup; children = ( @@ -5457,140 +5466,6 @@ name = wxcocoa; sourceTree = ""; }; - 7650A73F7FC9305EA62DAE86 /* libjpeg */ = { - isa = PBXGroup; - children = ( - 573D0D15EE9E3E629D61EA65 /* jaricom.c */, - 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */, - F83172EE2DAE352FB969D4F2 /* jcapistd.c */, - AA234ACC79743DA797601AA6 /* jcarith.c */, - E89AC104BF4F33A083F8B382 /* jccoefct.c */, - 8EFF4707641D3F20AB602ED6 /* jccolor.c */, - 6DBF3053414F3C448312165A /* jcdctmgr.c */, - DC0FFDC7A6163F2DA73B84EB /* jchuff.c */, - AA6C6739C3BD3EFA9CF71102 /* jcinit.c */, - 810EB7316DF3344197C78EC0 /* jcmainct.c */, - 664736BDE465350C9C4750E9 /* jcmarker.c */, - 3E3043D7BE9C33B59E900CCE /* jcmaster.c */, - 8EB76F786D7F3FF286948D22 /* jcomapi.c */, - 2F41EDEB298538CC86FF6DC1 /* jcparam.c */, - 7FE0455EBDC63D82B2D88587 /* jcprepct.c */, - 53D06E47477B3E32BB6B915E /* jcsample.c */, - 725574EF98C4301989181CBF /* jctrans.c */, - 86884BC843F6337EABF744BB /* jdapimin.c */, - 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */, - FA9DD56E399533A5BE7AAD16 /* jdarith.c */, - 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */, - DECAF5DD80383A2CA76EB383 /* jdatasrc.c */, - F1A6F3936A0D31CBB58082BA /* jdcoefct.c */, - 68B81FBDA49D3C1991B6356A /* jdcolor.c */, - A5BBC1E494D33D028CA547FF /* jddctmgr.c */, - 72869747E68E37998CB0A07E /* jdhuff.c */, - CCF7564A2B733F759AA8496B /* jdinput.c */, - B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */, - 20E4A10BCD773C84AEC481A1 /* jdmarker.c */, - ED19EF377E653F71B1876259 /* jdmaster.c */, - 0890779C662C35889A8C6C2E /* jdmerge.c */, - 375FF97B202F3C359402D13E /* jdpostct.c */, - 5FFCF47A161B3E08B19BFE14 /* jdsample.c */, - 4549845C0751356A907C23E0 /* jdtrans.c */, - 108517BCD39230E7A89BC943 /* jerror.c */, - 93D07403FCA530D7A9FD2917 /* jfdctflt.c */, - 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */, - 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */, - 3C131F7BF8A83960ACB26242 /* jidctflt.c */, - A0DCC5EF59143640BE13AD73 /* jidctfst.c */, - 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */, - 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */, - 374E341C8703367686DEDE93 /* jmemnobs.c */, - 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */, - 02D9332D5C5632E981936E29 /* jquant2.c */, - 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */, - ); - name = libjpeg; - sourceTree = ""; - }; - E96566B813153B4295AD767B /* stc */ = { - isa = PBXGroup; - children = ( - D0B9C41A4D12345AAA764CAD /* stc.cpp */, - 47FF6D792CA234C395692118 /* PlatWX.cpp */, - 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */, - A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */, - 18ABDAF9EF723072A7708009 /* PlatWXcocoa.mm */, - ); - name = stc; - sourceTree = ""; - }; - 52DDFBAA5ACC394FB6B30E74 /* libzlib */ = { - isa = PBXGroup; - children = ( - 0E45F6DF601A34BCB3CC0206 /* adler32.c */, - D4C4495603293C07A3B09D54 /* compress.c */, - 7013DB195D023C31ADE68546 /* crc32.c */, - 3CF73F49AEC238C99CE89845 /* deflate.c */, - 7A24E9101688368296C21EBE /* gzclose.c */, - 7395814D42CC38F6B8CD81B4 /* gzlib.c */, - BAD4614CABC934D6AFF8D9CD /* gzread.c */, - 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */, - FDB0E2D0966C3E408C4A2D3D /* infback.c */, - 400275BE019D3E5BA47988BE /* inffast.c */, - B5370A676AAC32419D7FDD87 /* inflate.c */, - 9D6B0D32537D35069C7E053F /* inftrees.c */, - 95B4EDF38F8A3E5EBAFF560F /* trees.c */, - 513033E36E643593AC305B3D /* uncompr.c */, - 4CB467F9898C3952A68D988B /* zutil.c */, - ); - name = libzlib; - sourceTree = ""; - }; - EB288BE7E74B3328B762A461 /* libtiff */ = { - isa = PBXGroup; - children = ( - 5D2F8259CC99380CB8217DEF /* tif_unix.c */, - D0CDADAF2D893E32A38351E4 /* tif_aux.c */, - F82278F9AF0432529891E6D7 /* tif_close.c */, - 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */, - 149D299A0EDB3D998118EC93 /* tif_color.c */, - CA0D5D47D62A3148BA51B31B /* tif_compress.c */, - E79B2D1F630036129B9677A7 /* tif_dir.c */, - 032A38738B58394E8617617B /* tif_dirinfo.c */, - F6EA240B3DB93D398A990FAD /* tif_dirread.c */, - B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */, - 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */, - 48F1439BF6C3361296F05A33 /* tif_error.c */, - AF7CE00168AB33C994374ABA /* tif_extension.c */, - 30FD1048328234E59D319863 /* tif_fax3.c */, - BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */, - 305614D19CF23CB2B14A5B2E /* tif_flush.c */, - 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */, - F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */, - 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */, - 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */, - 66FDA882451239EA8DF2E0B5 /* tif_luv.c */, - 3088384F07C63A5DB3581656 /* tif_lzma.c */, - 346C68F0CCD23823B78267F0 /* tif_lzw.c */, - DFDC805DD3063C389F93642D /* tif_next.c */, - 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */, - 1731A6096BFC3A468AB4755A /* tif_open.c */, - 9CE73979D0933A43830307E4 /* tif_packbits.c */, - 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */, - 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */, - 64B25B87203E3464BCDD277D /* tif_read.c */, - B83EDE2D1731311ABDE62F9F /* tif_strip.c */, - AAC12B4456E13F57BEA25A5E /* tif_swab.c */, - 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */, - BD88495AF72531A28D2201D0 /* tif_tile.c */, - 3E6F40F4740C3ED29D83E107 /* tif_version.c */, - C83C97A1FCC5345896C9D7DE /* tif_warning.c */, - 3716DA7B0C79360CBA26A71E /* tif_webp.c */, - E9B992CB6C28339FB0CA5E27 /* tif_write.c */, - 726C0457DF1232C793918DC1 /* tif_zip.c */, - 3B98123FD57731139044B064 /* tif_zstd.c */, - ); - name = libtiff; - sourceTree = ""; - }; 374BD863E6AD33189B7E4040 /* net */ = { isa = PBXGroup; children = ( @@ -5599,135 +5474,89 @@ F84F0DB790A23D92A193D2B4 /* http.cpp */, 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */, DE8238DA30FF3FB984511250 /* sckaddr.cpp */, - 56653FACC7D13804A70556AD /* sckfile.cpp */, - 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */, - D784A32C094730FEAA391A9B /* sckstrm.cpp */, - 40CE02524DD4385AB2C3DF95 /* socket.cpp */, - 49612306912038DDBCABB4DE /* url.cpp */, - 5EA9E372A64B3B808A64B178 /* webrequest.cpp */, - 5279968877003A8BB8279765 /* webrequest_curl.cpp */, - DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */, - BB7661E9E09A397790ED9545 /* sockunix.cpp */, - 4969528429903F15882F5391 /* sockosx.cpp */, - EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */, - ); - name = net; - sourceTree = ""; - }; - 4D98B791E17232D39944F04F /* xml */ = { - isa = PBXGroup; - children = ( - E6AB648BC5173104A96CAE66 /* xml.cpp */, - 4048A3523EC03409BD899BEF /* xtixml.cpp */, - ); - name = xml; - sourceTree = ""; - }; - 62E50658BDAD369D92294F68 /* webview */ = { - isa = PBXGroup; - children = ( - CBA9036479943A4990CEB3AC /* webview_chromium.mm */, - 5FEECFD764E037288CE94FEB /* webview_webkit.mm */, - 0DA80913C0E33144A42BD30F /* webview.cpp */, - 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */, - CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */, - 2718D06670953933B897B0D8 /* webview_chromium.cpp */, + 56653FACC7D13804A70556AD /* sckfile.cpp */, + 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */, + D784A32C094730FEAA391A9B /* sckstrm.cpp */, + 40CE02524DD4385AB2C3DF95 /* socket.cpp */, + 49612306912038DDBCABB4DE /* url.cpp */, + 5EA9E372A64B3B808A64B178 /* webrequest.cpp */, + 5279968877003A8BB8279765 /* webrequest_curl.cpp */, + DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */, + BB7661E9E09A397790ED9545 /* sockunix.cpp */, + 4969528429903F15882F5391 /* sockosx.cpp */, + EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */, ); - name = webview; + name = net; sourceTree = ""; }; - 60E51BFF5CD2327483201F14 /* html */ = { + B1EF68113C6338CFBBED0FBE /* libregex */ = { isa = PBXGroup; children = ( - 2E24C6F2A04E30EB95598305 /* chm.cpp */, - 42E433D1700631A8907B8227 /* helpctrl.cpp */, - C466F32CCBD13DBC87285B3D /* helpdata.cpp */, - 81821049E39B32C6ABCF6820 /* helpdlg.cpp */, - 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */, - 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */, - 68E5188DB6003C35A8C7754D /* htmlcell.cpp */, - 2C6C4F5468743265A02D656C /* htmlfilt.cpp */, - 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */, - FCCFF49F92B4323D9181CEDA /* htmltag.cpp */, - 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */, - 194ADD28300E329E80F7892E /* htmprint.cpp */, - 52FE1599218730CC99A3F801 /* m_dflist.cpp */, - B1F3C70512D93501B0478F3E /* m_fonts.cpp */, - ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */, - 548906E4E72935E48CE4AF87 /* m_image.cpp */, - A5EE0B8985443BDCB36F781F /* m_layout.cpp */, - 080597FC0436378E96EDA94B /* m_links.cpp */, - B4028ABB08C63AB59F5F240B /* m_list.cpp */, - 61658C3EABB4341AA38C691E /* m_pre.cpp */, - 727F25F832AD32D4B12D8E39 /* m_span.cpp */, - 7EB95BCFA255323183A996C9 /* m_style.cpp */, - 082CA018FB883999839C1DCE /* m_tables.cpp */, - 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */, - 7FCA75FE592C3469AE351FBF /* winpars.cpp */, - FD5F11A3646F397BA62EB037 /* htmllbox.cpp */, + C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */, + BDADEB1DA6433E52972C8934 /* pcre2_compile.c */, + FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */, + 3026D20A03E53F1DB40FB35A /* pcre2_context.c */, + BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */, + 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */, + 25E03E349FC13E4A9428B94E /* pcre2_error.c */, + F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */, + 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */, + 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */, + D016F584D14C31E192DB3179 /* pcre2_maketables.c */, + 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */, + 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */, + A208BFC0C8C43847A9620ADA /* pcre2_newline.c */, + 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */, + 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */, + 2F4CDF9048EC36788619769D /* pcre2_script_run.c */, + BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */, + A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */, + 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */, + FAC42945539F362D91D6F559 /* pcre2_substitute.c */, + 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */, + B60497805D37375EBFCF3D98 /* pcre2_tables.c */, + 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */, + FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */, + 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */, + 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */, ); - name = html; + name = libregex; sourceTree = ""; }; - B8F95052522B37AB86DA8917 /* propgrid */ = { + 42F504C4994C38D7A8F062F4 /* libexpat */ = { isa = PBXGroup; children = ( - 326723AEB79A305F90D6B41D /* advprops.cpp */, - A9C7F740A55E39FD890B3C7F /* editors.cpp */, - EBED392D081335FA80523244 /* manager.cpp */, - 58E1F571B01F34D4AB70CA18 /* property.cpp */, - B98B72B3A0A73044B85AED60 /* propgrid.cpp */, - 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */, - 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */, - C20E46A504113C899B9DD9B7 /* props.cpp */, - D73962222F573116BE63576C /* xh_propgrid.cpp */, + A92B6033D8233DB1821F193B /* xmlparse.c */, + 59C6B9849FF6325E890942EF /* xmlrole.c */, + 8685B8ED68F23DB0B770FD74 /* xmltok.c */, ); - name = propgrid; + name = libexpat; sourceTree = ""; }; - 64B126D857113F24BA8C4758 /* richtext */ = { + 816DD323A67F3B299C8F3481 /* opengl */ = { isa = PBXGroup; children = ( - 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */, - FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */, - C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */, - 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */, - 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */, - C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */, - 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */, - D30617843F33310089C1F77A /* richtextstyles.cpp */, - BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */, - C69E48C06BD23C178F650E42 /* richtextxml.cpp */, - 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */, + E08A51FA8D8A361681B07295 /* glcmn.cpp */, + 35007225BB683683AA7C5E48 /* glcanvas.mm */, + FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */, ); - name = richtext; + name = opengl; sourceTree = ""; }; - 6E2C8858F68E3FB0BEFFFCE5 /* libpng */ = { + 04311EAB76193D5593D43DBB /* aui */ = { isa = PBXGroup; children = ( - AF26BAB1F4733114926F1724 /* png.c */, - 1A0650754DC2358CA5933B28 /* pngerror.c */, - 91300EB871CC39ECBC430D48 /* pngget.c */, - C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */, - 9CAA325362C73AC8BE20FAA7 /* pngpread.c */, - 29D6506AEA5A323B8735F126 /* pngread.c */, - A06AB1974DB93EE2999EC75C /* pngrio.c */, - 87799D3168B43EB7B5686826 /* pngrtran.c */, - 358D0A3AC73F322EA732D020 /* pngrutil.c */, - 5E463A493FD930DE80E58608 /* pngset.c */, - 5B32A13D5B3336098B1B9765 /* pngtrans.c */, - AF9EE701DD653E2299293E5F /* pngwio.c */, - 69A6CAF721E53E83B4820DE6 /* pngwrite.c */, - 0964797530CF3FE7B8DB6242 /* pngwtran.c */, - 45D7558DF5E03A2EB41883F0 /* pngwutil.c */, - 933D7637CAA43F6C99814BC5 /* arm_init.c */, - 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */, - FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */, - 994AF74DF2A13FF09A215853 /* intel_init.c */, - 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */, + 26632A254717372BAA4D514D /* framemanager.cpp */, + BD709DEB71623974B9836D69 /* dockart.cpp */, + A881F49ADCF33C299B041584 /* floatpane.cpp */, + A298576700C33F018616E7BD /* auibook.cpp */, + 05A4437E9697300390FDE14E /* auibar.cpp */, + C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */, + 51054B41BFD83E97BAF76D07 /* tabart.cpp */, + C55AF552EE6931E8BFF7281B /* xh_aui.cpp */, + 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */, ); - name = libpng; + name = aui; sourceTree = ""; }; FE1C78F1707A30878CBB2B4B /* ribbon */ = { @@ -5738,7 +5567,7 @@ DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */, 9FDDE855D9F83E4891362EB4 /* bar.cpp */, 5612DBC4125B379DA2B28824 /* buttonbar.cpp */, - 12363D1F50FE301DAEE7F04A /* control.cpp */, + 12363D1F50FE301DAEE7F04B /* control.cpp */, 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */, 59ED0C057D8F388A89DC7177 /* page.cpp */, 00969CBE3B8F32C78C195619 /* panel.cpp */, @@ -5748,14 +5577,17 @@ name = ribbon; sourceTree = ""; }; - 42F504C4994C38D7A8F062F4 /* libexpat */ = { + 62E50658BDAD369D92294F68 /* webview */ = { isa = PBXGroup; children = ( - A92B6033D8233DB1821F193B /* xmlparse.c */, - 59C6B9849FF6325E890942EF /* xmlrole.c */, - 8685B8ED68F23DB0B770FD74 /* xmltok.c */, + CBA9036479943A4990CEB3AC /* webview_chromium.mm */, + 5FEECFD764E037288CE94FEB /* webview_webkit.mm */, + 0DA80913C0E33144A42BD30F /* webview.cpp */, + 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */, + CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */, + 2718D06670953933B897B0D8 /* webview_chromium.cpp */, ); - name = libexpat; + name = webview; sourceTree = ""; }; 60328E6EA3793DA990E18FC1 /* xrc */ = { @@ -5826,6 +5658,7 @@ 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */, B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */, 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */, + 4466008861AA37CFB13A46EF /* xh_vlistbox.cpp */, EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */, 087B66573CD33DA99DA82B1C /* xmlres.cpp */, 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */, @@ -5834,110 +5667,38 @@ name = xrc; sourceTree = ""; }; - B1EF68113C6338CFBBED0FBE /* libregex */ = { - isa = PBXGroup; - children = ( - C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */, - BDADEB1DA6433E52972C8934 /* pcre2_compile.c */, - FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */, - 3026D20A03E53F1DB40FB35A /* pcre2_context.c */, - BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */, - 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */, - 25E03E349FC13E4A9428B94E /* pcre2_error.c */, - F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */, - 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */, - 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */, - D016F584D14C31E192DB3179 /* pcre2_maketables.c */, - 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */, - 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */, - A208BFC0C8C43847A9620ADA /* pcre2_newline.c */, - 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */, - 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */, - 2F4CDF9048EC36788619769D /* pcre2_script_run.c */, - BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */, - A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */, - 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */, - FAC42945539F362D91D6F559 /* pcre2_substitute.c */, - 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */, - B60497805D37375EBFCF3D98 /* pcre2_tables.c */, - 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */, - FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */, - 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */, - 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */, - ); - name = libregex; - sourceTree = ""; - }; - 04311EAB76193D5593D43DBB /* aui */ = { - isa = PBXGroup; - children = ( - 26632A254717372BAA4D514D /* framemanager.cpp */, - BD709DEB71623974B9836D69 /* dockart.cpp */, - A881F49ADCF33C299B041584 /* floatpane.cpp */, - A298576700C33F018616E7BD /* auibook.cpp */, - 05A4437E9697300390FDE14E /* auibar.cpp */, - C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */, - 51054B41BFD83E97BAF76D07 /* tabart.cpp */, - C55AF552EE6931E8BFF7281B /* xh_aui.cpp */, - 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */, - ); - name = aui; - sourceTree = ""; - }; - 2BE6C101F29D318895158F98 /* libscintilla */ = { + 2FF0B5E0505D3AEA9A4ACF11 /* adv */ = { isa = PBXGroup; children = ( - C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */, - 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */, - 274A156457C63EC5801029C2 /* CaseConvert.cxx */, - F52DCBC0442233738B39138E /* CaseFolder.cxx */, - E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */, - 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */, - 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */, - B883F991159731DCB2717A21 /* CharacterSet.cxx */, - 5219A792C6A736F193D4A82F /* ContractionState.cxx */, - CDF592CBE5193497A26EF978 /* DBCS.cxx */, - BF1C44D726E63B18A98006EC /* Decoration.cxx */, - 71DB140E670738839EC42C2B /* Document.cxx */, - E685D81FB9FF3081B6C5C321 /* EditModel.cxx */, - 430739CB8B95336ABB372EC7 /* EditView.cxx */, - DA5E95D498C53A808A8E2EEB /* Editor.cxx */, - 4FDE5A962FA234FA83A605AD /* Indicator.cxx */, - E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */, - AF3DF03795153E039B8F1F87 /* LineMarker.cxx */, - F951601E73683F27AD8CA99D /* MarginView.cxx */, - 9389DAF8B91030B7AAB029FF /* PerLine.cxx */, - BCD873D873A53BBF955D8A4E /* PositionCache.cxx */, - E145FC31ED523B4AA5080A61 /* RESearch.cxx */, - 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */, - 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */, - 2AF7739C389536F79DAA31E5 /* Selection.cxx */, - C28429A964C337A192D76CC8 /* Style.cxx */, - 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */, - 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */, - C133B838193A35ABBB803151 /* ViewStyle.cxx */, - C25521AF59B9324EB2809C73 /* XPM.cxx */, ); - name = libscintilla; + name = adv; sourceTree = ""; }; - 816DD323A67F3B299C8F3481 /* opengl */ = { + 4D98B791E17232D39944F04F /* xml */ = { isa = PBXGroup; children = ( - E08A51FA8D8A361681B07295 /* glcmn.cpp */, - 35007225BB683683AA7C5E48 /* glcanvas.mm */, - FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */, + E6AB648BC5173104A96CAE66 /* xml.cpp */, + 4048A3523EC03409BD899BEF /* xtixml.cpp */, ); - name = opengl; + name = xml; sourceTree = ""; }; - AA960FB143A63667839CE793 /* qa */ = { + 64B126D857113F24BA8C4758 /* richtext */ = { isa = PBXGroup; children = ( - 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */, - 182C8AD4F822375495795B43 /* dbgrptg.cpp */, + 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */, + FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */, + C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */, + 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */, + 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */, + C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */, + 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */, + D30617843F33310089C1F77A /* richtextstyles.cpp */, + BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */, + C69E48C06BD23C178F650E42 /* richtextxml.cpp */, + 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */, ); - name = qa; + name = richtext; sourceTree = ""; }; 83F62FA47C9636169F1E18E8 /* base */ = { @@ -6065,6 +5826,186 @@ name = base; sourceTree = ""; }; + EB288BE7E74B3328B762A461 /* libtiff */ = { + isa = PBXGroup; + children = ( + 5D2F8259CC99380CB8217DEF /* tif_unix.c */, + D0CDADAF2D893E32A38351E4 /* tif_aux.c */, + F82278F9AF0432529891E6D7 /* tif_close.c */, + 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */, + 149D299A0EDB3D998118EC93 /* tif_color.c */, + CA0D5D47D62A3148BA51B31B /* tif_compress.c */, + E79B2D1F630036129B9677A7 /* tif_dir.c */, + 032A38738B58394E8617617B /* tif_dirinfo.c */, + F6EA240B3DB93D398A990FAD /* tif_dirread.c */, + B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */, + 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */, + 48F1439BF6C3361296F05A33 /* tif_error.c */, + AF7CE00168AB33C994374ABA /* tif_extension.c */, + 30FD1048328234E59D319863 /* tif_fax3.c */, + BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */, + 305614D19CF23CB2B14A5B2E /* tif_flush.c */, + 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */, + F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */, + 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */, + 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */, + 66FDA882451239EA8DF2E0B5 /* tif_luv.c */, + 3088384F07C63A5DB3581656 /* tif_lzma.c */, + 346C68F0CCD23823B78267F0 /* tif_lzw.c */, + DFDC805DD3063C389F93642D /* tif_next.c */, + 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */, + 1731A6096BFC3A468AB4755A /* tif_open.c */, + 9CE73979D0933A43830307E4 /* tif_packbits.c */, + 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */, + 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */, + 64B25B87203E3464BCDD277D /* tif_read.c */, + B83EDE2D1731311ABDE62F9F /* tif_strip.c */, + AAC12B4456E13F57BEA25A5E /* tif_swab.c */, + 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */, + BD88495AF72531A28D2201D0 /* tif_tile.c */, + 3E6F40F4740C3ED29D83E107 /* tif_version.c */, + C83C97A1FCC5345896C9D7DE /* tif_warning.c */, + 3716DA7B0C79360CBA26A71E /* tif_webp.c */, + E9B992CB6C28339FB0CA5E27 /* tif_write.c */, + 726C0457DF1232C793918DC1 /* tif_zip.c */, + 3B98123FD57731139044B064 /* tif_zstd.c */, + ); + name = libtiff; + sourceTree = ""; + }; + 52DDFBAA5ACC394FB6B30E74 /* libzlib */ = { + isa = PBXGroup; + children = ( + 0E45F6DF601A34BCB3CC0206 /* adler32.c */, + D4C4495603293C07A3B09D54 /* compress.c */, + 7013DB195D023C31ADE68546 /* crc32.c */, + 3CF73F49AEC238C99CE89845 /* deflate.c */, + 7A24E9101688368296C21EBE /* gzclose.c */, + 7395814D42CC38F6B8CD81B4 /* gzlib.c */, + BAD4614CABC934D6AFF8D9CD /* gzread.c */, + 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */, + FDB0E2D0966C3E408C4A2D3D /* infback.c */, + 400275BE019D3E5BA47988BE /* inffast.c */, + B5370A676AAC32419D7FDD87 /* inflate.c */, + 9D6B0D32537D35069C7E053F /* inftrees.c */, + 95B4EDF38F8A3E5EBAFF560F /* trees.c */, + 513033E36E643593AC305B3D /* uncompr.c */, + 4CB467F9898C3952A68D988B /* zutil.c */, + ); + name = libzlib; + sourceTree = ""; + }; + B8F95052522B37AB86DA8917 /* propgrid */ = { + isa = PBXGroup; + children = ( + 326723AEB79A305F90D6B41D /* advprops.cpp */, + A9C7F740A55E39FD890B3C7F /* editors.cpp */, + EBED392D081335FA80523244 /* manager.cpp */, + 58E1F571B01F34D4AB70CA18 /* property.cpp */, + B98B72B3A0A73044B85AED60 /* propgrid.cpp */, + 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */, + 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */, + C20E46A504113C899B9DD9B7 /* props.cpp */, + D73962222F573116BE63576C /* xh_propgrid.cpp */, + ); + name = propgrid; + sourceTree = ""; + }; + AA960FB143A63667839CE793 /* qa */ = { + isa = PBXGroup; + children = ( + 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */, + 182C8AD4F822375495795B43 /* dbgrptg.cpp */, + ); + name = qa; + sourceTree = ""; + }; + 60E51BFF5CD2327483201F14 /* html */ = { + isa = PBXGroup; + children = ( + 2E24C6F2A04E30EB95598305 /* chm.cpp */, + 42E433D1700631A8907B8227 /* helpctrl.cpp */, + C466F32CCBD13DBC87285B3D /* helpdata.cpp */, + 81821049E39B32C6ABCF6820 /* helpdlg.cpp */, + 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */, + 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */, + 68E5188DB6003C35A8C7754D /* htmlcell.cpp */, + 2C6C4F5468743265A02D656C /* htmlfilt.cpp */, + 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */, + FCCFF49F92B4323D9181CEDA /* htmltag.cpp */, + 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */, + 194ADD28300E329E80F7892E /* htmprint.cpp */, + 52FE1599218730CC99A3F801 /* m_dflist.cpp */, + B1F3C70512D93501B0478F3E /* m_fonts.cpp */, + ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */, + 548906E4E72935E48CE4AF87 /* m_image.cpp */, + A5EE0B8985443BDCB36F781F /* m_layout.cpp */, + 080597FC0436378E96EDA94B /* m_links.cpp */, + B4028ABB08C63AB59F5F240B /* m_list.cpp */, + 61658C3EABB4341AA38C691E /* m_pre.cpp */, + 727F25F832AD32D4B12D8E39 /* m_span.cpp */, + 7EB95BCFA255323183A996C9 /* m_style.cpp */, + 082CA018FB883999839C1DCE /* m_tables.cpp */, + 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */, + 7FCA75FE592C3469AE351FBF /* winpars.cpp */, + FD5F11A3646F397BA62EB037 /* htmllbox.cpp */, + ); + name = html; + sourceTree = ""; + }; + 7650A73F7FC9305EA62DAE86 /* libjpeg */ = { + isa = PBXGroup; + children = ( + 573D0D15EE9E3E629D61EA65 /* jaricom.c */, + 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */, + F83172EE2DAE352FB969D4F2 /* jcapistd.c */, + AA234ACC79743DA797601AA6 /* jcarith.c */, + E89AC104BF4F33A083F8B382 /* jccoefct.c */, + 8EFF4707641D3F20AB602ED6 /* jccolor.c */, + 6DBF3053414F3C448312165A /* jcdctmgr.c */, + DC0FFDC7A6163F2DA73B84EB /* jchuff.c */, + AA6C6739C3BD3EFA9CF71102 /* jcinit.c */, + 810EB7316DF3344197C78EC0 /* jcmainct.c */, + 664736BDE465350C9C4750E9 /* jcmarker.c */, + 3E3043D7BE9C33B59E900CCE /* jcmaster.c */, + 8EB76F786D7F3FF286948D22 /* jcomapi.c */, + 2F41EDEB298538CC86FF6DC1 /* jcparam.c */, + 7FE0455EBDC63D82B2D88587 /* jcprepct.c */, + 53D06E47477B3E32BB6B915E /* jcsample.c */, + 725574EF98C4301989181CBF /* jctrans.c */, + 86884BC843F6337EABF744BB /* jdapimin.c */, + 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */, + FA9DD56E399533A5BE7AAD16 /* jdarith.c */, + 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */, + DECAF5DD80383A2CA76EB383 /* jdatasrc.c */, + F1A6F3936A0D31CBB58082BA /* jdcoefct.c */, + 68B81FBDA49D3C1991B6356A /* jdcolor.c */, + A5BBC1E494D33D028CA547FF /* jddctmgr.c */, + 72869747E68E37998CB0A07E /* jdhuff.c */, + CCF7564A2B733F759AA8496B /* jdinput.c */, + B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */, + 20E4A10BCD773C84AEC481A1 /* jdmarker.c */, + ED19EF377E653F71B1876259 /* jdmaster.c */, + 0890779C662C35889A8C6C2E /* jdmerge.c */, + 375FF97B202F3C359402D13E /* jdpostct.c */, + 5FFCF47A161B3E08B19BFE14 /* jdsample.c */, + 4549845C0751356A907C23E0 /* jdtrans.c */, + 108517BCD39230E7A89BC943 /* jerror.c */, + 93D07403FCA530D7A9FD2917 /* jfdctflt.c */, + 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */, + 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */, + 3C131F7BF8A83960ACB26242 /* jidctflt.c */, + A0DCC5EF59143640BE13AD73 /* jidctfst.c */, + 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */, + 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */, + 374E341C8703367686DEDE93 /* jmemnobs.c */, + 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */, + 02D9332D5C5632E981936E29 /* jquant2.c */, + 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */, + ); + name = libjpeg; + sourceTree = ""; + }; 2E7B4F88F81E37B4A9FF6C0F /* core */ = { isa = PBXGroup; children = ( @@ -6125,7 +6066,7 @@ 18044326B5B13A98A49732DD /* fontdlg.cpp */, 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */, 757B31FCCA1F381C95B30DF8 /* app.cpp */, - 12363D1F50FE301DAEE7F04B /* control.cpp */, + 12363D1F50FE301DAEE7F04A /* control.cpp */, 271B4B77622B3411A7BF6634 /* dataobj.cpp */, B17772732159304AA7312D72 /* dcclient.cpp */, 238741BDA2C73E56899CCB04 /* dcprint.cpp */, @@ -6153,7 +6094,6 @@ 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */, 071FEABEA61E3B559A47A7DB /* statusbr.cpp */, E9B31409EC6532FC83B0B957 /* textmeasure.cpp */, - F5DAF1F49F0F3F41A427A21D /* icon.cpp */, F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */, 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */, F4020D790AE7363CB29F1C2F /* anybutton.mm */, @@ -6419,6 +6359,43 @@ name = core; sourceTree = ""; }; + 2BE6C101F29D318895158F98 /* libscintilla */ = { + isa = PBXGroup; + children = ( + C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */, + 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */, + 274A156457C63EC5801029C2 /* CaseConvert.cxx */, + F52DCBC0442233738B39138E /* CaseFolder.cxx */, + E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */, + 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */, + 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */, + B883F991159731DCB2717A21 /* CharacterSet.cxx */, + 5219A792C6A736F193D4A82F /* ContractionState.cxx */, + CDF592CBE5193497A26EF978 /* DBCS.cxx */, + BF1C44D726E63B18A98006EC /* Decoration.cxx */, + 71DB140E670738839EC42C2B /* Document.cxx */, + E685D81FB9FF3081B6C5C321 /* EditModel.cxx */, + 430739CB8B95336ABB372EC7 /* EditView.cxx */, + DA5E95D498C53A808A8E2EEB /* Editor.cxx */, + 4FDE5A962FA234FA83A605AD /* Indicator.cxx */, + E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */, + AF3DF03795153E039B8F1F87 /* LineMarker.cxx */, + F951601E73683F27AD8CA99D /* MarginView.cxx */, + 9389DAF8B91030B7AAB029FF /* PerLine.cxx */, + BCD873D873A53BBF955D8A4E /* PositionCache.cxx */, + E145FC31ED523B4AA5080A61 /* RESearch.cxx */, + 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */, + 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */, + 2AF7739C389536F79DAA31E5 /* Selection.cxx */, + C28429A964C337A192D76CC8 /* Style.cxx */, + 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */, + 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */, + C133B838193A35ABBB803151 /* ViewStyle.cxx */, + C25521AF59B9324EB2809C73 /* XPM.cxx */, + ); + name = libscintilla; + sourceTree = ""; + }; 42D7047C48F9386084B46AFA /* liblexilla */ = { isa = PBXGroup; children = ( @@ -6559,20 +6536,43 @@ name = liblexilla; sourceTree = ""; }; - 2FF0B5E0505D3AEA9A4ACF11 /* adv */ = { + 6E2C8858F68E3FB0BEFFFCE5 /* libpng */ = { isa = PBXGroup; children = ( + AF26BAB1F4733114926F1724 /* png.c */, + 1A0650754DC2358CA5933B28 /* pngerror.c */, + 91300EB871CC39ECBC430D48 /* pngget.c */, + C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */, + 9CAA325362C73AC8BE20FAA7 /* pngpread.c */, + 29D6506AEA5A323B8735F126 /* pngread.c */, + A06AB1974DB93EE2999EC75C /* pngrio.c */, + 87799D3168B43EB7B5686826 /* pngrtran.c */, + 358D0A3AC73F322EA732D020 /* pngrutil.c */, + 5E463A493FD930DE80E58608 /* pngset.c */, + 5B32A13D5B3336098B1B9765 /* pngtrans.c */, + AF9EE701DD653E2299293E5F /* pngwio.c */, + 69A6CAF721E53E83B4820DE6 /* pngwrite.c */, + 0964797530CF3FE7B8DB6242 /* pngwtran.c */, + 45D7558DF5E03A2EB41883F0 /* pngwutil.c */, + 933D7637CAA43F6C99814BC5 /* arm_init.c */, + 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */, + FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */, + 994AF74DF2A13FF09A215853 /* intel_init.c */, + 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */, ); - name = adv; + name = libpng; sourceTree = ""; }; - 5C5CD199E7573C73AE6F392D /* media */ = { + E96566B813153B4295AD767B /* stc */ = { isa = PBXGroup; children = ( - C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */, - 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */, + D0B9C41A4D12345AAA764CAD /* stc.cpp */, + 47FF6D792CA234C395692118 /* PlatWX.cpp */, + 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */, + A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */, + 18ABDAF9EF723072A7708009 /* PlatWXcocoa.mm */, ); - name = media; + name = stc; sourceTree = ""; }; /* End PBXGroup section */ @@ -7758,139 +7758,139 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B60AD651E0523DB7B31E4107 /* LexillaAccess.cxx in Sources */, + B60AD651E0523DB7B31E4106 /* LexillaAccess.cxx in Sources */, 23CECD8647C037E0B41DF0D6 /* LexA68k.cxx in Sources */, - 0654BCC3F0763C50A7949505 /* LexAPDL.cxx in Sources */, - 0ADC8DBEE80D36B0BB9B058A /* LexASY.cxx in Sources */, - 784F7C50882F320FA76537B5 /* LexAU3.cxx in Sources */, + 0654BCC3F0763C50A7949506 /* LexAPDL.cxx in Sources */, + 0ADC8DBEE80D36B0BB9B058B /* LexASY.cxx in Sources */, + 784F7C50882F320FA76537B6 /* LexAU3.cxx in Sources */, 07EC76232BB3343FA5CB90B0 /* LexAVE.cxx in Sources */, 5519BA1F2463308FAC4A0CA0 /* LexAVS.cxx in Sources */, - 66FD099CE5A338C18329FC36 /* LexAbaqus.cxx in Sources */, + 66FD099CE5A338C18329FC38 /* LexAbaqus.cxx in Sources */, CD35A576FD363FD49C3AC4B4 /* LexAda.cxx in Sources */, 3DA70DE666D838A59642A4E8 /* LexAsciidoc.cxx in Sources */, - 0C3F48DBD05E3566A4CA6D44 /* LexAsm.cxx in Sources */, - 825EAD51920B387DB4F8C428 /* LexAsn1.cxx in Sources */, - D54D3CA9E73336A08DB20707 /* LexBaan.cxx in Sources */, + 0C3F48DBD05E3566A4CA6D45 /* LexAsm.cxx in Sources */, + 825EAD51920B387DB4F8C426 /* LexAsn1.cxx in Sources */, + D54D3CA9E73336A08DB20706 /* LexBaan.cxx in Sources */, 39FB197CF9EB3D76BE0723D1 /* LexBash.cxx in Sources */, 6C7C1CC506CB329FB2D086A9 /* LexBasic.cxx in Sources */, - 12B1DEF410AB34999AB210DC /* LexBatch.cxx in Sources */, - C92005CB86C6361BBB9D7C68 /* LexBibTeX.cxx in Sources */, - 78E15D8200F635529F39609A /* LexBullant.cxx in Sources */, + 12B1DEF410AB34999AB210DB /* LexBatch.cxx in Sources */, + C92005CB86C6361BBB9D7C67 /* LexBibTeX.cxx in Sources */, + 78E15D8200F635529F39609B /* LexBullant.cxx in Sources */, 0C2073A011EA36B8AD906DA5 /* LexCIL.cxx in Sources */, - 6F472413FFA03B53B395BB75 /* LexCLW.cxx in Sources */, - D8ADDD24BEAC3D94B3388D3F /* LexCOBOL.cxx in Sources */, - A0FCE3CF565C3F84B63712AC /* LexCPP.cxx in Sources */, + 6F472413FFA03B53B395BB74 /* LexCLW.cxx in Sources */, + D8ADDD24BEAC3D94B3388D40 /* LexCOBOL.cxx in Sources */, + A0FCE3CF565C3F84B63712AD /* LexCPP.cxx in Sources */, 069D53F2DFBF370A8CC99630 /* LexCSS.cxx in Sources */, - 268DDC88C99A3A64AB8B2FFC /* LexCaml.cxx in Sources */, + 268DDC88C99A3A64AB8B2FFB /* LexCaml.cxx in Sources */, 6F5A0D3C7763334396A3783E /* LexCmake.cxx in Sources */, 2020EE3C45743B53BE8C7F3A /* LexCoffeeScript.cxx in Sources */, - B640A8A74D973A8FBEF63917 /* LexConf.cxx in Sources */, + B640A8A74D973A8FBEF63918 /* LexConf.cxx in Sources */, 97F60B2A9CE93BC8949A8CCF /* LexCrontab.cxx in Sources */, 834F2ADD0520313FBAC4F927 /* LexCsound.cxx in Sources */, - 8FB5FBC5730C33F1A3D85DA1 /* LexD.cxx in Sources */, + 8FB5FBC5730C33F1A3D85D9F /* LexD.cxx in Sources */, 0B792C3F31713850818EEFEC /* LexDMAP.cxx in Sources */, - DC5F82733F733D98B39DE74F /* LexDMIS.cxx in Sources */, - 0C2CBD7246993527A829BD96 /* LexDataflex.cxx in Sources */, - 51F44CB1D9AD3CBDB52EE93E /* LexDiff.cxx in Sources */, - AAC2AC9C49F1366D8BD20F5E /* LexECL.cxx in Sources */, + DC5F82733F733D98B39DE74E /* LexDMIS.cxx in Sources */, + 0C2CBD7246993527A829BD94 /* LexDataflex.cxx in Sources */, + 51F44CB1D9AD3CBDB52EE93D /* LexDiff.cxx in Sources */, + AAC2AC9C49F1366D8BD20F60 /* LexECL.cxx in Sources */, 67CE7065EE593DAAA2CE448A /* LexEDIFACT.cxx in Sources */, - 4788F736CD9C324E8A3DFA75 /* LexEScript.cxx in Sources */, + 4788F736CD9C324E8A3DFA74 /* LexEScript.cxx in Sources */, E8BBC08597EF383597DA030A /* LexEiffel.cxx in Sources */, - BFD3BFBDC8DA3B1EAD141F98 /* LexErlang.cxx in Sources */, - 8D6B0D48EA843E48AB0FE43D /* LexErrorList.cxx in Sources */, - 512AB7B82D57387EBB7BEE27 /* LexFSharp.cxx in Sources */, - 45D88A74B3EE3837B9F79597 /* LexFlagship.cxx in Sources */, - 27759C2FBB0E35FDA847B2B6 /* LexForth.cxx in Sources */, + BFD3BFBDC8DA3B1EAD141F97 /* LexErlang.cxx in Sources */, + 8D6B0D48EA843E48AB0FE43F /* LexErrorList.cxx in Sources */, + 512AB7B82D57387EBB7BEE29 /* LexFSharp.cxx in Sources */, + 45D88A74B3EE3837B9F79595 /* LexFlagship.cxx in Sources */, + 27759C2FBB0E35FDA847B2B5 /* LexForth.cxx in Sources */, 020BBB417207393F8C60EFB6 /* LexFortran.cxx in Sources */, E62F8E49FD5035D8BC71BB49 /* LexGAP.cxx in Sources */, - 807450BB072C3C0D9C52A3B6 /* LexGDScript.cxx in Sources */, - 9B6A35E706543CDAA6A5014A /* LexGui4Cli.cxx in Sources */, + 807450BB072C3C0D9C52A3B8 /* LexGDScript.cxx in Sources */, + 9B6A35E706543CDAA6A5014B /* LexGui4Cli.cxx in Sources */, AEEE6BC41B6531898A61CB16 /* LexHTML.cxx in Sources */, 51D133EC44F830588FEEAEC0 /* LexHaskell.cxx in Sources */, - D98FABF75BCE3AF18C91B42D /* LexHex.cxx in Sources */, + D98FABF75BCE3AF18C91B42E /* LexHex.cxx in Sources */, D948CC99521633338B24E2F6 /* LexHollywood.cxx in Sources */, 4D9368BD07F131C493232E2F /* LexIndent.cxx in Sources */, B37802B0A90133C68EF93DDA /* LexInno.cxx in Sources */, B0C44C3054CB3E0590DDCBDB /* LexJSON.cxx in Sources */, - 4C31B77B28343F20B4973368 /* LexJulia.cxx in Sources */, - E3AD8574E13B39BDB8D4E92F /* LexKVIrc.cxx in Sources */, - 14C024EB327435A2A571DA2C /* LexKix.cxx in Sources */, - 62331487C17B32E081B8FEA8 /* LexLaTeX.cxx in Sources */, - DF8124E5E17D386A84CEEA29 /* LexLisp.cxx in Sources */, - D13AE659C3AC37B68D39B2C9 /* LexLout.cxx in Sources */, - 9D003890CB7035A298DB7056 /* LexLua.cxx in Sources */, - 3C394FBD47B6310C80577E3B /* LexMMIXAL.cxx in Sources */, - EC43AFB3670A3D459D9B388E /* LexMPT.cxx in Sources */, - E8EE34F0A78C31B489B19FEE /* LexMSSQL.cxx in Sources */, - E80BEED62EBF34F09B3F401F /* LexMagik.cxx in Sources */, - 4301AFBA0A193A7EB392EB94 /* LexMake.cxx in Sources */, + 4C31B77B28343F20B4973366 /* LexJulia.cxx in Sources */, + E3AD8574E13B39BDB8D4E930 /* LexKVIrc.cxx in Sources */, + 14C024EB327435A2A571DA2D /* LexKix.cxx in Sources */, + 62331487C17B32E081B8FEA9 /* LexLaTeX.cxx in Sources */, + DF8124E5E17D386A84CEEA28 /* LexLisp.cxx in Sources */, + D13AE659C3AC37B68D39B2CA /* LexLout.cxx in Sources */, + 9D003890CB7035A298DB7058 /* LexLua.cxx in Sources */, + 3C394FBD47B6310C80577E3C /* LexMMIXAL.cxx in Sources */, + EC43AFB3670A3D459D9B388F /* LexMPT.cxx in Sources */, + E8EE34F0A78C31B489B19FEF /* LexMSSQL.cxx in Sources */, + E80BEED62EBF34F09B3F4021 /* LexMagik.cxx in Sources */, + 4301AFBA0A193A7EB392EB93 /* LexMake.cxx in Sources */, E0E40333B61C33B58787078F /* LexMarkdown.cxx in Sources */, - 5AEA6E94FB76371D928D371C /* LexMatlab.cxx in Sources */, - 4E712589FAA837F589B72F4C /* LexMaxima.cxx in Sources */, - 1A4F9F18BBEB3515AC7C7CC8 /* LexMetapost.cxx in Sources */, + 5AEA6E94FB76371D928D371D /* LexMatlab.cxx in Sources */, + 4E712589FAA837F589B72F4D /* LexMaxima.cxx in Sources */, + 1A4F9F18BBEB3515AC7C7CC7 /* LexMetapost.cxx in Sources */, 7CC211E10D853B958250A4CE /* LexModula.cxx in Sources */, - CB1F37993ECB3B73A51B42FD /* LexMySQL.cxx in Sources */, + CB1F37993ECB3B73A51B42FE /* LexMySQL.cxx in Sources */, D3EC9191D94837CABFF05DC4 /* LexNim.cxx in Sources */, A874AF0B203D3DC99C27469B /* LexNimrod.cxx in Sources */, - 22C76BF2C3E331CD87657E6E /* LexNsis.cxx in Sources */, + 22C76BF2C3E331CD87657E70 /* LexNsis.cxx in Sources */, A8476B3CE46B3FD4A2832F01 /* LexNull.cxx in Sources */, - 324B2BAC54553D45B3C56BFF /* LexOScript.cxx in Sources */, + 324B2BAC54553D45B3C56BFD /* LexOScript.cxx in Sources */, 76D1A1A49CC831FFB9EBB1F5 /* LexOpal.cxx in Sources */, - 24A5A71C79733E9CB913C5B9 /* LexPB.cxx in Sources */, - 0D79F1B4EF44393AA3242140 /* LexPLM.cxx in Sources */, + 24A5A71C79733E9CB913C5B8 /* LexPB.cxx in Sources */, + 0D79F1B4EF44393AA3242141 /* LexPLM.cxx in Sources */, FD3B31CE1E7832218B5D9A16 /* LexPO.cxx in Sources */, A3C4D47A84E8362295867525 /* LexPOV.cxx in Sources */, - 551BF168445E3D7BB54D0174 /* LexPS.cxx in Sources */, - 0718E7524134312090541D6F /* LexPascal.cxx in Sources */, - 369BCCFF61D13A058D837836 /* LexPerl.cxx in Sources */, - 22EC132AEF863BFBAA6EDEC5 /* LexPowerPro.cxx in Sources */, + 551BF168445E3D7BB54D0176 /* LexPS.cxx in Sources */, + 0718E7524134312090541D70 /* LexPascal.cxx in Sources */, + 369BCCFF61D13A058D837837 /* LexPerl.cxx in Sources */, + 22EC132AEF863BFBAA6EDEC3 /* LexPowerPro.cxx in Sources */, 1FB1622D59593932B25C55BC /* LexPowerShell.cxx in Sources */, - 97C551F8AEF133D680D1FD36 /* LexProgress.cxx in Sources */, + 97C551F8AEF133D680D1FD37 /* LexProgress.cxx in Sources */, 56E1ED31F7CE38978F4A7CA2 /* LexProps.cxx in Sources */, - A36B5107860E326591940741 /* LexPython.cxx in Sources */, - 31380AD4F5BD38A6B9212FE1 /* LexR.cxx in Sources */, - 81244C52741332A8B92E5978 /* LexRaku.cxx in Sources */, - CCFD3144A22C3A87B67D88AD /* LexRebol.cxx in Sources */, - 3694B007E88A3D8C8CB952F1 /* LexRegistry.cxx in Sources */, - 7C20B79175D33852A2E9DE83 /* LexRuby.cxx in Sources */, - 502D7B786EAE383B9546F321 /* LexRust.cxx in Sources */, - 1DD1888315513C24BF9C31B4 /* LexSAS.cxx in Sources */, - FE5B7C7A84B83C17A38E8404 /* LexSML.cxx in Sources */, - 71CCB06E790C3C54BFF1199E /* LexSQL.cxx in Sources */, + A36B5107860E326591940740 /* LexPython.cxx in Sources */, + 31380AD4F5BD38A6B9212FE2 /* LexR.cxx in Sources */, + 81244C52741332A8B92E5976 /* LexRaku.cxx in Sources */, + CCFD3144A22C3A87B67D88AC /* LexRebol.cxx in Sources */, + 3694B007E88A3D8C8CB952F0 /* LexRegistry.cxx in Sources */, + 7C20B79175D33852A2E9DE85 /* LexRuby.cxx in Sources */, + 502D7B786EAE383B9546F320 /* LexRust.cxx in Sources */, + 1DD1888315513C24BF9C31B6 /* LexSAS.cxx in Sources */, + FE5B7C7A84B83C17A38E8403 /* LexSML.cxx in Sources */, + 71CCB06E790C3C54BFF1199F /* LexSQL.cxx in Sources */, E46BEC5C8D643BD099AF1D57 /* LexSTTXT.cxx in Sources */, - BA9F0BBD57F63FD29E484FD4 /* LexScriptol.cxx in Sources */, - F55F3887CDE633D7877C607D /* LexSmalltalk.cxx in Sources */, - D5C5DD83882B3227A1CCFE0F /* LexSorcus.cxx in Sources */, - 6F8129E317EE3486A89D854A /* LexSpecman.cxx in Sources */, - 9678C2B19D293818AA8E9E0F /* LexSpice.cxx in Sources */, - 444D3B969B4336E8AD5CCFC0 /* LexStata.cxx in Sources */, - 0F8C79010EF0316AA1B7392F /* LexTACL.cxx in Sources */, - 2102C23970FB3F22AB46A59B /* LexTADS3.cxx in Sources */, - CAF5C5BB129431B596C4C6C3 /* LexTAL.cxx in Sources */, + BA9F0BBD57F63FD29E484FD5 /* LexScriptol.cxx in Sources */, + F55F3887CDE633D7877C607C /* LexSmalltalk.cxx in Sources */, + D5C5DD83882B3227A1CCFE0E /* LexSorcus.cxx in Sources */, + 6F8129E317EE3486A89D8548 /* LexSpecman.cxx in Sources */, + 9678C2B19D293818AA8E9E0E /* LexSpice.cxx in Sources */, + 444D3B969B4336E8AD5CCFBF /* LexStata.cxx in Sources */, + 0F8C79010EF0316AA1B7392D /* LexTACL.cxx in Sources */, + 2102C23970FB3F22AB46A59C /* LexTADS3.cxx in Sources */, + CAF5C5BB129431B596C4C6C1 /* LexTAL.cxx in Sources */, 49BEDFBC3661339D90EF6936 /* LexTCL.cxx in Sources */, 697FC496816F33568E1FB5A7 /* LexTCMD.cxx in Sources */, - 7D0E549020D33ED39751DFC8 /* LexTeX.cxx in Sources */, + 7D0E549020D33ED39751DFC9 /* LexTeX.cxx in Sources */, BA57708D2D563967A0D1F003 /* LexTxt2tags.cxx in Sources */, - D4EC9DB5F8DF319EA0FD26A4 /* LexVB.cxx in Sources */, - 16021CFD78623B8CBD08FC21 /* LexVHDL.cxx in Sources */, + D4EC9DB5F8DF319EA0FD26A6 /* LexVB.cxx in Sources */, + 16021CFD78623B8CBD08FC20 /* LexVHDL.cxx in Sources */, 3C5E1A45A57B3169A4C073DA /* LexVerilog.cxx in Sources */, - 9CC92BB4B0E233A0A7F8127B /* LexVisualProlog.cxx in Sources */, - 5E80C103F0853788A2B43E5F /* LexX12.cxx in Sources */, - 159E4248CB1333AD841D9F05 /* LexYAML.cxx in Sources */, - 91364FDD73053139BBAA313C /* Accessor.cxx in Sources */, + 9CC92BB4B0E233A0A7F81279 /* LexVisualProlog.cxx in Sources */, + 5E80C103F0853788A2B43E5D /* LexX12.cxx in Sources */, + 159E4248CB1333AD841D9F03 /* LexYAML.cxx in Sources */, + 91364FDD73053139BBAA313B /* Accessor.cxx in Sources */, A08165E5D38E3EF6962A7AE9 /* DefaultLexer.cxx in Sources */, A9B91FC69E473BE18895ABAB /* InList.cxx in Sources */, D759231BC07232C0A52515A6 /* LexAccessor.cxx in Sources */, - AA54EDC7C94730D1A31F059E /* LexCharacterCategory.cxx in Sources */, - A191AA29BDF83BB090A9DF4F /* LexCharacterSet.cxx in Sources */, - 46395873DB1C3B7FA81DE5F9 /* LexerBase.cxx in Sources */, + AA54EDC7C94730D1A31F059F /* LexCharacterCategory.cxx in Sources */, + A191AA29BDF83BB090A9DF50 /* LexCharacterSet.cxx in Sources */, + 46395873DB1C3B7FA81DE5FA /* LexerBase.cxx in Sources */, DF3B927516FB365E865A9782 /* LexerModule.cxx in Sources */, - F6288F388B8C33FD85E9A157 /* LexerNoExceptions.cxx in Sources */, + F6288F388B8C33FD85E9A156 /* LexerNoExceptions.cxx in Sources */, 1C544DADDA6F3D62A5E25E93 /* LexerSimple.cxx in Sources */, - 7DEC57D6CE8232A09EF74219 /* PropSetSimple.cxx in Sources */, - CD241361D4693785A0B8939F /* StyleContext.cxx in Sources */, + 7DEC57D6CE8232A09EF7421A /* PropSetSimple.cxx in Sources */, + CD241361D4693785A0B8939E /* StyleContext.cxx in Sources */, 6C80B6049A523836BCD20BCC /* WordList.cxx in Sources */, - 46327A3C356D3570B27C6703 /* Lexilla.cxx in Sources */, + 46327A3C356D3570B27C6701 /* Lexilla.cxx in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7899,39 +7899,39 @@ buildActionMask = 2147483647; files = ( 59BFB8C8310E37B39AF8B0D6 /* any.cpp in Sources */, - D5A25AC579F436509805335B /* appbase.cpp in Sources */, - C2B07E2ECDDC3833BDC9B28E /* arcall.cpp in Sources */, - 4CF9BA40653C3153805D88AC /* arcfind.cpp in Sources */, - 3EB6B8528A0D3B6CADAE1256 /* archive.cpp in Sources */, + D5A25AC579F436509805335A /* appbase.cpp in Sources */, + C2B07E2ECDDC3833BDC9B28D /* arcall.cpp in Sources */, + 4CF9BA40653C3153805D88AD /* arcfind.cpp in Sources */, + 3EB6B8528A0D3B6CADAE1257 /* archive.cpp in Sources */, 3B8A54D5E5A53607A6F7979B /* arrstr.cpp in Sources */, - 0A2A4D2DC8F63FE1AC0BFAB0 /* base64.cpp in Sources */, + 0A2A4D2DC8F63FE1AC0BFAB1 /* base64.cpp in Sources */, 319FB8E64CE731D6A58AD301 /* clntdata.cpp in Sources */, 51437DC2AD7B3BEB9A53CE1B /* cmdline.cpp in Sources */, DA0FA502405A37B2A5698D20 /* config.cpp in Sources */, BB6FE851028C3DE7A070C215 /* convauto.cpp in Sources */, F89405757B063F80B111F46A /* datetime.cpp in Sources */, - 1D726139C977341A97D0C933 /* datetimefmt.cpp in Sources */, - E63364B7E727383BA8E2B7EC /* datstrm.cpp in Sources */, - 3ED6F4B64C283232A79423CF /* dircmn.cpp in Sources */, - AD7EEB418C7930CB828EAF87 /* dynlib.cpp in Sources */, + 1D726139C977341A97D0C932 /* datetimefmt.cpp in Sources */, + E63364B7E727383BA8E2B7ED /* datstrm.cpp in Sources */, + 3ED6F4B64C283232A79423D1 /* dircmn.cpp in Sources */, + AD7EEB418C7930CB828EAF88 /* dynlib.cpp in Sources */, 0164A65CDB7A334A8E9AA4C1 /* dynload.cpp in Sources */, - 246B4FF96BA135258FE45F51 /* encconv.cpp in Sources */, + 246B4FF96BA135258FE45F4F /* encconv.cpp in Sources */, 97BAFEAD53E238B6881178DF /* evtloopcmn.cpp in Sources */, - F07D84D124F23E7FA11CF14A /* extended.c in Sources */, - FEF99FF6C38D3B488396B144 /* ffile.cpp in Sources */, - D6C3421AD2A537AAA2F0AB80 /* file.cpp in Sources */, - FFF5BFBE600E35FAB7EA522D /* fileback.cpp in Sources */, - 41943A8F82723027A151A46A /* fileconf.cpp in Sources */, - 49260580A7F23B569A827D41 /* filefn.cpp in Sources */, - D4C87E227A28391891D89088 /* filename.cpp in Sources */, + F07D84D124F23E7FA11CF148 /* extended.c in Sources */, + FEF99FF6C38D3B488396B143 /* ffile.cpp in Sources */, + D6C3421AD2A537AAA2F0AB81 /* file.cpp in Sources */, + FFF5BFBE600E35FAB7EA522E /* fileback.cpp in Sources */, + 41943A8F82723027A151A468 /* fileconf.cpp in Sources */, + 49260580A7F23B569A827D40 /* filefn.cpp in Sources */, + D4C87E227A28391891D89089 /* filename.cpp in Sources */, 8A4046BD38873D9CAC9C2B5B /* filesys.cpp in Sources */, - 9E0B67E34B683412978BA82F /* filtall.cpp in Sources */, - CA4DCD57060B38CC8B2283D9 /* filtfind.cpp in Sources */, - 2FA1A8FE3644325ABAD273A5 /* fmapbase.cpp in Sources */, + 9E0B67E34B683412978BA82E /* filtall.cpp in Sources */, + CA4DCD57060B38CC8B2283D8 /* filtfind.cpp in Sources */, + 2FA1A8FE3644325ABAD273A4 /* fmapbase.cpp in Sources */, FE2DBCCC1D0B36A3BE4493C2 /* fs_arc.cpp in Sources */, - F6B85CD918E93923BE631B96 /* fs_filter.cpp in Sources */, - FE5285579C7F39C48FC66B10 /* hash.cpp in Sources */, - 595DCB164D55342EB86604EE /* hashmap.cpp in Sources */, + F6B85CD918E93923BE631B95 /* fs_filter.cpp in Sources */, + FE5285579C7F39C48FC66B11 /* hash.cpp in Sources */, + 595DCB164D55342EB86604ED /* hashmap.cpp in Sources */, 1B06622C8D8731FC832199E4 /* init.cpp in Sources */, 0743AE8613F535A0ABB79317 /* intl.cpp in Sources */, A336FD218BE63B19991CA514 /* ipcbase.cpp in Sources */, @@ -7939,83 +7939,83 @@ 68AC8860B0943C1FAF76D96C /* list.cpp in Sources */, 3141FEDED0943BD6A2EF858F /* log.cpp in Sources */, 0C7E2D5C22A232368F862A62 /* longlong.cpp in Sources */, - B59FC7345C383D9099391AC5 /* mimecmn.cpp in Sources */, + B59FC7345C383D9099391AC3 /* mimecmn.cpp in Sources */, EC3A1C620D323B5590AABF04 /* module.cpp in Sources */, - F38202271C6131908C358DED /* mstream.cpp in Sources */, - 31DD19A942283FA8810B6382 /* numformatter.cpp in Sources */, + F38202271C6131908C358DEE /* mstream.cpp in Sources */, + 31DD19A942283FA8810B6383 /* numformatter.cpp in Sources */, 23A7AF68A03E380785EE7C25 /* object.cpp in Sources */, D6B73239BF0E32288161679C /* platinfo.cpp in Sources */, 0A406D2D1ADA343891E3664E /* powercmn.cpp in Sources */, CA85901B9E2538CFB7E44216 /* process.cpp in Sources */, - 7A7439BE66AA3771B4A89049 /* regex.cpp in Sources */, - CF3082BA1ED232F4B904BD16 /* stdpbase.cpp in Sources */, - 539B586AEAD630A79FC12ECF /* sstream.cpp in Sources */, + 7A7439BE66AA3771B4A8904A /* regex.cpp in Sources */, + CF3082BA1ED232F4B904BD15 /* stdpbase.cpp in Sources */, + 539B586AEAD630A79FC12ED0 /* sstream.cpp in Sources */, 028257C52CAE3038AA862C35 /* stdstream.cpp in Sources */, 6AA0EE765330326380989FD1 /* stopwatch.cpp in Sources */, E882402BEE0330A080A6516F /* strconv.cpp in Sources */, 30493B486DFF35AF80D12C4B /* stream.cpp in Sources */, - 795613831EC8332A83FF26E9 /* string.cpp in Sources */, - 88E1AE56FD393C8BA5CF8547 /* stringops.cpp in Sources */, - 056E30EA43753A7CB1AF8C9E /* strvararg.cpp in Sources */, + 795613831EC8332A83FF26E8 /* string.cpp in Sources */, + 88E1AE56FD393C8BA5CF8546 /* stringops.cpp in Sources */, + 056E30EA43753A7CB1AF8CA0 /* strvararg.cpp in Sources */, 4DD98A9436C83CF3B9425A79 /* sysopt.cpp in Sources */, 9FB1E1763EFA334CA0C07C4A /* tarstrm.cpp in Sources */, - 2E4747E0736B30569ACD5422 /* textbuf.cpp in Sources */, + 2E4747E0736B30569ACD5424 /* textbuf.cpp in Sources */, 6167245C417A32179EC37D2F /* textfile.cpp in Sources */, - 98AD7D0478BA36249B03C623 /* time.cpp in Sources */, - 7FC3D17B3C853FE58841002E /* timercmn.cpp in Sources */, - 729091CC33C73C989B4E071A /* timerimpl.cpp in Sources */, - BF8C33B7CB3A3ECE814A95FC /* tokenzr.cpp in Sources */, - ABCD15C4AB37396EA17B7B2A /* translation.cpp in Sources */, + 98AD7D0478BA36249B03C624 /* time.cpp in Sources */, + 7FC3D17B3C853FE58841002F /* timercmn.cpp in Sources */, + 729091CC33C73C989B4E071B /* timerimpl.cpp in Sources */, + BF8C33B7CB3A3ECE814A95FD /* tokenzr.cpp in Sources */, + ABCD15C4AB37396EA17B7B29 /* translation.cpp in Sources */, 087FF6DE223A32509692F39D /* txtstrm.cpp in Sources */, DAAFBED07FF8365B96D20B99 /* unichar.cpp in Sources */, - 2E8440A2BDD53BE7B01547C3 /* uri.cpp in Sources */, - C425A172B0AB3EBD9AC9A591 /* ustring.cpp in Sources */, - 65E8A5F333D7336C816F0D0D /* variant.cpp in Sources */, - E53AFF04877D34C386D77380 /* wfstream.cpp in Sources */, - 319EA32592DA3C74B86DDE01 /* wxcrt.cpp in Sources */, + 2E8440A2BDD53BE7B01547C4 /* uri.cpp in Sources */, + C425A172B0AB3EBD9AC9A592 /* ustring.cpp in Sources */, + 65E8A5F333D7336C816F0D0E /* variant.cpp in Sources */, + E53AFF04877D34C386D77382 /* wfstream.cpp in Sources */, + 319EA32592DA3C74B86DDDFF /* wxcrt.cpp in Sources */, A2473402D8B83628B1F6674B /* wxprintf.cpp in Sources */, - BA7B12396B873FDA8F3A274A /* xlocale.cpp in Sources */, + BA7B12396B873FDA8F3A2749 /* xlocale.cpp in Sources */, C5419BC04D6234B5A8307B81 /* xti.cpp in Sources */, - 52C0984A2A4F31BC885519B0 /* xtistrm.cpp in Sources */, - CA155860CE9A3A8189C3A4C2 /* zipstrm.cpp in Sources */, + 52C0984A2A4F31BC885519B1 /* xtistrm.cpp in Sources */, + CA155860CE9A3A8189C3A4C3 /* zipstrm.cpp in Sources */, 014AF0BAB1783A5D9D75A7ED /* zstream.cpp in Sources */, - A93D0E6F0871368EA8FC9FFB /* fswatchercmn.cpp in Sources */, - E49F0D43B5A63EF1A57A7112 /* fswatcherg.cpp in Sources */, - B0FD1B96EAE635AFBFCF2C91 /* secretstore.cpp in Sources */, - A486A28E216D320AB57452D3 /* lzmastream.cpp in Sources */, + A93D0E6F0871368EA8FC9FF9 /* fswatchercmn.cpp in Sources */, + E49F0D43B5A63EF1A57A7113 /* fswatcherg.cpp in Sources */, + B0FD1B96EAE635AFBFCF2C92 /* secretstore.cpp in Sources */, + A486A28E216D320AB57452D5 /* lzmastream.cpp in Sources */, 9A63148F193E33B5964DD02B /* uilocale.cpp in Sources */, - B8A98F209934399DA45C2386 /* fs_data.cpp in Sources */, - 4657E7382E9E3EDC8DE2401F /* mimetype.cpp in Sources */, - 1DBDF75500D73A3098015E81 /* cfstring.cpp in Sources */, - 9FBC642677C63D01AA2511BC /* evtloop_cf.cpp in Sources */, - AAAB5DF8E60736D88273DCFF /* strconv_cf.cpp in Sources */, + B8A98F209934399DA45C2388 /* fs_data.cpp in Sources */, + 4657E7382E9E3EDC8DE2401E /* mimetype.cpp in Sources */, + 1DBDF75500D73A3098015E80 /* cfstring.cpp in Sources */, + 9FBC642677C63D01AA2511BE /* evtloop_cf.cpp in Sources */, + AAAB5DF8E60736D88273DCFE /* strconv_cf.cpp in Sources */, 68C300D096BF39239876D043 /* utils_base.mm in Sources */, - B0FD1B96EAE635AFBFCF2C94 /* secretstore.cpp in Sources */, - AE660214E0CB375FBA508A38 /* uilocale.mm in Sources */, - D36E76A4CAF5352D9397E201 /* fdiodispatcher.cpp in Sources */, + B0FD1B96EAE635AFBFCF2C93 /* secretstore.cpp in Sources */, + AE660214E0CB375FBA508A36 /* uilocale.mm in Sources */, + D36E76A4CAF5352D9397E200 /* fdiodispatcher.cpp in Sources */, D3FB75C8E3A73AE38EE8A6F8 /* selectdispatcher.cpp in Sources */, - BAAB6B1D80A33843A8436B12 /* appunix.cpp in Sources */, + BAAB6B1D80A33843A8436B11 /* appunix.cpp in Sources */, 403FBA20CEFE3EAFB4E6B907 /* dir.cpp in Sources */, - 20BEEFFA08F3396791596871 /* dlunix.cpp in Sources */, + 20BEEFFA08F3396791596872 /* dlunix.cpp in Sources */, CBBD7B32DB7B3E24AE745D7A /* epolldispatcher.cpp in Sources */, - D18E2985C48733B2B7B3D442 /* evtloopunix.cpp in Sources */, - 3D22FC202D903007AEE3D164 /* fdiounix.cpp in Sources */, + D18E2985C48733B2B7B3D443 /* evtloopunix.cpp in Sources */, + 3D22FC202D903007AEE3D166 /* fdiounix.cpp in Sources */, 4B88254FF9963833A276A64C /* snglinst.cpp in Sources */, 5F78DB0417BF3CE1B4E35C80 /* stackwalk.cpp in Sources */, - 2F35A207C3993DE08E4FE0B1 /* timerunx.cpp in Sources */, + 2F35A207C3993DE08E4FE0B2 /* timerunx.cpp in Sources */, F5D2146C94E733FAAB6D286A /* threadpsx.cpp in Sources */, - B5C7FD8C27F43F3289A77FCB /* utilsunx.cpp in Sources */, - F9C5EAC42CCF3267B4100BAE /* wakeuppipe.cpp in Sources */, - FF7DB2884F6E3C5DB4BDF61F /* fswatcher_kqueue.cpp in Sources */, + B5C7FD8C27F43F3289A77FCA /* utilsunx.cpp in Sources */, + F9C5EAC42CCF3267B4100BB0 /* wakeuppipe.cpp in Sources */, + FF7DB2884F6E3C5DB4BDF61E /* fswatcher_kqueue.cpp in Sources */, 830A61EA04FD367C9EB6A757 /* fswatcher_fsevents.cpp in Sources */, - DA71FBB9EFB2350ABB3CEC80 /* stdpaths.mm in Sources */, - 55D893FDD00633FEA82ABD84 /* event.cpp in Sources */, - 131B879180AE3FB481F81CC8 /* fs_mem.cpp in Sources */, - 05814571E7A83F5DBFB6E4C4 /* msgout.cpp in Sources */, + DA71FBB9EFB2350ABB3CEC82 /* stdpaths.mm in Sources */, + 55D893FDD00633FEA82ABD81 /* event.cpp in Sources */, + 131B879180AE3FB481F81CC7 /* fs_mem.cpp in Sources */, + 05814571E7A83F5DBFB6E4C7 /* msgout.cpp in Sources */, 80665EEAE8613DF8A93A7984 /* utilscmn.cpp in Sources */, - 3DE2CD678CEB39C2B1E09ACC /* power.mm in Sources */, - A1A7D793B034398B8696EF33 /* utils.mm in Sources */, - E0E4885BF4AF34B48EB08B91 /* volume.mm in Sources */, + 3DE2CD678CEB39C2B1E09ACA /* power.mm in Sources */, + A1A7D793B034398B8696EF35 /* utils.mm in Sources */, + E0E4885BF4AF34B48EB08B94 /* volume.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8023,22 +8023,22 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 567A32722BA33AEE9FF93D7D /* fs_inet.cpp in Sources */, + 567A32722BA33AEE9FF93D7C /* fs_inet.cpp in Sources */, 65514CD6A9F23ED98436AC03 /* ftp.cpp in Sources */, B84642DA949638A189032CE7 /* http.cpp in Sources */, - 6CA1BAEBBDB4336E9E201F95 /* protocol.cpp in Sources */, - E39021D3CDCD33BAA646B006 /* sckaddr.cpp in Sources */, - 9F608A33D52D327FAA295626 /* sckfile.cpp in Sources */, - BCD81FD3D1EC305F801E1C1C /* sckipc.cpp in Sources */, - A3A898DA3114311EB7F02227 /* sckstrm.cpp in Sources */, + 6CA1BAEBBDB4336E9E201F96 /* protocol.cpp in Sources */, + E39021D3CDCD33BAA646B008 /* sckaddr.cpp in Sources */, + 9F608A33D52D327FAA295624 /* sckfile.cpp in Sources */, + BCD81FD3D1EC305F801E1C1D /* sckipc.cpp in Sources */, + A3A898DA3114311EB7F02228 /* sckstrm.cpp in Sources */, 6978D7A20DA93A329DDD1385 /* socket.cpp in Sources */, E7140F3AB94D3FDFA86D8C08 /* url.cpp in Sources */, - C987310872D1396BAF716E5C /* webrequest.cpp in Sources */, - EE972E8DC73F310B9B4C949C /* webrequest_curl.cpp in Sources */, + C987310872D1396BAF716E5B /* webrequest.cpp in Sources */, + EE972E8DC73F310B9B4C949D /* webrequest_curl.cpp in Sources */, 652CFDD9A1C1366E99B5D6BC /* socketiohandler.cpp in Sources */, - 346D274E17673A01B0177D5C /* sockunix.cpp in Sources */, + 346D274E17673A01B0177D5D /* sockunix.cpp in Sources */, AD07124BBA613B47829F0692 /* sockosx.cpp in Sources */, - 980ED1DA2F96361985952254 /* webrequest_urlsession.mm in Sources */, + 980ED1DA2F96361985952256 /* webrequest_urlsession.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8048,274 +8048,273 @@ files = ( 55D893FDD00633FEA82ABD83 /* event.cpp in Sources */, 131B879180AE3FB481F81CCA /* fs_mem.cpp in Sources */, - 05814571E7A83F5DBFB6E4C6 /* msgout.cpp in Sources */, - 80665EEAE8613DF8A93A7987 /* utilscmn.cpp in Sources */, - 3DE2CD678CEB39C2B1E09ACD /* power.mm in Sources */, + 05814571E7A83F5DBFB6E4C4 /* msgout.cpp in Sources */, + 80665EEAE8613DF8A93A7985 /* utilscmn.cpp in Sources */, + 3DE2CD678CEB39C2B1E09ACB /* power.mm in Sources */, A1A7D793B034398B8696EF36 /* utils.mm in Sources */, - E0E4885BF4AF34B48EB08B94 /* volume.mm in Sources */, - F4C0CEADEDC23610BF6983D8 /* artmac.cpp in Sources */, + E0E4885BF4AF34B48EB08B91 /* volume.mm in Sources */, + F4C0CEADEDC23610BF6983D7 /* artmac.cpp in Sources */, 296692A7A3783E3A83D005C8 /* brush.cpp in Sources */, - 86AED49CEAFC3637B1F10538 /* dialog_osx.cpp in Sources */, - DC6B669C9A78398F914AEE53 /* fontutil.cpp in Sources */, + 86AED49CEAFC3637B1F10537 /* dialog_osx.cpp in Sources */, + DC6B669C9A78398F914AEE55 /* fontutil.cpp in Sources */, C1CDD035AA393ACC9E202C04 /* minifram.cpp in Sources */, - 4269B85FDC5639BEB76A8AEB /* nonownedwnd_osx.cpp in Sources */, - AC91349D7F0E37739B1F5165 /* palette.cpp in Sources */, - 2480859662ED399799E120A7 /* pen.cpp in Sources */, + 4269B85FDC5639BEB76A8AEC /* nonownedwnd_osx.cpp in Sources */, + AC91349D7F0E37739B1F5167 /* palette.cpp in Sources */, + 2480859662ED399799E120A5 /* pen.cpp in Sources */, 0E024D145DDD38ACAE68F462 /* toplevel_osx.cpp in Sources */, 02BB539E2AD63C078DA776B2 /* uiaction_osx.cpp in Sources */, - 052331773CF6362C9A6CF38F /* utils_osx.cpp in Sources */, + 052331773CF6362C9A6CF38E /* utils_osx.cpp in Sources */, CB2E99E8FB7D3269A333A55E /* window_osx.cpp in Sources */, - 03BF1610E2FC3BD5ACB754F1 /* bitmap.cpp in Sources */, - FF50EC0EC5F23DF890C6E960 /* colour.cpp in Sources */, - BD2B17EB72E73A6EB6E0B270 /* dcmemory.cpp in Sources */, - 371809DA4AD1382F8B53287A /* fontenum.cpp in Sources */, - 86BE5213D3F131D8A6862679 /* hid.cpp in Sources */, - AB58406CEBA13BC4A2A83B67 /* printmac.cpp in Sources */, + 03BF1610E2FC3BD5ACB754F0 /* bitmap.cpp in Sources */, + FF50EC0EC5F23DF890C6E95F /* colour.cpp in Sources */, + BD2B17EB72E73A6EB6E0B26F /* dcmemory.cpp in Sources */, + 371809DA4AD1382F8B532878 /* fontenum.cpp in Sources */, + 86BE5213D3F131D8A686267A /* hid.cpp in Sources */, + AB58406CEBA13BC4A2A83B68 /* printmac.cpp in Sources */, 91BDA5B04CF33C9AB7358B8B /* timer.cpp in Sources */, - C2D45B334BE03F6C941CA042 /* utilsexc_cf.cpp in Sources */, - 1A70DDEDF9E13FF4BDA390EB /* bmpbndl.mm in Sources */, - A92439BAFD3A30A29DD93133 /* apptraits.cpp in Sources */, - E82CB89681FF3747B6A94428 /* anybutton_osx.cpp in Sources */, - 49FE0228D8FD3F7AB64A4433 /* bmpbuttn_osx.cpp in Sources */, - 6AC347D2DCC730149A0A83D9 /* button_osx.cpp in Sources */, + C2D45B334BE03F6C941CA041 /* utilsexc_cf.cpp in Sources */, + 1A70DDEDF9E13FF4BDA390EA /* bmpbndl.mm in Sources */, + A92439BAFD3A30A29DD93131 /* apptraits.cpp in Sources */, + E82CB89681FF3747B6A94427 /* anybutton_osx.cpp in Sources */, + 49FE0228D8FD3F7AB64A4432 /* bmpbuttn_osx.cpp in Sources */, + 6AC347D2DCC730149A0A83DA /* button_osx.cpp in Sources */, 0E92CEF677AA32C9A8CDA0A8 /* checkbox_osx.cpp in Sources */, - 07412469921A3E488A2F9BA6 /* checklst_osx.cpp in Sources */, + 07412469921A3E488A2F9BA7 /* checklst_osx.cpp in Sources */, 4666CDC48BA9301EA283BFFF /* choice_osx.cpp in Sources */, - 0836590D35FE37988DE70442 /* combobox_osx.cpp in Sources */, + 0836590D35FE37988DE70444 /* combobox_osx.cpp in Sources */, 2DF74933A90E34129F1BEF74 /* dnd_osx.cpp in Sources */, - 0FFFFA2F762B3160955D1D88 /* gauge_osx.cpp in Sources */, - E4B826CE70283D999CB591F4 /* listbox_osx.cpp in Sources */, + 0FFFFA2F762B3160955D1D89 /* gauge_osx.cpp in Sources */, + E4B826CE70283D999CB591F3 /* listbox_osx.cpp in Sources */, B198DA8239E9358A9D56B98A /* menu_osx.cpp in Sources */, - 1DF3A4F85FCB3BA79A552F3E /* menuitem_osx.cpp in Sources */, - A3321FE2A87D3BD69E0BB00B /* notebook_osx.cpp in Sources */, + 1DF3A4F85FCB3BA79A552F3D /* menuitem_osx.cpp in Sources */, + A3321FE2A87D3BD69E0BB00A /* notebook_osx.cpp in Sources */, 0C9A379D97B133FA831175A9 /* printdlg_osx.cpp in Sources */, B1775EF7C72233408044034D /* radiobox_osx.cpp in Sources */, - 6A081BF19747385CB4C18781 /* radiobut_osx.cpp in Sources */, - DF8CE011EAC23F73BDA1C44D /* scrolbar_osx.cpp in Sources */, - 27E73CA5C35A30CE89946ECA /* slider_osx.cpp in Sources */, + 6A081BF19747385CB4C18780 /* radiobut_osx.cpp in Sources */, + DF8CE011EAC23F73BDA1C44F /* scrolbar_osx.cpp in Sources */, + 27E73CA5C35A30CE89946ECB /* slider_osx.cpp in Sources */, 00F1531404F832C6AE0748F3 /* spinbutt_osx.cpp in Sources */, - 91EA325FCE3A3A6A8D1D21A7 /* srchctrl_osx.cpp in Sources */, - 221DC4F6678A3EC5ACDDEA4F /* statbox_osx.cpp in Sources */, - 91BC7802C15337CDA84C3744 /* statline_osx.cpp in Sources */, - 283C3ABE42433244983C27C1 /* stattext_osx.cpp in Sources */, - B6891F848CA0325EAB6D1373 /* textentry_osx.cpp in Sources */, - EDCA35F1555F3509895CCA69 /* textctrl_osx.cpp in Sources */, - 664A54F914443110B7BB692A /* tglbtn_osx.cpp in Sources */, + 91EA325FCE3A3A6A8D1D21A6 /* srchctrl_osx.cpp in Sources */, + 221DC4F6678A3EC5ACDDEA50 /* statbox_osx.cpp in Sources */, + 91BC7802C15337CDA84C3743 /* statline_osx.cpp in Sources */, + 283C3ABE42433244983C27C3 /* stattext_osx.cpp in Sources */, + B6891F848CA0325EAB6D1374 /* textentry_osx.cpp in Sources */, + EDCA35F1555F3509895CCA6A /* textctrl_osx.cpp in Sources */, + 664A54F914443110B7BB6929 /* tglbtn_osx.cpp in Sources */, A569A33A2097316D8110C2C3 /* toolbar_osx.cpp in Sources */, - F5FF98C231B33E3EB7902C65 /* colordlgosx.mm in Sources */, - 2386B575BC3931D2AF86CB35 /* fontdlgosx.mm in Sources */, - 2EECB3C2F9523D0B95847A80 /* accel.cpp in Sources */, - 7F77E347E1243D77A666FB44 /* clipbrd.cpp in Sources */, - 5417332FE2DB3CD3A647B15F /* cursor.cpp in Sources */, - D66F5D4D204B3B789C7F76B9 /* fontdlg.cpp in Sources */, - 692FCCABFB963696AFC1E122 /* gdiobj.cpp in Sources */, - B0E94A59C83637C09FAAE71D /* app.cpp in Sources */, - EB52C6A915943813932944FE /* control.cpp in Sources */, - 45AB45C6B24A3983B22E56A7 /* dataobj.cpp in Sources */, - D088E7DDE38C31DC9C9B3417 /* dcclient.cpp in Sources */, - 182DFDBB58653FD9863D4177 /* dcprint.cpp in Sources */, + F5FF98C231B33E3EB7902C66 /* colordlgosx.mm in Sources */, + 2386B575BC3931D2AF86CB34 /* fontdlgosx.mm in Sources */, + 2EECB3C2F9523D0B95847A81 /* accel.cpp in Sources */, + 7F77E347E1243D77A666FB45 /* clipbrd.cpp in Sources */, + 5417332FE2DB3CD3A647B15E /* cursor.cpp in Sources */, + D66F5D4D204B3B789C7F76BB /* fontdlg.cpp in Sources */, + 692FCCABFB963696AFC1E123 /* gdiobj.cpp in Sources */, + B0E94A59C83637C09FAAE71E /* app.cpp in Sources */, + EB52C6A91594381393294502 /* control.cpp in Sources */, + 45AB45C6B24A3983B22E56A5 /* dataobj.cpp in Sources */, + D088E7DDE38C31DC9C9B3419 /* dcclient.cpp in Sources */, + 182DFDBB58653FD9863D4176 /* dcprint.cpp in Sources */, AAC2CB4D851230008AE4ABA1 /* dcscreen.cpp in Sources */, - 774EB9F3F7E93A379E1F7551 /* graphics.cpp in Sources */, - 5792675690843C6AA4125A73 /* font.cpp in Sources */, + 774EB9F3F7E93A379E1F7553 /* graphics.cpp in Sources */, + 5792675690843C6AA4125A74 /* font.cpp in Sources */, BDAB44F5D017395D9D3A1F23 /* frame.cpp in Sources */, - 27E2EABB117334CD89CFD2A5 /* mdi.cpp in Sources */, - 73AA68AB9F1236ED9F1FBB2E /* metafile.cpp in Sources */, + 27E2EABB117334CD89CFD2A4 /* mdi.cpp in Sources */, + 73AA68AB9F1236ED9F1FBB2F /* metafile.cpp in Sources */, 805CCAE64D023561AD334B53 /* popupwin.cpp in Sources */, - F6A1AC5CF84E32C19F91A615 /* statbrma.cpp in Sources */, - D070C3BE95483FE38BABA1C0 /* region.cpp in Sources */, - 07158EBC05A637ECA9DC7B50 /* utilscocoa.mm in Sources */, + F6A1AC5CF84E32C19F91A616 /* statbrma.cpp in Sources */, + D070C3BE95483FE38BABA1BF /* region.cpp in Sources */, + 07158EBC05A637ECA9DC7B51 /* utilscocoa.mm in Sources */, 7E6C627A325F32FFB2EF9B9E /* caret.cpp in Sources */, - FB8B6E4789A3311A98C5B0AA /* clrpickerg.cpp in Sources */, - 7569F0BC3C603EB191680890 /* collpaneg.cpp in Sources */, - BBAABF3C693E37D3B0FF2502 /* colrdlgg.cpp in Sources */, - F70156C3E68B38FCB72FE253 /* dirdlgg.cpp in Sources */, + FB8B6E4789A3311A98C5B0A9 /* clrpickerg.cpp in Sources */, + 7569F0BC3C603EB191680891 /* collpaneg.cpp in Sources */, + BBAABF3C693E37D3B0FF2504 /* colrdlgg.cpp in Sources */, + F70156C3E68B38FCB72FE254 /* dirdlgg.cpp in Sources */, E1F7C51F411B3AF39476E489 /* fdrepdlg.cpp in Sources */, A965348C7FA73CEC90C8FA26 /* filedlgg.cpp in Sources */, FD1F6CD8286D3D428FD52A28 /* filepickerg.cpp in Sources */, - 16A382A265DE32FABC318F70 /* fontdlgg.cpp in Sources */, + 16A382A265DE32FABC318F6F /* fontdlgg.cpp in Sources */, BEAC2449AFA7304989BA301F /* fontpickerg.cpp in Sources */, - C3AC94EA13C1352790BF5FF7 /* listctrl.cpp in Sources */, - C005C2D547E735E9B081658F /* prntdlgg.cpp in Sources */, - A1AF8FF873D6383996995ED1 /* statusbr.cpp in Sources */, - 2E059BFE8E3B3D9299D5596A /* textmeasure.cpp in Sources */, - 01D4C5F2147F3942A7CE91AB /* icon.cpp in Sources */, + C3AC94EA13C1352790BF5FF9 /* listctrl.cpp in Sources */, + C005C2D547E735E9B081658E /* prntdlgg.cpp in Sources */, + A1AF8FF873D6383996995ED0 /* statusbr.cpp in Sources */, + 2E059BFE8E3B3D9299D55969 /* textmeasure.cpp in Sources */, 750C716389AD3ADBABC9D68B /* statbmp_osx.cpp in Sources */, - 1EDED99760B23A1999E75C14 /* imaglist.cpp in Sources */, - 65AD3B31319C35F1AC9EC626 /* anybutton.mm in Sources */, + 1EDED99760B23A1999E75C12 /* imaglist.cpp in Sources */, + 65AD3B31319C35F1AC9EC627 /* anybutton.mm in Sources */, CE32C5250F2834D4B81BE898 /* appprogress.mm in Sources */, - 14D6D5F8F5ED3C71936DD2B0 /* button.mm in Sources */, + 14D6D5F8F5ED3C71936DD2B1 /* button.mm in Sources */, 67A0583ADD8C35B8B9BA3D12 /* checkbox.mm in Sources */, - 603DF49D176737D383CE4F03 /* choice.mm in Sources */, - 8C2B50E3FC7A37C58CC9DC0C /* colour.mm in Sources */, - 8C52B1985BAA371FA22CCEBC /* combobox.mm in Sources */, - 6C3A459236F736B8A14A13AE /* dialog.mm in Sources */, - 8A9C3C04D00334418C3446FB /* dirdlg.mm in Sources */, - 5700B7F9166A37FDAA72E9DD /* dnd.mm in Sources */, + 603DF49D176737D383CE4F01 /* choice.mm in Sources */, + 8C2B50E3FC7A37C58CC9DC0A /* colour.mm in Sources */, + 8C52B1985BAA371FA22CCEBB /* combobox.mm in Sources */, + 6C3A459236F736B8A14A13AD /* dialog.mm in Sources */, + 8A9C3C04D00334418C3446FA /* dirdlg.mm in Sources */, + 5700B7F9166A37FDAA72E9DC /* dnd.mm in Sources */, 58AABAD40AA236438347DDDF /* evtloop.mm in Sources */, - C40AA245D5773351979A2852 /* filedlg.mm in Sources */, - 23E9AF567E873B948EFEA181 /* gauge.mm in Sources */, - 6E1FD7D3DEF03748AEE3A29F /* listbox.mm in Sources */, + C40AA245D5773351979A2851 /* filedlg.mm in Sources */, + 23E9AF567E873B948EFEA182 /* gauge.mm in Sources */, + 6E1FD7D3DEF03748AEE3A29D /* listbox.mm in Sources */, 2A79B68D20FE3C9B98A15534 /* menu.mm in Sources */, - 127E255EE601383A9E0EF7EA /* menuitem.mm in Sources */, - F84D59648206349A9768157E /* msgdlg.mm in Sources */, - D6CF7416CA6A3CFF8FDFD49D /* nativewin.mm in Sources */, - 893BDA491EDE3A0E91FADE41 /* nonownedwnd.mm in Sources */, + 127E255EE601383A9E0EF7EB /* menuitem.mm in Sources */, + F84D59648206349A9768157C /* msgdlg.mm in Sources */, + D6CF7416CA6A3CFF8FDFD49C /* nativewin.mm in Sources */, + 893BDA491EDE3A0E91FADE42 /* nonownedwnd.mm in Sources */, 33BA7D6B9DC3378B820DEB88 /* notebook.mm in Sources */, - 9241AAE354C53190BF3D5BA5 /* radiobut.mm in Sources */, - 8EE5A2467401365C8217AF30 /* preferences.mm in Sources */, + 9241AAE354C53190BF3D5BA3 /* radiobut.mm in Sources */, + 8EE5A2467401365C8217AF2F /* preferences.mm in Sources */, 22E90F33B5C9308EBF37A702 /* printdlg.mm in Sources */, - 5303FA25D0773FAEB963D8E5 /* scrolbar.mm in Sources */, - 30AEDF41EC5C374DBF96EFFB /* slider.mm in Sources */, - 5DA146A9F7653F53BF5299EA /* spinbutt.mm in Sources */, - 55F01295F1D23805BCA12F16 /* srchctrl.mm in Sources */, + 5303FA25D0773FAEB963D8E3 /* scrolbar.mm in Sources */, + 30AEDF41EC5C374DBF96EFFC /* slider.mm in Sources */, + 5DA146A9F7653F53BF5299E8 /* spinbutt.mm in Sources */, + 55F01295F1D23805BCA12F15 /* srchctrl.mm in Sources */, B30D10F6257631B0A1926F8A /* statbox.mm in Sources */, - 1DE75213D296323B815A02BE /* statline.mm in Sources */, - 21F74D4D4D84375AB155FD5D /* stattext.mm in Sources */, - 675B4E6CBA8632E89B4AC26F /* textctrl.mm in Sources */, - E6CA1EB5550F3930BFE286CE /* tglbtn.mm in Sources */, - A53B8C3ED0D33A1D9AA8219A /* toolbar.mm in Sources */, - 2B4507BC09563DB5B0F16597 /* tooltip.mm in Sources */, - 815AE3FED68330F4933AA170 /* window.mm in Sources */, - 47C31B7492F33C3EBE53262C /* settings.mm in Sources */, - 4156FDB73D0A397A870E4302 /* overlay.mm in Sources */, + 1DE75213D296323B815A02BF /* statline.mm in Sources */, + 21F74D4D4D84375AB155FD5C /* stattext.mm in Sources */, + 675B4E6CBA8632E89B4AC26E /* textctrl.mm in Sources */, + E6CA1EB5550F3930BFE286CD /* tglbtn.mm in Sources */, + A53B8C3ED0D33A1D9AA8219B /* toolbar.mm in Sources */, + 2B4507BC09563DB5B0F16598 /* tooltip.mm in Sources */, + 815AE3FED68330F4933AA16F /* window.mm in Sources */, + 47C31B7492F33C3EBE53262A /* settings.mm in Sources */, + 4156FDB73D0A397A870E4304 /* overlay.mm in Sources */, 14DEBD7C01FC358B917FDAF2 /* aboutdlg.mm in Sources */, - 0723C4E8B52C39FDBC2158B7 /* dataview_osx.cpp in Sources */, - 1B69C40CD7493FED9A272836 /* notifmsg.mm in Sources */, - 25C5C1713C0B39AC8EB6A390 /* taskbar.mm in Sources */, + 0723C4E8B52C39FDBC2158B6 /* dataview_osx.cpp in Sources */, + 1B69C40CD7493FED9A272837 /* notifmsg.mm in Sources */, + 25C5C1713C0B39AC8EB6A38F /* taskbar.mm in Sources */, 4F99EB97F65330C28EB4D079 /* datectrl_osx.cpp in Sources */, - 3316A16628B03D5E88529EA9 /* datetimectrl.mm in Sources */, - 61FEDBF2D47A3B4E861F829A /* sound.cpp in Sources */, - CE2C937117FE3AB599DD30BB /* sound_osx.cpp in Sources */, - 219304C9DDA33E9AADB515DE /* datetimectrl_osx.cpp in Sources */, - C1DCF69200593986A8C606A7 /* hidjoystick.cpp in Sources */, + 3316A16628B03D5E88529EA8 /* datetimectrl.mm in Sources */, + 61FEDBF2D47A3B4E861F8297 /* sound.cpp in Sources */, + CE2C937117FE3AB599DD30BA /* sound_osx.cpp in Sources */, + 219304C9DDA33E9AADB515DC /* datetimectrl_osx.cpp in Sources */, + C1DCF69200593986A8C606A8 /* hidjoystick.cpp in Sources */, 61FEDBF2D47A3B4E861F8296 /* sound.cpp in Sources */, - 049052C49B0B3810BE0179CB /* dataview.mm in Sources */, + 049052C49B0B3810BE0179CA /* dataview.mm in Sources */, 20D05D14BFAD3F969666D03C /* timectrl_osx.cpp in Sources */, D00AF125FCB63A7A8F9B87E0 /* taskbarcmn.cpp in Sources */, - A4F2426F36653C6D87EC18B0 /* activityindicator.mm in Sources */, - 215958201947310B88BBEDB4 /* statbmp.mm in Sources */, + A4F2426F36653C6D87EC18AE /* activityindicator.mm in Sources */, + 215958201947310B88BBEDB3 /* statbmp.mm in Sources */, F1F484DD591337399FCD0463 /* display.cpp in Sources */, 2FB16C6469433F1C9174912A /* renderer.mm in Sources */, 3CDE2B6BF88D326189F069BE /* accelcmn.cpp in Sources */, - BDB8EF0E0DA03693BFB77EF8 /* accesscmn.cpp in Sources */, + BDB8EF0E0DA03693BFB77EF7 /* accesscmn.cpp in Sources */, 205520440CD13C0AB9E89159 /* anidecod.cpp in Sources */, - 353B584AD0C03919A57A304A /* affinematrix2d.cpp in Sources */, - DDC71B80D562303690FDBE4D /* appcmn.cpp in Sources */, + 353B584AD0C03919A57A3049 /* affinematrix2d.cpp in Sources */, + DDC71B80D562303690FDBE4C /* appcmn.cpp in Sources */, EE0EA850822E35F596B5EBBB /* artprov.cpp in Sources */, A283187810EB32DAA173BD34 /* artstd.cpp in Sources */, - 75DCE6FF00E93C5D93970842 /* arttango.cpp in Sources */, + 75DCE6FF00E93C5D93970844 /* arttango.cpp in Sources */, 1749412E53B9311DABA71DDC /* bmpbase.cpp in Sources */, - 3ACCC2EB8E973C11835EB597 /* bmpbtncmn.cpp in Sources */, - A5775D87FD713CBB930A783E /* bookctrl.cpp in Sources */, - C3A63D7091913CD39094AE0B /* btncmn.cpp in Sources */, + 3ACCC2EB8E973C11835EB599 /* bmpbtncmn.cpp in Sources */, + A5775D87FD713CBB930A7840 /* bookctrl.cpp in Sources */, + C3A63D7091913CD39094AE0C /* btncmn.cpp in Sources */, FBA19C939E1E33EDB05043FE /* cairo.cpp in Sources */, - 427E6AF88CF73D799206E37E /* checkboxcmn.cpp in Sources */, - 37749AC3468836FC857BD0D7 /* checklstcmn.cpp in Sources */, + 427E6AF88CF73D799206E37F /* checkboxcmn.cpp in Sources */, + 37749AC3468836FC857BD0D5 /* checklstcmn.cpp in Sources */, C0CDA289E9EC3E20BE70B2E8 /* choiccmn.cpp in Sources */, - DFEB8DA3D42734949CB1E1AA /* clipcmn.cpp in Sources */, + DFEB8DA3D42734949CB1E1AC /* clipcmn.cpp in Sources */, 9D4B67A357D23B5283CA8D99 /* clrpickercmn.cpp in Sources */, - EBF2D44758003221A22202BD /* colourcmn.cpp in Sources */, + EBF2D44758003221A22202BC /* colourcmn.cpp in Sources */, 335DD610974A33D4B6581E2C /* colourdata.cpp in Sources */, - D542C7819D593112AE5F7C3F /* combocmn.cpp in Sources */, - 6F0605F3A4E83BF0BF4C8B7F /* cmdproc.cpp in Sources */, - 20F10669703137E68318C6FD /* cmndata.cpp in Sources */, - 6FA47EAACE613B039B6EC262 /* containr.cpp in Sources */, + D542C7819D593112AE5F7C3E /* combocmn.cpp in Sources */, + 6F0605F3A4E83BF0BF4C8B80 /* cmdproc.cpp in Sources */, + 20F10669703137E68318C6FE /* cmndata.cpp in Sources */, + 6FA47EAACE613B039B6EC263 /* containr.cpp in Sources */, 0C485288EA86379D9FD66537 /* cshelp.cpp in Sources */, 25656617A56D342AA3D1BFE4 /* ctrlcmn.cpp in Sources */, - BF1760458996391E8EB42949 /* ctrlsub.cpp in Sources */, - 2D60F289103837EA8925E3F1 /* dcbase.cpp in Sources */, + BF1760458996391E8EB4294A /* ctrlsub.cpp in Sources */, + 2D60F289103837EA8925E3F3 /* dcbase.cpp in Sources */, 39D6435B10073B85A499AFDA /* dcbufcmn.cpp in Sources */, - 9564A6968D66325DAEADEBA5 /* dcgraph.cpp in Sources */, - B791BD05072B3B909A7093C4 /* dcsvg.cpp in Sources */, - B559E894684A38238CAAA116 /* dirctrlcmn.cpp in Sources */, - 63F0C8EEDF4B3641878A8B4D /* dlgcmn.cpp in Sources */, - B839235BED6F3609BDB732B9 /* dndcmn.cpp in Sources */, + 9564A6968D66325DAEADEBA3 /* dcgraph.cpp in Sources */, + B791BD05072B3B909A7093C3 /* dcsvg.cpp in Sources */, + B559E894684A38238CAAA117 /* dirctrlcmn.cpp in Sources */, + 63F0C8EEDF4B3641878A8B4F /* dlgcmn.cpp in Sources */, + B839235BED6F3609BDB732B8 /* dndcmn.cpp in Sources */, 2CCC30C0162131DBBE9D8027 /* dobjcmn.cpp in Sources */, - F0B3F484C38C3BA0B9927CDA /* docmdi.cpp in Sources */, - B1E30CF6CFA932F5A3DBA94F /* docview.cpp in Sources */, - F80C2290D67B345F9CF60085 /* dpycmn.cpp in Sources */, - 6BF19C7CA9E93D989C210FE4 /* dseldlg.cpp in Sources */, - C2E37E798F743A4199C86590 /* fddlgcmn.cpp in Sources */, + F0B3F484C38C3BA0B9927CDB /* docmdi.cpp in Sources */, + B1E30CF6CFA932F5A3DBA950 /* docview.cpp in Sources */, + F80C2290D67B345F9CF60087 /* dpycmn.cpp in Sources */, + 6BF19C7CA9E93D989C210FE5 /* dseldlg.cpp in Sources */, + C2E37E798F743A4199C8658F /* fddlgcmn.cpp in Sources */, 37715483D08335B790FFE058 /* filectrlcmn.cpp in Sources */, - 0730A107A2B935A9923C8EF4 /* filehistorycmn.cpp in Sources */, - 9881E3FB23ED3283B6CC71A4 /* filepickercmn.cpp in Sources */, + 0730A107A2B935A9923C8EF3 /* filehistorycmn.cpp in Sources */, + 9881E3FB23ED3283B6CC71A3 /* filepickercmn.cpp in Sources */, 064908348009398C8EA8497E /* fontpickercmn.cpp in Sources */, - 1E166FC1A7B3371FB038B172 /* fldlgcmn.cpp in Sources */, - F747991E5C973F9B8C9D800B /* fontcmn.cpp in Sources */, - 1E2AB43075973AE59A8D89C2 /* fontdata.cpp in Sources */, - F910C74E48823E0BA7F7885F /* graphicc.cpp in Sources */, + 1E166FC1A7B3371FB038B173 /* fldlgcmn.cpp in Sources */, + F747991E5C973F9B8C9D800A /* fontcmn.cpp in Sources */, + 1E2AB43075973AE59A8D89C1 /* fontdata.cpp in Sources */, + F910C74E48823E0BA7F7885E /* graphicc.cpp in Sources */, F1E4D7CA634E33808AE3B522 /* fontenumcmn.cpp in Sources */, - D5AABE973F3A351EB1C1A5A8 /* fontmap.cpp in Sources */, - 60706F8836A130A2AF282FE1 /* fontutilcmn.cpp in Sources */, - EDD5725CF41336EFA7FB3009 /* framecmn.cpp in Sources */, + D5AABE973F3A351EB1C1A5A7 /* fontmap.cpp in Sources */, + 60706F8836A130A2AF282FE3 /* fontutilcmn.cpp in Sources */, + EDD5725CF41336EFA7FB300A /* framecmn.cpp in Sources */, EAA469E1A0CC33E4A21A3F7A /* gaugecmn.cpp in Sources */, 5A8638C234133824BDF93BC0 /* gbsizer.cpp in Sources */, 0E60E17BA4B23347A4F20162 /* gdicmn.cpp in Sources */, - 95AD56D602CF3C5085602AF8 /* geometry.cpp in Sources */, + 95AD56D602CF3C5085602AFA /* geometry.cpp in Sources */, 758629DA468A3EF7B1C15243 /* gifdecod.cpp in Sources */, - 7B642B17F5D23F4F8ED38BB5 /* graphcmn.cpp in Sources */, - B8FEEC2C94183AB69C963177 /* headercolcmn.cpp in Sources */, + 7B642B17F5D23F4F8ED38BB4 /* graphcmn.cpp in Sources */, + B8FEEC2C94183AB69C963178 /* headercolcmn.cpp in Sources */, 383A6993E90936D39A5F12BF /* headerctrlcmn.cpp in Sources */, - 4657479AF35533AEB7876676 /* helpbase.cpp in Sources */, + 4657479AF35533AEB7876677 /* helpbase.cpp in Sources */, BF2585CFA6853023975F1E7A /* iconbndl.cpp in Sources */, - 5B5B8DF915D438AA9FCEB3A0 /* imagall.cpp in Sources */, - 0813551C951A3AD1A5EF01B3 /* imagbmp.cpp in Sources */, - 6C822F7F313734DCB51F44BB /* image.cpp in Sources */, + 5B5B8DF915D438AA9FCEB39E /* imagall.cpp in Sources */, + 0813551C951A3AD1A5EF01B2 /* imagbmp.cpp in Sources */, + 6C822F7F313734DCB51F44BA /* image.cpp in Sources */, 89046455F49D3D75A21C9DB8 /* imagfill.cpp in Sources */, - 36DB80FD5B153E9099DB6913 /* imaggif.cpp in Sources */, + 36DB80FD5B153E9099DB6914 /* imaggif.cpp in Sources */, 9110ACFC3CFB3C7994E907B2 /* imagiff.cpp in Sources */, - D13596A4E3CD31DE810061A3 /* imagjpeg.cpp in Sources */, + D13596A4E3CD31DE810061A2 /* imagjpeg.cpp in Sources */, D83B32B788EC310D919E0DF8 /* imagpcx.cpp in Sources */, - 23965E313EDC3BBE9B2FA1C7 /* imagpng.cpp in Sources */, - 46E331300D8F349DB36AB50B /* imagpnm.cpp in Sources */, - AAABEE399008310A8BC9BE45 /* imagtga.cpp in Sources */, - 3C36437B2E933F83984D431F /* imagtiff.cpp in Sources */, - 774A89998E09308CBFB03EE0 /* imagxpm.cpp in Sources */, - 63F2517EC6B2334CA825A6F9 /* layout.cpp in Sources */, - CFF73578F04D357E83D1D831 /* lboxcmn.cpp in Sources */, + 23965E313EDC3BBE9B2FA1C6 /* imagpng.cpp in Sources */, + 46E331300D8F349DB36AB50A /* imagpnm.cpp in Sources */, + AAABEE399008310A8BC9BE43 /* imagtga.cpp in Sources */, + 3C36437B2E933F83984D4320 /* imagtiff.cpp in Sources */, + 774A89998E09308CBFB03EE1 /* imagxpm.cpp in Sources */, + 63F2517EC6B2334CA825A6FB /* layout.cpp in Sources */, + CFF73578F04D357E83D1D832 /* lboxcmn.cpp in Sources */, 164010B26D363F5FA09785B7 /* listctrlcmn.cpp in Sources */, - 2F7F5B9BBCD83D90B237A1A1 /* markupparser.cpp in Sources */, - 9A83D365AD1F37FA9C7030C2 /* matrix.cpp in Sources */, - E3A4615870B139D29FE727C2 /* menucmn.cpp in Sources */, - 171F09F8DD553FA5B4B3FAE3 /* modalhook.cpp in Sources */, - BD49EC50CB363642BDBF25C8 /* mousemanager.cpp in Sources */, + 2F7F5B9BBCD83D90B237A1A2 /* markupparser.cpp in Sources */, + 9A83D365AD1F37FA9C7030C4 /* matrix.cpp in Sources */, + E3A4615870B139D29FE727C1 /* menucmn.cpp in Sources */, + 171F09F8DD553FA5B4B3FAE2 /* modalhook.cpp in Sources */, + BD49EC50CB363642BDBF25C9 /* mousemanager.cpp in Sources */, 7A84B9471A3238B4B66B1776 /* nbkbase.cpp in Sources */, - AC6AC589EFB233C7B65A3226 /* overlaycmn.cpp in Sources */, + AC6AC589EFB233C7B65A3225 /* overlaycmn.cpp in Sources */, D6B2A64A78AF3F2983B441AA /* ownerdrwcmn.cpp in Sources */, 0742292656623EC481B34369 /* paper.cpp in Sources */, - E2A73751CECF32A68FFAEE83 /* panelcmn.cpp in Sources */, - 4279D39CAAF834F6A5B99197 /* persist.cpp in Sources */, - AF1E3338E892336E924AF632 /* pickerbase.cpp in Sources */, - 6E68759BC2E63CA59C12FDC2 /* popupcmn.cpp in Sources */, + E2A73751CECF32A68FFAEE84 /* panelcmn.cpp in Sources */, + 4279D39CAAF834F6A5B99198 /* persist.cpp in Sources */, + AF1E3338E892336E924AF633 /* pickerbase.cpp in Sources */, + 6E68759BC2E63CA59C12FDC0 /* popupcmn.cpp in Sources */, 6292B023DBF4337A91404AD1 /* preferencescmn.cpp in Sources */, - 1C52CB9487DF3AB9AF243B49 /* prntbase.cpp in Sources */, - 0B98B6721DEE37A1ADEA382B /* quantize.cpp in Sources */, - AE5286C71D1130EAA368A1C6 /* radiobtncmn.cpp in Sources */, - AEB9099819B33F4A8AAB9F55 /* radiocmn.cpp in Sources */, - 5116CE330E333724A66982E4 /* rearrangectrl.cpp in Sources */, + 1C52CB9487DF3AB9AF243B47 /* prntbase.cpp in Sources */, + 0B98B6721DEE37A1ADEA382C /* quantize.cpp in Sources */, + AE5286C71D1130EAA368A1C5 /* radiobtncmn.cpp in Sources */, + AEB9099819B33F4A8AAB9F54 /* radiocmn.cpp in Sources */, + 5116CE330E333724A66982E5 /* rearrangectrl.cpp in Sources */, A9864F0104FA344BBE79D3BD /* rendcmn.cpp in Sources */, - A80D00249A693F43A9CBE778 /* rgncmn.cpp in Sources */, - C259D01CC62533D296EF023C /* scrolbarcmn.cpp in Sources */, - 7625D908B2CD34C78243BA8F /* settcmn.cpp in Sources */, + A80D00249A693F43A9CBE779 /* rgncmn.cpp in Sources */, + C259D01CC62533D296EF023B /* scrolbarcmn.cpp in Sources */, + 7625D908B2CD34C78243BA90 /* settcmn.cpp in Sources */, F5D0BCF1A6C839E5829199E2 /* sizer.cpp in Sources */, EDD92822EBD93E86AE5A2ED0 /* slidercmn.cpp in Sources */, - F46777ABE0743B04A1E1F0A6 /* spinbtncmn.cpp in Sources */, + F46777ABE0743B04A1E1F0A5 /* spinbtncmn.cpp in Sources */, 49C873EE448C3CD9A32012CE /* spinctrlcmn.cpp in Sources */, 1EA81A0E8E5A3B38B4D80339 /* srchcmn.cpp in Sources */, - 4AEC67BF65B039D99F421668 /* statbar.cpp in Sources */, - 7C52E7CC12463941B0E4D402 /* statbmpcmn.cpp in Sources */, - D9DCBE799DB634C2A73FD6BF /* statboxcmn.cpp in Sources */, - 8B38C6C416BA3A51B37F60C6 /* statlinecmn.cpp in Sources */, - D9EE059D3C3C3C13AE4419F3 /* stattextcmn.cpp in Sources */, - BAFF04F1680F32DA988EB03E /* stockitem.cpp in Sources */, - 4958BD2E717A3F03AB030189 /* tbarbase.cpp in Sources */, - 9744994E8A813AA6938A7CE4 /* textcmn.cpp in Sources */, - AD4A533C4E1633598A6D5C6F /* textentrycmn.cpp in Sources */, + 4AEC67BF65B039D99F421667 /* statbar.cpp in Sources */, + 7C52E7CC12463941B0E4D403 /* statbmpcmn.cpp in Sources */, + D9DCBE799DB634C2A73FD6BE /* statboxcmn.cpp in Sources */, + 8B38C6C416BA3A51B37F60C4 /* statlinecmn.cpp in Sources */, + D9EE059D3C3C3C13AE4419F1 /* stattextcmn.cpp in Sources */, + BAFF04F1680F32DA988EB03D /* stockitem.cpp in Sources */, + 4958BD2E717A3F03AB03018A /* tbarbase.cpp in Sources */, + 9744994E8A813AA6938A7CE2 /* textcmn.cpp in Sources */, + AD4A533C4E1633598A6D5C70 /* textentrycmn.cpp in Sources */, 23479484EC143D34871550C2 /* textmeasurecmn.cpp in Sources */, - 700BBDECBE313E108BA99ABF /* toplvcmn.cpp in Sources */, - 45FE206BBAD13DDCA1EA41D0 /* treebase.cpp in Sources */, - 796311E398FF313C84218824 /* uiactioncmn.cpp in Sources */, - E9EDB5C92D5D3B529E8D73B2 /* valgen.cpp in Sources */, + 700BBDECBE313E108BA99ABD /* toplvcmn.cpp in Sources */, + 45FE206BBAD13DDCA1EA41CF /* treebase.cpp in Sources */, + 796311E398FF313C84218826 /* uiactioncmn.cpp in Sources */, + E9EDB5C92D5D3B529E8D73B0 /* valgen.cpp in Sources */, 9F70A89D00B03D4894AF7638 /* validate.cpp in Sources */, 1937FBA0A0DD32A8A743CFE3 /* valtext.cpp in Sources */, 6A032420671B375D81273715 /* valnum.cpp in Sources */, @@ -8323,83 +8322,83 @@ 1BCC944F5E0936F5830F03EA /* windowid.cpp in Sources */, 3399AB7BB1333B5AAF5FAF56 /* wrapsizer.cpp in Sources */, C1E5799141603A75A26BEEA7 /* xpmdecod.cpp in Sources */, - 46F341B46F80376B962759F6 /* animateg.cpp in Sources */, - F5806029B1BA3924A8FDDBC3 /* busyinfo.cpp in Sources */, - CB078622E90F33BE9D131136 /* buttonbar.cpp in Sources */, - 03035C5CE4BC3288A5A18424 /* choicdgg.cpp in Sources */, + 46F341B46F80376B962759F5 /* animateg.cpp in Sources */, + F5806029B1BA3924A8FDDBC2 /* busyinfo.cpp in Sources */, + CB078622E90F33BE9D131134 /* buttonbar.cpp in Sources */, + 03035C5CE4BC3288A5A18425 /* choicdgg.cpp in Sources */, 9CA687845B3F30CCA44A89D0 /* choicbkg.cpp in Sources */, - 4442EA28B0B3373B9A2D0862 /* collheaderctrlg.cpp in Sources */, + 4442EA28B0B3373B9A2D0863 /* collheaderctrlg.cpp in Sources */, 9C1F073349FD393E9220C0D4 /* combog.cpp in Sources */, - EAE02BA934B43EEE92C496C9 /* dcpsg.cpp in Sources */, - 22AE900003F73134BBEE8BB6 /* dirctrlg.cpp in Sources */, + EAE02BA934B43EEE92C496C8 /* dcpsg.cpp in Sources */, + 22AE900003F73134BBEE8BB8 /* dirctrlg.cpp in Sources */, 4040AE89BF9F34668091064B /* dragimgg.cpp in Sources */, - 7EF89F935314301381802FAC /* filectrlg.cpp in Sources */, + 7EF89F935314301381802FAD /* filectrlg.cpp in Sources */, 7D615329368D32709CEF4B59 /* headerctrlg.cpp in Sources */, - 2C95DFA8EE463487956B4EB5 /* infobar.cpp in Sources */, - 02E8F1195B653D26AAA89462 /* listbkg.cpp in Sources */, + 2C95DFA8EE463487956B4EB4 /* infobar.cpp in Sources */, + 02E8F1195B653D26AAA89464 /* listbkg.cpp in Sources */, 026F90F7492C316A94128916 /* logg.cpp in Sources */, 633DD2E870263F42A8DBF9BF /* markuptext.cpp in Sources */, 745C39E90E8C3C08A887B51D /* msgdlgg.cpp in Sources */, 1AF2B2346C9639DAA4D15F32 /* numdlgg.cpp in Sources */, - 4D0BA8B9F72C3C31BC170CE2 /* progdlgg.cpp in Sources */, - A1A7B833061C35B4AABD093C /* preferencesg.cpp in Sources */, - DEB35F871F8E3B90AD207AEF /* printps.cpp in Sources */, + 4D0BA8B9F72C3C31BC170CE4 /* progdlgg.cpp in Sources */, + A1A7B833061C35B4AABD093D /* preferencesg.cpp in Sources */, + DEB35F871F8E3B90AD207AEE /* printps.cpp in Sources */, 96927C5A21FD3ACF936CDF6D /* renderg.cpp in Sources */, F72020415D713C1BA41C17D1 /* richmsgdlgg.cpp in Sources */, - ED8D23D79FF33ED380FE09ED /* scrlwing.cpp in Sources */, - 85F9828B80B03178A274BD18 /* selstore.cpp in Sources */, - 84997126352137E798CD258B /* spinctlg.cpp in Sources */, - 62F1DC80D631335B892610AA /* splitter.cpp in Sources */, - B6C364CB4AE33708A862B4B4 /* srchctlg.cpp in Sources */, - 8FC1C07FEE793897A1E96D23 /* statbmpg.cpp in Sources */, + ED8D23D79FF33ED380FE09EC /* scrlwing.cpp in Sources */, + 85F9828B80B03178A274BD17 /* selstore.cpp in Sources */, + 84997126352137E798CD258C /* spinctlg.cpp in Sources */, + 62F1DC80D631335B892610A9 /* splitter.cpp in Sources */, + B6C364CB4AE33708A862B4B5 /* srchctlg.cpp in Sources */, + 8FC1C07FEE793897A1E96D25 /* statbmpg.cpp in Sources */, BF9B151DC0543E37878F8B9A /* stattextg.cpp in Sources */, 62757F24C4EE3B84B6AE3F16 /* textdlgg.cpp in Sources */, 249C9177B1A33EFEAB30F93F /* tipwin.cpp in Sources */, - 32FECED7A7633C4D8C1BFBB3 /* toolbkg.cpp in Sources */, + 32FECED7A7633C4D8C1BFBB5 /* toolbkg.cpp in Sources */, DB3C3AA956A03FB492480266 /* treectlg.cpp in Sources */, - 5388468A6F8F3141B25CD400 /* treebkg.cpp in Sources */, - 87C67583D36C3465ACD64105 /* vlbox.cpp in Sources */, - A465A43B756630F1944B5A56 /* vscroll.cpp in Sources */, + 5388468A6F8F3141B25CD401 /* treebkg.cpp in Sources */, + 87C67583D36C3465ACD64104 /* vlbox.cpp in Sources */, + A465A43B756630F1944B5A58 /* vscroll.cpp in Sources */, 1CBF34ACA39330028A5EA9AC /* xmlreshandler.cpp in Sources */, - 8AA341CCFB8E3F6AB3523596 /* splash.cpp in Sources */, - CEE0D7A7D5D8323B9957A780 /* notifmsgg.cpp in Sources */, - 1E17F95DD433379E8C18298E /* odcombo.cpp in Sources */, - 901F659891613419B8643954 /* calctrlcmn.cpp in Sources */, - E5D698D2606A304DA743AF94 /* grideditors.cpp in Sources */, + 8AA341CCFB8E3F6AB3523595 /* splash.cpp in Sources */, + CEE0D7A7D5D8323B9957A782 /* notifmsgg.cpp in Sources */, + 1E17F95DD433379E8C18298D /* odcombo.cpp in Sources */, + 901F659891613419B8643953 /* calctrlcmn.cpp in Sources */, + E5D698D2606A304DA743AF92 /* grideditors.cpp in Sources */, 5C44446AB150378696CD6B3D /* bmpcboxcmn.cpp in Sources */, - A139B846584436BCBEBAE3BF /* grid.cpp in Sources */, - 2E930206397C3EDCBD8206FD /* gridctrl.cpp in Sources */, + A139B846584436BCBEBAE3C1 /* grid.cpp in Sources */, + 2E930206397C3EDCBD8206FC /* gridctrl.cpp in Sources */, 760C729E41D93CC1AA2B4E0F /* hyperlinkg.cpp in Sources */, - F016C51053373E658ED4C9AA /* helpext.cpp in Sources */, - 3554C88010CE3D2A8970A136 /* sashwin.cpp in Sources */, - 187F921A95DA3594B0AD980D /* gridsel.cpp in Sources */, + F016C51053373E658ED4C9A9 /* helpext.cpp in Sources */, + 3554C88010CE3D2A8970A137 /* sashwin.cpp in Sources */, + 187F921A95DA3594B0AD980F /* gridsel.cpp in Sources */, EC3D181D65F33E09A675FFF2 /* addremovectrl.cpp in Sources */, 77BC918AF05C30E8A0BD27FA /* tipdlg.cpp in Sources */, FEA741A9B6663A4C929893C3 /* aboutdlgg.cpp in Sources */, - 2FAE979E6FE23D088C768B7F /* gridcmn.cpp in Sources */, - 2FE10EA678C73523836FCC1C /* richtooltipcmn.cpp in Sources */, - B4425B59CC27389CA9FF81D2 /* datectlg.cpp in Sources */, - E0FAB345D2933D42B62917A4 /* bannerwindow.cpp in Sources */, + 2FAE979E6FE23D088C768B7E /* gridcmn.cpp in Sources */, + 2FE10EA678C73523836FCC1E /* richtooltipcmn.cpp in Sources */, + B4425B59CC27389CA9FF81D1 /* datectlg.cpp in Sources */, + E0FAB345D2933D42B62917A3 /* bannerwindow.cpp in Sources */, 060E095718B03EF98C75479B /* treelist.cpp in Sources */, 1CD4F67F48CF3A5FA477D870 /* datavcmn.cpp in Sources */, - CFDBB80A4C9A3BA092273937 /* animatecmn.cpp in Sources */, + CFDBB80A4C9A3BA092273938 /* animatecmn.cpp in Sources */, E6D18B2EDE353F678830859F /* odcombocmn.cpp in Sources */, - 7B4DA2F5F25B3E188CBAFE3A /* hyperlnkcmn.cpp in Sources */, - 6A10511265493FA2BB79CE4D /* propdlg.cpp in Sources */, - B189DB62AE9F30A1B613756B /* bmpcboxg.cpp in Sources */, + 7B4DA2F5F25B3E188CBAFE39 /* hyperlnkcmn.cpp in Sources */, + 6A10511265493FA2BB79CE4E /* propdlg.cpp in Sources */, + B189DB62AE9F30A1B613756D /* bmpcboxg.cpp in Sources */, C67EAE20657E36839BF86691 /* richtooltipg.cpp in Sources */, - 98F52D5224B438DFA8887E08 /* timectrlg.cpp in Sources */, - 8A662992FFCB32E99D11950D /* commandlinkbuttong.cpp in Sources */, - 800CFCEDBB7938338C65EEAC /* notifmsgcmn.cpp in Sources */, - 82FA4AA043213728AC266700 /* wizard.cpp in Sources */, + 98F52D5224B438DFA8887E07 /* timectrlg.cpp in Sources */, + 8A662992FFCB32E99D11950E /* commandlinkbuttong.cpp in Sources */, + 800CFCEDBB7938338C65EEAD /* notifmsgcmn.cpp in Sources */, + 82FA4AA043213728AC266701 /* wizard.cpp in Sources */, 8B60964DA1DF3F3DB40BE123 /* datavgen.cpp in Sources */, 5557AA36FBCC3ED9A5F5751C /* editlbox.cpp in Sources */, 955D2199F1893D37BA2D7478 /* laywin.cpp in Sources */, - 2F50DBC14FE538A49823925B /* calctrlg.cpp in Sources */, + 2F50DBC14FE538A49823925C /* calctrlg.cpp in Sources */, 63F895D6F5643E4B9E666B7A /* creddlgg.cpp in Sources */, 8F372080E11E382EA0B5ED10 /* rowheightcache.cpp in Sources */, - DB244DC0A09C379AAA63C0A5 /* bmpbndl.cpp in Sources */, - 32988828498D32B2B3F8A983 /* bmpsvg.cpp in Sources */, + DB244DC0A09C379AAA63C0A6 /* bmpbndl.cpp in Sources */, + 32988828498D32B2B3F8A982 /* bmpsvg.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8414,8 +8413,8 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - DEC5F4B34BC037169D3E5F2A /* mediactrlcmn.cpp in Sources */, - B6BC23F4F3E43315BD4C7CF9 /* mediactrl.mm in Sources */, + DEC5F4B34BC037169D3E5F2B /* mediactrlcmn.cpp in Sources */, + B6BC23F4F3E43315BD4C7CFA /* mediactrl.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8423,32 +8422,32 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 47EBBB18BDB539C2A948C712 /* chm.cpp in Sources */, + 47EBBB18BDB539C2A948C711 /* chm.cpp in Sources */, BAA75384DA82370298672334 /* helpctrl.cpp in Sources */, - 2CAD4DF9505F36E4A2EAD53F /* helpdata.cpp in Sources */, - D17E3053DA0D3F7EA4D0951B /* helpdlg.cpp in Sources */, - 7C87CC7641033D91823ED68A /* helpfrm.cpp in Sources */, - 3D762A0BBF1B39B88A769634 /* helpwnd.cpp in Sources */, - 4DA209AEF4AD32AAB97F971A /* htmlcell.cpp in Sources */, - FD3CC5F0AA41384B9388A1E2 /* htmlfilt.cpp in Sources */, - C5E5AB869065307F83E27DD2 /* htmlpars.cpp in Sources */, - EBA0986930DA3B59B2FB4F1F /* htmltag.cpp in Sources */, - 93E04642049537EB8A37BA27 /* htmlwin.cpp in Sources */, - 3E99016BDE043A08B4D6B3D0 /* htmprint.cpp in Sources */, - 9836B3D336963795928FE5A1 /* m_dflist.cpp in Sources */, - 66584BC871303041BA622DE2 /* m_fonts.cpp in Sources */, - 99F7D7BFBB543A04AB728377 /* m_hline.cpp in Sources */, + 2CAD4DF9505F36E4A2EAD53E /* helpdata.cpp in Sources */, + D17E3053DA0D3F7EA4D0951C /* helpdlg.cpp in Sources */, + 7C87CC7641033D91823ED689 /* helpfrm.cpp in Sources */, + 3D762A0BBF1B39B88A769632 /* helpwnd.cpp in Sources */, + 4DA209AEF4AD32AAB97F9719 /* htmlcell.cpp in Sources */, + FD3CC5F0AA41384B9388A1E1 /* htmlfilt.cpp in Sources */, + C5E5AB869065307F83E27DD1 /* htmlpars.cpp in Sources */, + EBA0986930DA3B59B2FB4F20 /* htmltag.cpp in Sources */, + 93E04642049537EB8A37BA28 /* htmlwin.cpp in Sources */, + 3E99016BDE043A08B4D6B3CF /* htmprint.cpp in Sources */, + 9836B3D336963795928FE5A2 /* m_dflist.cpp in Sources */, + 66584BC871303041BA622DE0 /* m_fonts.cpp in Sources */, + 99F7D7BFBB543A04AB728375 /* m_hline.cpp in Sources */, A3586433C4B1398FB1C361D6 /* m_image.cpp in Sources */, - BD53E095EC1136EF853A47D9 /* m_layout.cpp in Sources */, - C05BDB0B5F5A33A9A57FF013 /* m_links.cpp in Sources */, - 81B742D64BEB373DB705947B /* m_list.cpp in Sources */, - FD38B04026F930CC80BC9481 /* m_pre.cpp in Sources */, + BD53E095EC1136EF853A47D8 /* m_layout.cpp in Sources */, + C05BDB0B5F5A33A9A57FF012 /* m_links.cpp in Sources */, + 81B742D64BEB373DB705947A /* m_list.cpp in Sources */, + FD38B04026F930CC80BC9482 /* m_pre.cpp in Sources */, 57AE7FCF768F3965BD39B47C /* m_span.cpp in Sources */, - 4CFB7E6E5BD53E2BB39BEF65 /* m_style.cpp in Sources */, + 4CFB7E6E5BD53E2BB39BEF64 /* m_style.cpp in Sources */, 3D424F4B33653A00AE9B623B /* m_tables.cpp in Sources */, F3AC352D6DAE3A12A5664768 /* styleparams.cpp in Sources */, 2A7640E4210334AC93366902 /* winpars.cpp in Sources */, - 87AA9C5D887B3C31A2AFB49F /* htmllbox.cpp in Sources */, + 87AA9C5D887B3C31A2AFB49E /* htmllbox.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8456,12 +8455,12 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0E23F212CBDD33848DEBCA70 /* webview_chromium.mm in Sources */, - 2DBF5F96CCC63F7481C26A44 /* webview_webkit.mm in Sources */, - 64A716F87A5136F9A790EC5A /* webview.cpp in Sources */, + 0E23F212CBDD33848DEBCA6E /* webview_chromium.mm in Sources */, + 2DBF5F96CCC63F7481C26A45 /* webview_webkit.mm in Sources */, + 64A716F87A5136F9A790EC5C /* webview.cpp in Sources */, 5C5D0983160A36189A770743 /* webviewarchivehandler.cpp in Sources */, - 048986FB629E313EA670CD0E /* webviewfshandler.cpp in Sources */, - AE95E3BDEDB7358DBE9E7E5B /* webview_chromium.cpp in Sources */, + 048986FB629E313EA670CD0D /* webviewfshandler.cpp in Sources */, + AE95E3BDEDB7358DBE9E7E5A /* webview_chromium.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8478,75 +8477,76 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8F949B9010863F66A58FFEF2 /* xh_activityindicator.cpp in Sources */, - FBE4DB30865D3177B3A9993D /* xh_animatctrl.cpp in Sources */, + 8F949B9010863F66A58FFEF3 /* xh_activityindicator.cpp in Sources */, + FBE4DB30865D3177B3A9993C /* xh_animatctrl.cpp in Sources */, 702616D38A5B345D9CC87115 /* xh_bannerwindow.cpp in Sources */, - 94E510619F433AE3AC884756 /* xh_bmp.cpp in Sources */, - 8966F77CC97B3ED780C8F137 /* xh_bmpcbox.cpp in Sources */, + 94E510619F433AE3AC884755 /* xh_bmp.cpp in Sources */, + 8966F77CC97B3ED780C8F138 /* xh_bmpcbox.cpp in Sources */, 84B3625464F732C3A79E1316 /* xh_bmpbt.cpp in Sources */, - D5C304182151365FA9FF8A3D /* xh_bttn.cpp in Sources */, + D5C304182151365FA9FF8A3F /* xh_bttn.cpp in Sources */, FE9A662A1F9B34D099C45C1F /* xh_cald.cpp in Sources */, - 6138BCBC8E4438FA91E0EFA0 /* xh_chckb.cpp in Sources */, - 5F2C2A46781739D897CF293F /* xh_chckl.cpp in Sources */, + 6138BCBC8E4438FA91E0EF9F /* xh_chckb.cpp in Sources */, + 5F2C2A46781739D897CF293D /* xh_chckl.cpp in Sources */, CE17002B5B7E375582747639 /* xh_choic.cpp in Sources */, - 26E4813A97DE323E88119163 /* xh_choicbk.cpp in Sources */, - E7AF3BF2B3473AD9BE66D1A2 /* xh_clrpicker.cpp in Sources */, - 1AB50C98FF473B33A3CA4D3B /* xh_cmdlinkbn.cpp in Sources */, - E7921B0472B63E4091F4F519 /* xh_collpane.cpp in Sources */, - 84382E5DB3203A73AC5EE391 /* xh_combo.cpp in Sources */, + 26E4813A97DE323E88119164 /* xh_choicbk.cpp in Sources */, + E7AF3BF2B3473AD9BE66D1A1 /* xh_clrpicker.cpp in Sources */, + 1AB50C98FF473B33A3CA4D3A /* xh_cmdlinkbn.cpp in Sources */, + E7921B0472B63E4091F4F517 /* xh_collpane.cpp in Sources */, + 84382E5DB3203A73AC5EE390 /* xh_combo.cpp in Sources */, F569D7A3F0E038E9B4CC2A77 /* xh_comboctrl.cpp in Sources */, - 14F303FD6B5F383DADDFD78A /* xh_dataview.cpp in Sources */, + 14F303FD6B5F383DADDFD788 /* xh_dataview.cpp in Sources */, FB09720D13673A7B81BCB645 /* xh_datectrl.cpp in Sources */, - F7D10B6E0CBA32EFAF79C77E /* xh_dirpicker.cpp in Sources */, - 3B7E035ECF3D3FFB9827AC1E /* xh_dlg.cpp in Sources */, + F7D10B6E0CBA32EFAF79C77C /* xh_dirpicker.cpp in Sources */, + 3B7E035ECF3D3FFB9827AC1C /* xh_dlg.cpp in Sources */, E05B06A7FEEE32D5AD87EA51 /* xh_editlbox.cpp in Sources */, - F24F637D59F637CA9A7E23C9 /* xh_filectrl.cpp in Sources */, - 5FE969523BDB3353AEF96811 /* xh_filepicker.cpp in Sources */, - 438EAEA4B30C325C827F6198 /* xh_fontpicker.cpp in Sources */, - 95826E8528CC32D8934C36ED /* xh_frame.cpp in Sources */, - BE99A85EE76236CC8C719A66 /* xh_gauge.cpp in Sources */, - 26649553E4763EE6BA268B7D /* xh_gdctl.cpp in Sources */, - 72AD4417FF7C3094BB1FF62C /* xh_grid.cpp in Sources */, + F24F637D59F637CA9A7E23CB /* xh_filectrl.cpp in Sources */, + 5FE969523BDB3353AEF96812 /* xh_filepicker.cpp in Sources */, + 438EAEA4B30C325C827F6197 /* xh_fontpicker.cpp in Sources */, + 95826E8528CC32D8934C36EE /* xh_frame.cpp in Sources */, + BE99A85EE76236CC8C719A65 /* xh_gauge.cpp in Sources */, + 26649553E4763EE6BA268B7F /* xh_gdctl.cpp in Sources */, + 72AD4417FF7C3094BB1FF62D /* xh_grid.cpp in Sources */, 83616D33080E3F0F9FA5FBB6 /* xh_html.cpp in Sources */, - 2B13BFC894C63373B7ACFA3F /* xh_hyperlink.cpp in Sources */, + 2B13BFC894C63373B7ACFA3D /* xh_hyperlink.cpp in Sources */, EA10DA3199813E90B39C70D3 /* xh_infobar.cpp in Sources */, C34B8675439F39B4845FFC52 /* xh_listb.cpp in Sources */, F5DF7AF0FA9E371BB71EF79A /* xh_listbk.cpp in Sources */, - 96B507455762391688B5E502 /* xh_listc.cpp in Sources */, - F34D240EB4513FE996179184 /* xh_mdi.cpp in Sources */, - 65FCDBFFF3F138A3ABBAA650 /* xh_menu.cpp in Sources */, - 0FBF7C9EDFB53D8DA0991B57 /* xh_notbk.cpp in Sources */, - 0FA6E1E47F123FF4A902E4D3 /* xh_odcombo.cpp in Sources */, - 36B0B923B836358D9DB0AE11 /* xh_panel.cpp in Sources */, - CDC0FF253B503BA19693D68F /* xh_propdlg.cpp in Sources */, - 47F4FC8717AF3A848812DFCD /* xh_radbt.cpp in Sources */, - 7181709A030D3749AB355B74 /* xh_radbx.cpp in Sources */, - FDE14459359334DE9FB03ED7 /* xh_scrol.cpp in Sources */, - 87092C0C817D343DAB77E23F /* xh_scwin.cpp in Sources */, + 96B507455762391688B5E500 /* xh_listc.cpp in Sources */, + F34D240EB4513FE996179183 /* xh_mdi.cpp in Sources */, + 65FCDBFFF3F138A3ABBAA651 /* xh_menu.cpp in Sources */, + 0FBF7C9EDFB53D8DA0991B56 /* xh_notbk.cpp in Sources */, + 0FA6E1E47F123FF4A902E4D4 /* xh_odcombo.cpp in Sources */, + 36B0B923B836358D9DB0AE10 /* xh_panel.cpp in Sources */, + CDC0FF253B503BA19693D68D /* xh_propdlg.cpp in Sources */, + 47F4FC8717AF3A848812DFCC /* xh_radbt.cpp in Sources */, + 7181709A030D3749AB355B75 /* xh_radbx.cpp in Sources */, + FDE14459359334DE9FB03ED5 /* xh_scrol.cpp in Sources */, + 87092C0C817D343DAB77E240 /* xh_scwin.cpp in Sources */, 00E2F82590B33BDCA1F6D0C5 /* xh_htmllbox.cpp in Sources */, - A39B0D7EB43137F7BA50A35D /* xh_simplebook.cpp in Sources */, + A39B0D7EB43137F7BA50A35E /* xh_simplebook.cpp in Sources */, E1A20811148F31D289AF98B0 /* xh_sizer.cpp in Sources */, - 5F6B4F226B473AACB7AC8DF6 /* xh_slidr.cpp in Sources */, + 5F6B4F226B473AACB7AC8DF7 /* xh_slidr.cpp in Sources */, C32EF2EC1A103BC3A6254323 /* xh_spin.cpp in Sources */, 33ED014A7FF7398794E6E4CF /* xh_split.cpp in Sources */, 7C9EAFF4A0223EE597E0E3A0 /* xh_srchctrl.cpp in Sources */, - 8AB7191F7CB838FC8337C48E /* xh_statbar.cpp in Sources */, - 3D3EA1BAAD1833B1B48E9C87 /* xh_stbmp.cpp in Sources */, - F22C401903993639AE05A297 /* xh_stbox.cpp in Sources */, - BF3D600A93403C589B65C5C1 /* xh_stlin.cpp in Sources */, - 8292D346BFC33D6E8D3CDDBF /* xh_sttxt.cpp in Sources */, - 0EB6AB38A68D3845AC384A25 /* xh_text.cpp in Sources */, + 8AB7191F7CB838FC8337C48F /* xh_statbar.cpp in Sources */, + 3D3EA1BAAD1833B1B48E9C88 /* xh_stbmp.cpp in Sources */, + F22C401903993639AE05A296 /* xh_stbox.cpp in Sources */, + BF3D600A93403C589B65C5BF /* xh_stlin.cpp in Sources */, + 8292D346BFC33D6E8D3CDDC0 /* xh_sttxt.cpp in Sources */, + 0EB6AB38A68D3845AC384A24 /* xh_text.cpp in Sources */, B181806CC34839E791E54BF1 /* xh_tglbtn.cpp in Sources */, 89200B144075388BA69A07E4 /* xh_timectrl.cpp in Sources */, F3CB42BB6D983675862C01F3 /* xh_toolb.cpp in Sources */, 17F0494F87533196904F5315 /* xh_toolbk.cpp in Sources */, 3357BD0518F538E9A949F887 /* xh_tree.cpp in Sources */, - 46CE8B53D2663927AAE5DF9E /* xh_treebk.cpp in Sources */, - C5A8DF376BB13A2A8290C2E7 /* xh_unkwn.cpp in Sources */, + 46CE8B53D2663927AAE5DF9D /* xh_treebk.cpp in Sources */, + C5A8DF376BB13A2A8290C2E5 /* xh_unkwn.cpp in Sources */, + ABBE59AC73E135D48965F20B /* xh_vlistbox.cpp in Sources */, 37DD17F479A1371ABF3589B9 /* xh_wizrd.cpp in Sources */, 1710A4BB0E6339558A187F8E /* xmlres.cpp in Sources */, - 135DFCE48FC03D8294D01A8B /* xmlrsall.cpp in Sources */, - 070797A894A03196B7BEC662 /* xh_bookctrlbase.cpp in Sources */, + 135DFCE48FC03D8294D01A89 /* xmlrsall.cpp in Sources */, + 070797A894A03196B7BEC661 /* xh_bookctrlbase.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8555,14 +8555,14 @@ buildActionMask = 2147483647; files = ( 36EB5D19429D3BD1A01001D6 /* framemanager.cpp in Sources */, - C7B6240E0E213836996A178D /* dockart.cpp in Sources */, - 15048519756B33959B15B163 /* floatpane.cpp in Sources */, - E104017EE1A4357DAF84E1E7 /* auibook.cpp in Sources */, - 39CC380F801F3EE984523277 /* auibar.cpp in Sources */, + C7B6240E0E213836996A178C /* dockart.cpp in Sources */, + 15048519756B33959B15B162 /* floatpane.cpp in Sources */, + E104017EE1A4357DAF84E1E6 /* auibook.cpp in Sources */, + 39CC380F801F3EE984523275 /* auibar.cpp in Sources */, 6C46AF0370793AA0B74A5A4C /* tabmdi.cpp in Sources */, - AC0B0C52922B30188AE95E96 /* tabart.cpp in Sources */, - C3C19BD343B235F9909D4959 /* xh_aui.cpp in Sources */, - 44C6F11C7D1C399F99CF6BD6 /* xh_auitoolb.cpp in Sources */, + AC0B0C52922B30188AE95E94 /* tabart.cpp in Sources */, + C3C19BD343B235F9909D495B /* xh_aui.cpp in Sources */, + 44C6F11C7D1C399F99CF6BD4 /* xh_auitoolb.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8570,17 +8570,17 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - DE43350F6C9D3148A64F0AFA /* art_internal.cpp in Sources */, - 7DC4A542372437ECA0790F89 /* art_msw.cpp in Sources */, + DE43350F6C9D3148A64F0AFB /* art_internal.cpp in Sources */, + 7DC4A542372437ECA0790F88 /* art_msw.cpp in Sources */, A0BA01A85C303C78A3130713 /* art_aui.cpp in Sources */, - 056CA84179433AA48D55DA66 /* bar.cpp in Sources */, + 056CA84179433AA48D55DA65 /* bar.cpp in Sources */, CB078622E90F33BE9D131131 /* buttonbar.cpp in Sources */, EB52C6A91594381393294500 /* control.cpp in Sources */, - 5F57C4908E5038D19D68ED7C /* gallery.cpp in Sources */, - 4BAFAE70A6B1313B96D86632 /* page.cpp in Sources */, - F0D892C2618130FEAD46BB88 /* panel.cpp in Sources */, - EA02FA6D3B003F8F8A2963C6 /* toolbar.cpp in Sources */, - 5A459FC1180130C5B705AEDC /* xh_ribbon.cpp in Sources */, + 5F57C4908E5038D19D68ED7A /* gallery.cpp in Sources */, + 4BAFAE70A6B1313B96D86630 /* page.cpp in Sources */, + F0D892C2618130FEAD46BB87 /* panel.cpp in Sources */, + EA02FA6D3B003F8F8A2963C8 /* toolbar.cpp in Sources */, + 5A459FC1180130C5B705AEDA /* xh_ribbon.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8592,11 +8592,11 @@ F501AB044AAC39DCB8C0B3E1 /* editors.cpp in Sources */, 6B9EEA3CF2E536E3B1ADAC43 /* manager.cpp in Sources */, 46A4CCF128FC3EB092074DC6 /* property.cpp in Sources */, - 26BB10834DA1388881BDD1ED /* propgrid.cpp in Sources */, + 26BB10834DA1388881BDD1EC /* propgrid.cpp in Sources */, BEA90F2C6BB93143958F899A /* propgridiface.cpp in Sources */, A423177BBC0F3BE5A436B4B8 /* propgridpagestate.cpp in Sources */, - D72D99FC424337CF9EDC2042 /* props.cpp in Sources */, - DC7D78BABF823480B56528AE /* xh_propgrid.cpp in Sources */, + D72D99FC424337CF9EDC2044 /* props.cpp in Sources */, + DC7D78BABF823480B56528AD /* xh_propgrid.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8611,10 +8611,10 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E3B3E4F75D503DB89B5C622E /* stc.cpp in Sources */, - 908957F65B7E36F8BF3858DE /* PlatWX.cpp in Sources */, - 3E6AA08E72A030D39D867D4D /* ScintillaWX.cpp in Sources */, - 849B89D1F6AB3DDEAA2D53AD /* xh_styledtextctrl.cpp in Sources */, + E3B3E4F75D503DB89B5C622D /* stc.cpp in Sources */, + 908957F65B7E36F8BF3858DF /* PlatWX.cpp in Sources */, + 3E6AA08E72A030D39D867D4C /* ScintillaWX.cpp in Sources */, + 849B89D1F6AB3DDEAA2D53AE /* xh_styledtextctrl.cpp in Sources */, 57F8001809BC3864A5FA798C /* PlatWXcocoa.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -8625,638 +8625,638 @@ files = ( 59BFB8C8310E37B39AF8B0D5 /* any.cpp in Sources */, D5A25AC579F436509805335C /* appbase.cpp in Sources */, - C2B07E2ECDDC3833BDC9B28D /* arcall.cpp in Sources */, - 4CF9BA40653C3153805D88AD /* arcfind.cpp in Sources */, - 3EB6B8528A0D3B6CADAE1257 /* archive.cpp in Sources */, + C2B07E2ECDDC3833BDC9B28C /* arcall.cpp in Sources */, + 4CF9BA40653C3153805D88AB /* arcfind.cpp in Sources */, + 3EB6B8528A0D3B6CADAE1258 /* archive.cpp in Sources */, 3B8A54D5E5A53607A6F7979A /* arrstr.cpp in Sources */, - 0A2A4D2DC8F63FE1AC0BFAAF /* base64.cpp in Sources */, - 319FB8E64CE731D6A58AD302 /* clntdata.cpp in Sources */, + 0A2A4D2DC8F63FE1AC0BFAB0 /* base64.cpp in Sources */, + 319FB8E64CE731D6A58AD303 /* clntdata.cpp in Sources */, 51437DC2AD7B3BEB9A53CE1C /* cmdline.cpp in Sources */, DA0FA502405A37B2A5698D22 /* config.cpp in Sources */, BB6FE851028C3DE7A070C213 /* convauto.cpp in Sources */, - F89405757B063F80B111F46B /* datetime.cpp in Sources */, - 1D726139C977341A97D0C931 /* datetimefmt.cpp in Sources */, - E63364B7E727383BA8E2B7ED /* datstrm.cpp in Sources */, - 3ED6F4B64C283232A79423D0 /* dircmn.cpp in Sources */, + F89405757B063F80B111F469 /* datetime.cpp in Sources */, + 1D726139C977341A97D0C933 /* datetimefmt.cpp in Sources */, + E63364B7E727383BA8E2B7EC /* datstrm.cpp in Sources */, + 3ED6F4B64C283232A79423CF /* dircmn.cpp in Sources */, AD7EEB418C7930CB828EAF89 /* dynlib.cpp in Sources */, - 0164A65CDB7A334A8E9AA4BF /* dynload.cpp in Sources */, - 246B4FF96BA135258FE45F4F /* encconv.cpp in Sources */, + 0164A65CDB7A334A8E9AA4C0 /* dynload.cpp in Sources */, + 246B4FF96BA135258FE45F50 /* encconv.cpp in Sources */, 97BAFEAD53E238B6881178DD /* evtloopcmn.cpp in Sources */, F07D84D124F23E7FA11CF149 /* extended.c in Sources */, - FEF99FF6C38D3B488396B143 /* ffile.cpp in Sources */, - D6C3421AD2A537AAA2F0AB81 /* file.cpp in Sources */, - FFF5BFBE600E35FAB7EA522E /* fileback.cpp in Sources */, + FEF99FF6C38D3B488396B142 /* ffile.cpp in Sources */, + D6C3421AD2A537AAA2F0AB80 /* file.cpp in Sources */, + FFF5BFBE600E35FAB7EA522D /* fileback.cpp in Sources */, 41943A8F82723027A151A469 /* fileconf.cpp in Sources */, 49260580A7F23B569A827D3F /* filefn.cpp in Sources */, - D4C87E227A28391891D89089 /* filename.cpp in Sources */, - 8A4046BD38873D9CAC9C2B5A /* filesys.cpp in Sources */, - 9E0B67E34B683412978BA82E /* filtall.cpp in Sources */, + D4C87E227A28391891D8908A /* filename.cpp in Sources */, + 8A4046BD38873D9CAC9C2B59 /* filesys.cpp in Sources */, + 9E0B67E34B683412978BA82F /* filtall.cpp in Sources */, CA4DCD57060B38CC8B2283D7 /* filtfind.cpp in Sources */, - 2FA1A8FE3644325ABAD273A4 /* fmapbase.cpp in Sources */, + 2FA1A8FE3644325ABAD273A6 /* fmapbase.cpp in Sources */, FE2DBCCC1D0B36A3BE4493C1 /* fs_arc.cpp in Sources */, - F6B85CD918E93923BE631B95 /* fs_filter.cpp in Sources */, - FE5285579C7F39C48FC66B12 /* hash.cpp in Sources */, - 595DCB164D55342EB86604ED /* hashmap.cpp in Sources */, + F6B85CD918E93923BE631B97 /* fs_filter.cpp in Sources */, + FE5285579C7F39C48FC66B10 /* hash.cpp in Sources */, + 595DCB164D55342EB86604EE /* hashmap.cpp in Sources */, 1B06622C8D8731FC832199E3 /* init.cpp in Sources */, - 0743AE8613F535A0ABB79316 /* intl.cpp in Sources */, - A336FD218BE63B19991CA513 /* ipcbase.cpp in Sources */, + 0743AE8613F535A0ABB79315 /* intl.cpp in Sources */, + A336FD218BE63B19991CA515 /* ipcbase.cpp in Sources */, BFD4B8871B3934048B63141B /* languageinfo.cpp in Sources */, - 68AC8860B0943C1FAF76D96B /* list.cpp in Sources */, - 3141FEDED0943BD6A2EF8591 /* log.cpp in Sources */, - 0C7E2D5C22A232368F862A60 /* longlong.cpp in Sources */, - B59FC7345C383D9099391AC4 /* mimecmn.cpp in Sources */, + 68AC8860B0943C1FAF76D96D /* list.cpp in Sources */, + 3141FEDED0943BD6A2EF8590 /* log.cpp in Sources */, + 0C7E2D5C22A232368F862A61 /* longlong.cpp in Sources */, + B59FC7345C383D9099391AC5 /* mimecmn.cpp in Sources */, EC3A1C620D323B5590AABF03 /* module.cpp in Sources */, - F38202271C6131908C358DEE /* mstream.cpp in Sources */, - 31DD19A942283FA8810B6384 /* numformatter.cpp in Sources */, - 23A7AF68A03E380785EE7C24 /* object.cpp in Sources */, - D6B73239BF0E32288161679D /* platinfo.cpp in Sources */, - 0A406D2D1ADA343891E3664D /* powercmn.cpp in Sources */, - CA85901B9E2538CFB7E44218 /* process.cpp in Sources */, - 7A7439BE66AA3771B4A8904A /* regex.cpp in Sources */, - CF3082BA1ED232F4B904BD14 /* stdpbase.cpp in Sources */, - 539B586AEAD630A79FC12ED0 /* sstream.cpp in Sources */, + F38202271C6131908C358DEC /* mstream.cpp in Sources */, + 31DD19A942283FA8810B6382 /* numformatter.cpp in Sources */, + 23A7AF68A03E380785EE7C26 /* object.cpp in Sources */, + D6B73239BF0E32288161679E /* platinfo.cpp in Sources */, + 0A406D2D1ADA343891E3664C /* powercmn.cpp in Sources */, + CA85901B9E2538CFB7E44217 /* process.cpp in Sources */, + 7A7439BE66AA3771B4A89049 /* regex.cpp in Sources */, + CF3082BA1ED232F4B904BD16 /* stdpbase.cpp in Sources */, + 539B586AEAD630A79FC12ECF /* sstream.cpp in Sources */, 028257C52CAE3038AA862C36 /* stdstream.cpp in Sources */, 6AA0EE765330326380989FD2 /* stopwatch.cpp in Sources */, - E882402BEE0330A080A65171 /* strconv.cpp in Sources */, + E882402BEE0330A080A65170 /* strconv.cpp in Sources */, 30493B486DFF35AF80D12C4A /* stream.cpp in Sources */, - 795613831EC8332A83FF26E8 /* string.cpp in Sources */, - 88E1AE56FD393C8BA5CF8546 /* stringops.cpp in Sources */, - 056E30EA43753A7CB1AF8CA0 /* strvararg.cpp in Sources */, - 4DD98A9436C83CF3B9425A7A /* sysopt.cpp in Sources */, - 9FB1E1763EFA334CA0C07C49 /* tarstrm.cpp in Sources */, - 2E4747E0736B30569ACD5424 /* textbuf.cpp in Sources */, - 6167245C417A32179EC37D2E /* textfile.cpp in Sources */, + 795613831EC8332A83FF26E7 /* string.cpp in Sources */, + 88E1AE56FD393C8BA5CF8547 /* stringops.cpp in Sources */, + 056E30EA43753A7CB1AF8C9F /* strvararg.cpp in Sources */, + 4DD98A9436C83CF3B9425A78 /* sysopt.cpp in Sources */, + 9FB1E1763EFA334CA0C07C4B /* tarstrm.cpp in Sources */, + 2E4747E0736B30569ACD5423 /* textbuf.cpp in Sources */, + 6167245C417A32179EC37D2D /* textfile.cpp in Sources */, 98AD7D0478BA36249B03C625 /* time.cpp in Sources */, - 7FC3D17B3C853FE58841002F /* timercmn.cpp in Sources */, - 729091CC33C73C989B4E071B /* timerimpl.cpp in Sources */, - BF8C33B7CB3A3ECE814A95FD /* tokenzr.cpp in Sources */, + 7FC3D17B3C853FE58841002D /* timercmn.cpp in Sources */, + 729091CC33C73C989B4E0719 /* timerimpl.cpp in Sources */, + BF8C33B7CB3A3ECE814A95FB /* tokenzr.cpp in Sources */, ABCD15C4AB37396EA17B7B28 /* translation.cpp in Sources */, 087FF6DE223A32509692F39C /* txtstrm.cpp in Sources */, - DAAFBED07FF8365B96D20B9B /* unichar.cpp in Sources */, + DAAFBED07FF8365B96D20B9A /* unichar.cpp in Sources */, 2E8440A2BDD53BE7B01547C2 /* uri.cpp in Sources */, - C425A172B0AB3EBD9AC9A592 /* ustring.cpp in Sources */, + C425A172B0AB3EBD9AC9A590 /* ustring.cpp in Sources */, 65E8A5F333D7336C816F0D0C /* variant.cpp in Sources */, E53AFF04877D34C386D77381 /* wfstream.cpp in Sources */, - 319EA32592DA3C74B86DDDFF /* wxcrt.cpp in Sources */, + 319EA32592DA3C74B86DDE01 /* wxcrt.cpp in Sources */, A2473402D8B83628B1F66749 /* wxprintf.cpp in Sources */, - BA7B12396B873FDA8F3A2749 /* xlocale.cpp in Sources */, - C5419BC04D6234B5A8307B83 /* xti.cpp in Sources */, - 52C0984A2A4F31BC885519B2 /* xtistrm.cpp in Sources */, - CA155860CE9A3A8189C3A4C3 /* zipstrm.cpp in Sources */, - 014AF0BAB1783A5D9D75A7EE /* zstream.cpp in Sources */, - A93D0E6F0871368EA8FC9FF9 /* fswatchercmn.cpp in Sources */, - E49F0D43B5A63EF1A57A7113 /* fswatcherg.cpp in Sources */, - B0FD1B96EAE635AFBFCF2C96 /* secretstore.cpp in Sources */, - A486A28E216D320AB57452D5 /* lzmastream.cpp in Sources */, - 9A63148F193E33B5964DD02A /* uilocale.cpp in Sources */, - B8A98F209934399DA45C2387 /* fs_data.cpp in Sources */, + BA7B12396B873FDA8F3A2748 /* xlocale.cpp in Sources */, + C5419BC04D6234B5A8307B82 /* xti.cpp in Sources */, + 52C0984A2A4F31BC885519B0 /* xtistrm.cpp in Sources */, + CA155860CE9A3A8189C3A4C2 /* zipstrm.cpp in Sources */, + 014AF0BAB1783A5D9D75A7EF /* zstream.cpp in Sources */, + A93D0E6F0871368EA8FC9FFB /* fswatchercmn.cpp in Sources */, + E49F0D43B5A63EF1A57A7112 /* fswatcherg.cpp in Sources */, + B0FD1B96EAE635AFBFCF2C95 /* secretstore.cpp in Sources */, + A486A28E216D320AB57452D4 /* lzmastream.cpp in Sources */, + 9A63148F193E33B5964DD029 /* uilocale.cpp in Sources */, + B8A98F209934399DA45C2386 /* fs_data.cpp in Sources */, 4657E7382E9E3EDC8DE24020 /* mimetype.cpp in Sources */, 1DBDF75500D73A3098015E7F /* cfstring.cpp in Sources */, 9FBC642677C63D01AA2511BD /* evtloop_cf.cpp in Sources */, - AAAB5DF8E60736D88273DD00 /* strconv_cf.cpp in Sources */, + AAAB5DF8E60736D88273DCFF /* strconv_cf.cpp in Sources */, 68C300D096BF39239876D045 /* utils_base.mm in Sources */, - B0FD1B96EAE635AFBFCF2C92 /* secretstore.cpp in Sources */, + B0FD1B96EAE635AFBFCF2C96 /* secretstore.cpp in Sources */, AE660214E0CB375FBA508A37 /* uilocale.mm in Sources */, - D36E76A4CAF5352D9397E1FF /* fdiodispatcher.cpp in Sources */, + D36E76A4CAF5352D9397E201 /* fdiodispatcher.cpp in Sources */, D3FB75C8E3A73AE38EE8A6F7 /* selectdispatcher.cpp in Sources */, - BAAB6B1D80A33843A8436B11 /* appunix.cpp in Sources */, - 403FBA20CEFE3EAFB4E6B905 /* dir.cpp in Sources */, - 20BEEFFA08F3396791596872 /* dlunix.cpp in Sources */, + BAAB6B1D80A33843A8436B10 /* appunix.cpp in Sources */, + 403FBA20CEFE3EAFB4E6B906 /* dir.cpp in Sources */, + 20BEEFFA08F3396791596870 /* dlunix.cpp in Sources */, CBBD7B32DB7B3E24AE745D79 /* epolldispatcher.cpp in Sources */, - D18E2985C48733B2B7B3D443 /* evtloopunix.cpp in Sources */, + D18E2985C48733B2B7B3D442 /* evtloopunix.cpp in Sources */, 3D22FC202D903007AEE3D165 /* fdiounix.cpp in Sources */, - 4B88254FF9963833A276A64E /* snglinst.cpp in Sources */, + 4B88254FF9963833A276A64D /* snglinst.cpp in Sources */, 5F78DB0417BF3CE1B4E35C81 /* stackwalk.cpp in Sources */, - 2F35A207C3993DE08E4FE0B2 /* timerunx.cpp in Sources */, + 2F35A207C3993DE08E4FE0B0 /* timerunx.cpp in Sources */, F5D2146C94E733FAAB6D286B /* threadpsx.cpp in Sources */, B5C7FD8C27F43F3289A77FC9 /* utilsunx.cpp in Sources */, - F9C5EAC42CCF3267B4100BB0 /* wakeuppipe.cpp in Sources */, + F9C5EAC42CCF3267B4100BAF /* wakeuppipe.cpp in Sources */, FF7DB2884F6E3C5DB4BDF61D /* fswatcher_kqueue.cpp in Sources */, 830A61EA04FD367C9EB6A759 /* fswatcher_fsevents.cpp in Sources */, - DA71FBB9EFB2350ABB3CEC81 /* stdpaths.mm in Sources */, - 55D893FDD00633FEA82ABD82 /* event.cpp in Sources */, - 131B879180AE3FB481F81CC7 /* fs_mem.cpp in Sources */, - 05814571E7A83F5DBFB6E4C5 /* msgout.cpp in Sources */, - 80665EEAE8613DF8A93A7985 /* utilscmn.cpp in Sources */, - 3DE2CD678CEB39C2B1E09ACB /* power.mm in Sources */, - A1A7D793B034398B8696EF34 /* utils.mm in Sources */, + DA71FBB9EFB2350ABB3CEC80 /* stdpaths.mm in Sources */, + 55D893FDD00633FEA82ABD84 /* event.cpp in Sources */, + 131B879180AE3FB481F81CC9 /* fs_mem.cpp in Sources */, + 05814571E7A83F5DBFB6E4C6 /* msgout.cpp in Sources */, + 80665EEAE8613DF8A93A7987 /* utilscmn.cpp in Sources */, + 3DE2CD678CEB39C2B1E09ACD /* power.mm in Sources */, + A1A7D793B034398B8696EF33 /* utils.mm in Sources */, E0E4885BF4AF34B48EB08B93 /* volume.mm in Sources */, - F4C0CEADEDC23610BF6983D7 /* artmac.cpp in Sources */, - 296692A7A3783E3A83D005C6 /* brush.cpp in Sources */, - 86AED49CEAFC3637B1F10537 /* dialog_osx.cpp in Sources */, - DC6B669C9A78398F914AEE54 /* fontutil.cpp in Sources */, - C1CDD035AA393ACC9E202C03 /* minifram.cpp in Sources */, - 4269B85FDC5639BEB76A8AEC /* nonownedwnd_osx.cpp in Sources */, - AC91349D7F0E37739B1F5167 /* palette.cpp in Sources */, - 2480859662ED399799E120A6 /* pen.cpp in Sources */, - 0E024D145DDD38ACAE68F463 /* toplevel_osx.cpp in Sources */, - 02BB539E2AD63C078DA776B0 /* uiaction_osx.cpp in Sources */, - 052331773CF6362C9A6CF390 /* utils_osx.cpp in Sources */, + F4C0CEADEDC23610BF6983D6 /* artmac.cpp in Sources */, + 296692A7A3783E3A83D005C7 /* brush.cpp in Sources */, + 86AED49CEAFC3637B1F10538 /* dialog_osx.cpp in Sources */, + DC6B669C9A78398F914AEE53 /* fontutil.cpp in Sources */, + C1CDD035AA393ACC9E202C05 /* minifram.cpp in Sources */, + 4269B85FDC5639BEB76A8AEB /* nonownedwnd_osx.cpp in Sources */, + AC91349D7F0E37739B1F5165 /* palette.cpp in Sources */, + 2480859662ED399799E120A7 /* pen.cpp in Sources */, + 0E024D145DDD38ACAE68F464 /* toplevel_osx.cpp in Sources */, + 02BB539E2AD63C078DA776B1 /* uiaction_osx.cpp in Sources */, + 052331773CF6362C9A6CF38F /* utils_osx.cpp in Sources */, CB2E99E8FB7D3269A333A560 /* window_osx.cpp in Sources */, - 03BF1610E2FC3BD5ACB754F0 /* bitmap.cpp in Sources */, - FF50EC0EC5F23DF890C6E95F /* colour.cpp in Sources */, - BD2B17EB72E73A6EB6E0B26F /* dcmemory.cpp in Sources */, - 371809DA4AD1382F8B532878 /* fontenum.cpp in Sources */, - 86BE5213D3F131D8A686267B /* hid.cpp in Sources */, - AB58406CEBA13BC4A2A83B68 /* printmac.cpp in Sources */, - 91BDA5B04CF33C9AB7358B8C /* timer.cpp in Sources */, - C2D45B334BE03F6C941CA041 /* utilsexc_cf.cpp in Sources */, - 1A70DDEDF9E13FF4BDA390EA /* bmpbndl.mm in Sources */, - A92439BAFD3A30A29DD93132 /* apptraits.cpp in Sources */, - E82CB89681FF3747B6A94427 /* anybutton_osx.cpp in Sources */, - 49FE0228D8FD3F7AB64A4432 /* bmpbuttn_osx.cpp in Sources */, - 6AC347D2DCC730149A0A83DA /* button_osx.cpp in Sources */, + 03BF1610E2FC3BD5ACB754F1 /* bitmap.cpp in Sources */, + FF50EC0EC5F23DF890C6E961 /* colour.cpp in Sources */, + BD2B17EB72E73A6EB6E0B271 /* dcmemory.cpp in Sources */, + 371809DA4AD1382F8B532879 /* fontenum.cpp in Sources */, + 86BE5213D3F131D8A6862679 /* hid.cpp in Sources */, + AB58406CEBA13BC4A2A83B67 /* printmac.cpp in Sources */, + 91BDA5B04CF33C9AB7358B8A /* timer.cpp in Sources */, + C2D45B334BE03F6C941CA043 /* utilsexc_cf.cpp in Sources */, + 1A70DDEDF9E13FF4BDA390E9 /* bmpbndl.mm in Sources */, + A92439BAFD3A30A29DD93133 /* apptraits.cpp in Sources */, + E82CB89681FF3747B6A94429 /* anybutton_osx.cpp in Sources */, + 49FE0228D8FD3F7AB64A4434 /* bmpbuttn_osx.cpp in Sources */, + 6AC347D2DCC730149A0A83D8 /* button_osx.cpp in Sources */, 0E92CEF677AA32C9A8CDA0A9 /* checkbox_osx.cpp in Sources */, - 07412469921A3E488A2F9BA7 /* checklst_osx.cpp in Sources */, - 4666CDC48BA9301EA283C001 /* choice_osx.cpp in Sources */, - 0836590D35FE37988DE70444 /* combobox_osx.cpp in Sources */, - 2DF74933A90E34129F1BEF73 /* dnd_osx.cpp in Sources */, - 0FFFFA2F762B3160955D1D89 /* gauge_osx.cpp in Sources */, - E4B826CE70283D999CB591F3 /* listbox_osx.cpp in Sources */, + 07412469921A3E488A2F9BA8 /* checklst_osx.cpp in Sources */, + 4666CDC48BA9301EA283C000 /* choice_osx.cpp in Sources */, + 0836590D35FE37988DE70443 /* combobox_osx.cpp in Sources */, + 2DF74933A90E34129F1BEF72 /* dnd_osx.cpp in Sources */, + 0FFFFA2F762B3160955D1D8A /* gauge_osx.cpp in Sources */, + E4B826CE70283D999CB591F4 /* listbox_osx.cpp in Sources */, B198DA8239E9358A9D56B989 /* menu_osx.cpp in Sources */, 1DF3A4F85FCB3BA79A552F3F /* menuitem_osx.cpp in Sources */, - A3321FE2A87D3BD69E0BB00A /* notebook_osx.cpp in Sources */, - 0C9A379D97B133FA831175A7 /* printdlg_osx.cpp in Sources */, - B1775EF7C72233408044034C /* radiobox_osx.cpp in Sources */, + A3321FE2A87D3BD69E0BB009 /* notebook_osx.cpp in Sources */, + 0C9A379D97B133FA831175A8 /* printdlg_osx.cpp in Sources */, + B1775EF7C72233408044034B /* radiobox_osx.cpp in Sources */, 6A081BF19747385CB4C1877F /* radiobut_osx.cpp in Sources */, DF8CE011EAC23F73BDA1C44E /* scrolbar_osx.cpp in Sources */, 27E73CA5C35A30CE89946ECC /* slider_osx.cpp in Sources */, - 00F1531404F832C6AE0748F2 /* spinbutt_osx.cpp in Sources */, - 91EA325FCE3A3A6A8D1D21A6 /* srchctrl_osx.cpp in Sources */, + 00F1531404F832C6AE0748F4 /* spinbutt_osx.cpp in Sources */, + 91EA325FCE3A3A6A8D1D21A7 /* srchctrl_osx.cpp in Sources */, 221DC4F6678A3EC5ACDDEA51 /* statbox_osx.cpp in Sources */, - 91BC7802C15337CDA84C3742 /* statline_osx.cpp in Sources */, - 283C3ABE42433244983C27C3 /* stattext_osx.cpp in Sources */, - B6891F848CA0325EAB6D1374 /* textentry_osx.cpp in Sources */, - EDCA35F1555F3509895CCA6B /* textctrl_osx.cpp in Sources */, - 664A54F914443110B7BB6929 /* tglbtn_osx.cpp in Sources */, + 91BC7802C15337CDA84C3744 /* statline_osx.cpp in Sources */, + 283C3ABE42433244983C27C1 /* stattext_osx.cpp in Sources */, + B6891F848CA0325EAB6D1373 /* textentry_osx.cpp in Sources */, + EDCA35F1555F3509895CCA69 /* textctrl_osx.cpp in Sources */, + 664A54F914443110B7BB6928 /* tglbtn_osx.cpp in Sources */, A569A33A2097316D8110C2C2 /* toolbar_osx.cpp in Sources */, - F5FF98C231B33E3EB7902C66 /* colordlgosx.mm in Sources */, - 2386B575BC3931D2AF86CB34 /* fontdlgosx.mm in Sources */, - 2EECB3C2F9523D0B95847A7F /* accel.cpp in Sources */, - 7F77E347E1243D77A666FB45 /* clipbrd.cpp in Sources */, - 5417332FE2DB3CD3A647B15D /* cursor.cpp in Sources */, - D66F5D4D204B3B789C7F76BA /* fontdlg.cpp in Sources */, - 692FCCABFB963696AFC1E123 /* gdiobj.cpp in Sources */, - B0E94A59C83637C09FAAE71E /* app.cpp in Sources */, - EB52C6A915943813932944FF /* control.cpp in Sources */, - 45AB45C6B24A3983B22E56A5 /* dataobj.cpp in Sources */, - D088E7DDE38C31DC9C9B3419 /* dcclient.cpp in Sources */, - 182DFDBB58653FD9863D4176 /* dcprint.cpp in Sources */, - AAC2CB4D851230008AE4ABA2 /* dcscreen.cpp in Sources */, - 774EB9F3F7E93A379E1F7553 /* graphics.cpp in Sources */, - 5792675690843C6AA4125A74 /* font.cpp in Sources */, - BDAB44F5D017395D9D3A1F24 /* frame.cpp in Sources */, - 27E2EABB117334CD89CFD2A4 /* mdi.cpp in Sources */, - 73AA68AB9F1236ED9F1FBB30 /* metafile.cpp in Sources */, - 805CCAE64D023561AD334B55 /* popupwin.cpp in Sources */, - F6A1AC5CF84E32C19F91A614 /* statbrma.cpp in Sources */, - D070C3BE95483FE38BABA1BF /* region.cpp in Sources */, - 07158EBC05A637ECA9DC7B4F /* utilscocoa.mm in Sources */, - 7E6C627A325F32FFB2EF9B9F /* caret.cpp in Sources */, - FB8B6E4789A3311A98C5B0A9 /* clrpickerg.cpp in Sources */, + F5FF98C231B33E3EB7902C64 /* colordlgosx.mm in Sources */, + 2386B575BC3931D2AF86CB33 /* fontdlgosx.mm in Sources */, + 2EECB3C2F9523D0B95847A80 /* accel.cpp in Sources */, + 7F77E347E1243D77A666FB43 /* clipbrd.cpp in Sources */, + 5417332FE2DB3CD3A647B15D /* cursor.cpp in Sources */, + D66F5D4D204B3B789C7F76BA /* fontdlg.cpp in Sources */, + 692FCCABFB963696AFC1E122 /* gdiobj.cpp in Sources */, + B0E94A59C83637C09FAAE71C /* app.cpp in Sources */, + EB52C6A91594381393294503 /* control.cpp in Sources */, + 45AB45C6B24A3983B22E56A6 /* dataobj.cpp in Sources */, + D088E7DDE38C31DC9C9B3417 /* dcclient.cpp in Sources */, + 182DFDBB58653FD9863D4178 /* dcprint.cpp in Sources */, + AAC2CB4D851230008AE4ABA3 /* dcscreen.cpp in Sources */, + 774EB9F3F7E93A379E1F7552 /* graphics.cpp in Sources */, + 5792675690843C6AA4125A73 /* font.cpp in Sources */, + BDAB44F5D017395D9D3A1F25 /* frame.cpp in Sources */, + 27E2EABB117334CD89CFD2A6 /* mdi.cpp in Sources */, + 73AA68AB9F1236ED9F1FBB2E /* metafile.cpp in Sources */, + 805CCAE64D023561AD334B54 /* popupwin.cpp in Sources */, + F6A1AC5CF84E32C19F91A615 /* statbrma.cpp in Sources */, + D070C3BE95483FE38BABA1C0 /* region.cpp in Sources */, + 07158EBC05A637ECA9DC7B50 /* utilscocoa.mm in Sources */, + 7E6C627A325F32FFB2EF9BA0 /* caret.cpp in Sources */, + FB8B6E4789A3311A98C5B0AA /* clrpickerg.cpp in Sources */, 7569F0BC3C603EB19168088F /* collpaneg.cpp in Sources */, - BBAABF3C693E37D3B0FF2503 /* colrdlgg.cpp in Sources */, + BBAABF3C693E37D3B0FF2502 /* colrdlgg.cpp in Sources */, F70156C3E68B38FCB72FE255 /* dirdlgg.cpp in Sources */, E1F7C51F411B3AF39476E48A /* fdrepdlg.cpp in Sources */, - A965348C7FA73CEC90C8FA27 /* filedlgg.cpp in Sources */, + A965348C7FA73CEC90C8FA25 /* filedlgg.cpp in Sources */, FD1F6CD8286D3D428FD52A29 /* filepickerg.cpp in Sources */, - 16A382A265DE32FABC318F71 /* fontdlgg.cpp in Sources */, - BEAC2449AFA7304989BA301E /* fontpickerg.cpp in Sources */, + 16A382A265DE32FABC318F70 /* fontdlgg.cpp in Sources */, + BEAC2449AFA7304989BA3020 /* fontpickerg.cpp in Sources */, C3AC94EA13C1352790BF5FF8 /* listctrl.cpp in Sources */, C005C2D547E735E9B0816590 /* prntdlgg.cpp in Sources */, A1AF8FF873D6383996995ECF /* statusbr.cpp in Sources */, - 2E059BFE8E3B3D9299D5596B /* textmeasure.cpp in Sources */, - 01D4C5F2147F3942A7CE91AC /* icon.cpp in Sources */, - 750C716389AD3ADBABC9D68A /* statbmp_osx.cpp in Sources */, - 1EDED99760B23A1999E75C12 /* imaglist.cpp in Sources */, - 65AD3B31319C35F1AC9EC627 /* anybutton.mm in Sources */, + 2E059BFE8E3B3D9299D5596A /* textmeasure.cpp in Sources */, + 750C716389AD3ADBABC9D689 /* statbmp_osx.cpp in Sources */, + 1EDED99760B23A1999E75C13 /* imaglist.cpp in Sources */, + 65AD3B31319C35F1AC9EC626 /* anybutton.mm in Sources */, CE32C5250F2834D4B81BE899 /* appprogress.mm in Sources */, - 14D6D5F8F5ED3C71936DD2AF /* button.mm in Sources */, - 67A0583ADD8C35B8B9BA3D14 /* checkbox.mm in Sources */, - 603DF49D176737D383CE4F01 /* choice.mm in Sources */, - 8C2B50E3FC7A37C58CC9DC0B /* colour.mm in Sources */, - 8C52B1985BAA371FA22CCEBB /* combobox.mm in Sources */, - 6C3A459236F736B8A14A13AC /* dialog.mm in Sources */, - 8A9C3C04D00334418C3446FA /* dirdlg.mm in Sources */, - 5700B7F9166A37FDAA72E9DC /* dnd.mm in Sources */, + 14D6D5F8F5ED3C71936DD2B0 /* button.mm in Sources */, + 67A0583ADD8C35B8B9BA3D13 /* checkbox.mm in Sources */, + 603DF49D176737D383CE4F03 /* choice.mm in Sources */, + 8C2B50E3FC7A37C58CC9DC0C /* colour.mm in Sources */, + 8C52B1985BAA371FA22CCEBC /* combobox.mm in Sources */, + 6C3A459236F736B8A14A13AE /* dialog.mm in Sources */, + 8A9C3C04D00334418C3446F9 /* dirdlg.mm in Sources */, + 5700B7F9166A37FDAA72E9DB /* dnd.mm in Sources */, 58AABAD40AA236438347DDE0 /* evtloop.mm in Sources */, - C40AA245D5773351979A2851 /* filedlg.mm in Sources */, + C40AA245D5773351979A2852 /* filedlg.mm in Sources */, 23E9AF567E873B948EFEA180 /* gauge.mm in Sources */, - 6E1FD7D3DEF03748AEE3A29E /* listbox.mm in Sources */, - 2A79B68D20FE3C9B98A15536 /* menu.mm in Sources */, - 127E255EE601383A9E0EF7EC /* menuitem.mm in Sources */, + 6E1FD7D3DEF03748AEE3A29F /* listbox.mm in Sources */, + 2A79B68D20FE3C9B98A15535 /* menu.mm in Sources */, + 127E255EE601383A9E0EF7EA /* menuitem.mm in Sources */, F84D59648206349A9768157D /* msgdlg.mm in Sources */, - D6CF7416CA6A3CFF8FDFD49C /* nativewin.mm in Sources */, + D6CF7416CA6A3CFF8FDFD49B /* nativewin.mm in Sources */, 893BDA491EDE3A0E91FADE40 /* nonownedwnd.mm in Sources */, - 33BA7D6B9DC3378B820DEB87 /* notebook.mm in Sources */, - 9241AAE354C53190BF3D5BA4 /* radiobut.mm in Sources */, + 33BA7D6B9DC3378B820DEB89 /* notebook.mm in Sources */, + 9241AAE354C53190BF3D5BA5 /* radiobut.mm in Sources */, 8EE5A2467401365C8217AF31 /* preferences.mm in Sources */, 22E90F33B5C9308EBF37A700 /* printdlg.mm in Sources */, - 5303FA25D0773FAEB963D8E3 /* scrolbar.mm in Sources */, + 5303FA25D0773FAEB963D8E5 /* scrolbar.mm in Sources */, 30AEDF41EC5C374DBF96EFFD /* slider.mm in Sources */, 5DA146A9F7653F53BF5299E9 /* spinbutt.mm in Sources */, - 55F01295F1D23805BCA12F15 /* srchctrl.mm in Sources */, - B30D10F6257631B0A1926F8B /* statbox.mm in Sources */, + 55F01295F1D23805BCA12F16 /* srchctrl.mm in Sources */, + B30D10F6257631B0A1926F89 /* statbox.mm in Sources */, 1DE75213D296323B815A02C0 /* statline.mm in Sources */, - 21F74D4D4D84375AB155FD5C /* stattext.mm in Sources */, - 675B4E6CBA8632E89B4AC26E /* textctrl.mm in Sources */, - E6CA1EB5550F3930BFE286CD /* tglbtn.mm in Sources */, - A53B8C3ED0D33A1D9AA8219C /* toolbar.mm in Sources */, + 21F74D4D4D84375AB155FD5B /* stattext.mm in Sources */, + 675B4E6CBA8632E89B4AC26F /* textctrl.mm in Sources */, + E6CA1EB5550F3930BFE286CE /* tglbtn.mm in Sources */, + A53B8C3ED0D33A1D9AA8219A /* toolbar.mm in Sources */, 2B4507BC09563DB5B0F16596 /* tooltip.mm in Sources */, - 815AE3FED68330F4933AA171 /* window.mm in Sources */, + 815AE3FED68330F4933AA170 /* window.mm in Sources */, 47C31B7492F33C3EBE53262B /* settings.mm in Sources */, - 4156FDB73D0A397A870E4303 /* overlay.mm in Sources */, + 4156FDB73D0A397A870E4302 /* overlay.mm in Sources */, 14DEBD7C01FC358B917FDAF3 /* aboutdlg.mm in Sources */, - 0723C4E8B52C39FDBC2158B6 /* dataview_osx.cpp in Sources */, - 1B69C40CD7493FED9A272837 /* notifmsg.mm in Sources */, - 25C5C1713C0B39AC8EB6A38F /* taskbar.mm in Sources */, + 0723C4E8B52C39FDBC2158B8 /* dataview_osx.cpp in Sources */, + 1B69C40CD7493FED9A272835 /* notifmsg.mm in Sources */, + 25C5C1713C0B39AC8EB6A38E /* taskbar.mm in Sources */, 4F99EB97F65330C28EB4D078 /* datectrl_osx.cpp in Sources */, 3316A16628B03D5E88529EA7 /* datetimectrl.mm in Sources */, 61FEDBF2D47A3B4E861F8299 /* sound.cpp in Sources */, - CE2C937117FE3AB599DD30BA /* sound_osx.cpp in Sources */, - 219304C9DDA33E9AADB515DD /* datetimectrl_osx.cpp in Sources */, - C1DCF69200593986A8C606A8 /* hidjoystick.cpp in Sources */, - 61FEDBF2D47A3B4E861F8298 /* sound.cpp in Sources */, - 049052C49B0B3810BE0179CA /* dataview.mm in Sources */, - 20D05D14BFAD3F969666D03D /* timectrl_osx.cpp in Sources */, + CE2C937117FE3AB599DD30B9 /* sound_osx.cpp in Sources */, + 219304C9DDA33E9AADB515DE /* datetimectrl_osx.cpp in Sources */, + C1DCF69200593986A8C606A7 /* hidjoystick.cpp in Sources */, + 61FEDBF2D47A3B4E861F829A /* sound.cpp in Sources */, + 049052C49B0B3810BE0179C9 /* dataview.mm in Sources */, + 20D05D14BFAD3F969666D03B /* timectrl_osx.cpp in Sources */, D00AF125FCB63A7A8F9B87DF /* taskbarcmn.cpp in Sources */, - A4F2426F36653C6D87EC18AE /* activityindicator.mm in Sources */, - 215958201947310B88BBEDB5 /* statbmp.mm in Sources */, + A4F2426F36653C6D87EC18AF /* activityindicator.mm in Sources */, + 215958201947310B88BBEDB4 /* statbmp.mm in Sources */, F1F484DD591337399FCD0464 /* display.cpp in Sources */, - 2FB16C6469433F1C91749129 /* renderer.mm in Sources */, - 3CDE2B6BF88D326189F069BF /* accelcmn.cpp in Sources */, - BDB8EF0E0DA03693BFB77EF7 /* accesscmn.cpp in Sources */, - 205520440CD13C0AB9E8915B /* anidecod.cpp in Sources */, + 2FB16C6469433F1C91749128 /* renderer.mm in Sources */, + 3CDE2B6BF88D326189F069BD /* accelcmn.cpp in Sources */, + BDB8EF0E0DA03693BFB77EF8 /* accesscmn.cpp in Sources */, + 205520440CD13C0AB9E8915A /* anidecod.cpp in Sources */, 353B584AD0C03919A57A3048 /* affinematrix2d.cpp in Sources */, - DDC71B80D562303690FDBE4C /* appcmn.cpp in Sources */, - EE0EA850822E35F596B5EBBC /* artprov.cpp in Sources */, + DDC71B80D562303690FDBE4D /* appcmn.cpp in Sources */, + EE0EA850822E35F596B5EBBA /* artprov.cpp in Sources */, A283187810EB32DAA173BD35 /* artstd.cpp in Sources */, - 75DCE6FF00E93C5D93970844 /* arttango.cpp in Sources */, - 1749412E53B9311DABA71DDD /* bmpbase.cpp in Sources */, - 3ACCC2EB8E973C11835EB599 /* bmpbtncmn.cpp in Sources */, - A5775D87FD713CBB930A7840 /* bookctrl.cpp in Sources */, - C3A63D7091913CD39094AE0C /* btncmn.cpp in Sources */, + 75DCE6FF00E93C5D93970843 /* arttango.cpp in Sources */, + 1749412E53B9311DABA71DDE /* bmpbase.cpp in Sources */, + 3ACCC2EB8E973C11835EB597 /* bmpbtncmn.cpp in Sources */, + A5775D87FD713CBB930A783E /* bookctrl.cpp in Sources */, + C3A63D7091913CD39094AE0B /* btncmn.cpp in Sources */, FBA19C939E1E33EDB05043FF /* cairo.cpp in Sources */, - 427E6AF88CF73D799206E37F /* checkboxcmn.cpp in Sources */, - 37749AC3468836FC857BD0D5 /* checklstcmn.cpp in Sources */, - C0CDA289E9EC3E20BE70B2E7 /* choiccmn.cpp in Sources */, - DFEB8DA3D42734949CB1E1AC /* clipcmn.cpp in Sources */, - 9D4B67A357D23B5283CA8D9A /* clrpickercmn.cpp in Sources */, - EBF2D44758003221A22202BE /* colourcmn.cpp in Sources */, + 427E6AF88CF73D799206E37D /* checkboxcmn.cpp in Sources */, + 37749AC3468836FC857BD0D6 /* checklstcmn.cpp in Sources */, + C0CDA289E9EC3E20BE70B2E6 /* choiccmn.cpp in Sources */, + DFEB8DA3D42734949CB1E1AB /* clipcmn.cpp in Sources */, + 9D4B67A357D23B5283CA8D98 /* clrpickercmn.cpp in Sources */, + EBF2D44758003221A22202BD /* colourcmn.cpp in Sources */, 335DD610974A33D4B6581E2A /* colourdata.cpp in Sources */, - D542C7819D593112AE5F7C3E /* combocmn.cpp in Sources */, - 6F0605F3A4E83BF0BF4C8B80 /* cmdproc.cpp in Sources */, - 20F10669703137E68318C6FE /* cmndata.cpp in Sources */, - 6FA47EAACE613B039B6EC263 /* containr.cpp in Sources */, + D542C7819D593112AE5F7C3F /* combocmn.cpp in Sources */, + 6F0605F3A4E83BF0BF4C8B7E /* cmdproc.cpp in Sources */, + 20F10669703137E68318C6FD /* cmndata.cpp in Sources */, + 6FA47EAACE613B039B6EC262 /* containr.cpp in Sources */, 0C485288EA86379D9FD66538 /* cshelp.cpp in Sources */, - 25656617A56D342AA3D1BFE2 /* ctrlcmn.cpp in Sources */, - BF1760458996391E8EB4294B /* ctrlsub.cpp in Sources */, - 2D60F289103837EA8925E3F3 /* dcbase.cpp in Sources */, + 25656617A56D342AA3D1BFE3 /* ctrlcmn.cpp in Sources */, + BF1760458996391E8EB42949 /* ctrlsub.cpp in Sources */, + 2D60F289103837EA8925E3F1 /* dcbase.cpp in Sources */, 39D6435B10073B85A499AFD9 /* dcbufcmn.cpp in Sources */, - 9564A6968D66325DAEADEBA3 /* dcgraph.cpp in Sources */, - B791BD05072B3B909A7093C3 /* dcsvg.cpp in Sources */, - B559E894684A38238CAAA117 /* dirctrlcmn.cpp in Sources */, + 9564A6968D66325DAEADEBA4 /* dcgraph.cpp in Sources */, + B791BD05072B3B909A7093C4 /* dcsvg.cpp in Sources */, + B559E894684A38238CAAA115 /* dirctrlcmn.cpp in Sources */, 63F0C8EEDF4B3641878A8B4E /* dlgcmn.cpp in Sources */, - B839235BED6F3609BDB732BA /* dndcmn.cpp in Sources */, - 2CCC30C0162131DBBE9D8029 /* dobjcmn.cpp in Sources */, - F0B3F484C38C3BA0B9927CDB /* docmdi.cpp in Sources */, - B1E30CF6CFA932F5A3DBA951 /* docview.cpp in Sources */, - F80C2290D67B345F9CF60086 /* dpycmn.cpp in Sources */, - 6BF19C7CA9E93D989C210FE3 /* dseldlg.cpp in Sources */, - C2E37E798F743A4199C8658F /* fddlgcmn.cpp in Sources */, + B839235BED6F3609BDB732B9 /* dndcmn.cpp in Sources */, + 2CCC30C0162131DBBE9D8028 /* dobjcmn.cpp in Sources */, + F0B3F484C38C3BA0B9927CD9 /* docmdi.cpp in Sources */, + B1E30CF6CFA932F5A3DBA94F /* docview.cpp in Sources */, + F80C2290D67B345F9CF60085 /* dpycmn.cpp in Sources */, + 6BF19C7CA9E93D989C210FE4 /* dseldlg.cpp in Sources */, + C2E37E798F743A4199C8658E /* fddlgcmn.cpp in Sources */, 37715483D08335B790FFE059 /* filectrlcmn.cpp in Sources */, 0730A107A2B935A9923C8EF2 /* filehistorycmn.cpp in Sources */, 9881E3FB23ED3283B6CC71A2 /* filepickercmn.cpp in Sources */, - 064908348009398C8EA8497D /* fontpickercmn.cpp in Sources */, - 1E166FC1A7B3371FB038B173 /* fldlgcmn.cpp in Sources */, - F747991E5C973F9B8C9D800A /* fontcmn.cpp in Sources */, + 064908348009398C8EA8497C /* fontpickercmn.cpp in Sources */, + 1E166FC1A7B3371FB038B174 /* fldlgcmn.cpp in Sources */, + F747991E5C973F9B8C9D800C /* fontcmn.cpp in Sources */, 1E2AB43075973AE59A8D89C3 /* fontdata.cpp in Sources */, - F910C74E48823E0BA7F7885D /* graphicc.cpp in Sources */, + F910C74E48823E0BA7F7885F /* graphicc.cpp in Sources */, F1E4D7CA634E33808AE3B524 /* fontenumcmn.cpp in Sources */, - D5AABE973F3A351EB1C1A5A6 /* fontmap.cpp in Sources */, - 60706F8836A130A2AF282FE3 /* fontutilcmn.cpp in Sources */, - EDD5725CF41336EFA7FB300B /* framecmn.cpp in Sources */, - EAA469E1A0CC33E4A21A3F7B /* gaugecmn.cpp in Sources */, + D5AABE973F3A351EB1C1A5A8 /* fontmap.cpp in Sources */, + 60706F8836A130A2AF282FE1 /* fontutilcmn.cpp in Sources */, + EDD5725CF41336EFA7FB3009 /* framecmn.cpp in Sources */, + EAA469E1A0CC33E4A21A3F7C /* gaugecmn.cpp in Sources */, 5A8638C234133824BDF93BBF /* gbsizer.cpp in Sources */, - 0E60E17BA4B23347A4F20160 /* gdicmn.cpp in Sources */, - 95AD56D602CF3C5085602AF9 /* geometry.cpp in Sources */, + 0E60E17BA4B23347A4F20161 /* gdicmn.cpp in Sources */, + 95AD56D602CF3C5085602AF8 /* geometry.cpp in Sources */, 758629DA468A3EF7B1C15241 /* gifdecod.cpp in Sources */, 7B642B17F5D23F4F8ED38BB6 /* graphcmn.cpp in Sources */, - B8FEEC2C94183AB69C963178 /* headercolcmn.cpp in Sources */, - 383A6993E90936D39A5F12BE /* headerctrlcmn.cpp in Sources */, - 4657479AF35533AEB7876678 /* helpbase.cpp in Sources */, + B8FEEC2C94183AB69C963177 /* headercolcmn.cpp in Sources */, + 383A6993E90936D39A5F12BD /* headerctrlcmn.cpp in Sources */, + 4657479AF35533AEB7876676 /* helpbase.cpp in Sources */, BF2585CFA6853023975F1E79 /* iconbndl.cpp in Sources */, - 5B5B8DF915D438AA9FCEB39F /* imagall.cpp in Sources */, - 0813551C951A3AD1A5EF01B4 /* imagbmp.cpp in Sources */, + 5B5B8DF915D438AA9FCEB3A0 /* imagall.cpp in Sources */, + 0813551C951A3AD1A5EF01B3 /* imagbmp.cpp in Sources */, 6C822F7F313734DCB51F44B9 /* image.cpp in Sources */, 89046455F49D3D75A21C9DBA /* imagfill.cpp in Sources */, - 36DB80FD5B153E9099DB6914 /* imaggif.cpp in Sources */, - 9110ACFC3CFB3C7994E907B1 /* imagiff.cpp in Sources */, - D13596A4E3CD31DE810061A2 /* imagjpeg.cpp in Sources */, + 36DB80FD5B153E9099DB6913 /* imaggif.cpp in Sources */, + 9110ACFC3CFB3C7994E907B0 /* imagiff.cpp in Sources */, + D13596A4E3CD31DE810061A1 /* imagjpeg.cpp in Sources */, D83B32B788EC310D919E0DF7 /* imagpcx.cpp in Sources */, - 23965E313EDC3BBE9B2FA1C5 /* imagpng.cpp in Sources */, - 46E331300D8F349DB36AB50C /* imagpnm.cpp in Sources */, - AAABEE399008310A8BC9BE43 /* imagtga.cpp in Sources */, - 3C36437B2E933F83984D431E /* imagtiff.cpp in Sources */, - 774A89998E09308CBFB03EE1 /* imagxpm.cpp in Sources */, - 63F2517EC6B2334CA825A6FB /* layout.cpp in Sources */, - CFF73578F04D357E83D1D832 /* lboxcmn.cpp in Sources */, - 164010B26D363F5FA09785B8 /* listctrlcmn.cpp in Sources */, - 2F7F5B9BBCD83D90B237A1A2 /* markupparser.cpp in Sources */, - 9A83D365AD1F37FA9C7030C3 /* matrix.cpp in Sources */, + 23965E313EDC3BBE9B2FA1C7 /* imagpng.cpp in Sources */, + 46E331300D8F349DB36AB50B /* imagpnm.cpp in Sources */, + AAABEE399008310A8BC9BE44 /* imagtga.cpp in Sources */, + 3C36437B2E933F83984D431F /* imagtiff.cpp in Sources */, + 774A89998E09308CBFB03EE0 /* imagxpm.cpp in Sources */, + 63F2517EC6B2334CA825A6FA /* layout.cpp in Sources */, + CFF73578F04D357E83D1D831 /* lboxcmn.cpp in Sources */, + 164010B26D363F5FA09785B6 /* listctrlcmn.cpp in Sources */, + 2F7F5B9BBCD83D90B237A1A0 /* markupparser.cpp in Sources */, + 9A83D365AD1F37FA9C7030C2 /* matrix.cpp in Sources */, E3A4615870B139D29FE727C3 /* menucmn.cpp in Sources */, - 171F09F8DD553FA5B4B3FAE4 /* modalhook.cpp in Sources */, - BD49EC50CB363642BDBF25C9 /* mousemanager.cpp in Sources */, + 171F09F8DD553FA5B4B3FAE3 /* modalhook.cpp in Sources */, + BD49EC50CB363642BDBF25CA /* mousemanager.cpp in Sources */, 7A84B9471A3238B4B66B1777 /* nbkbase.cpp in Sources */, - AC6AC589EFB233C7B65A3225 /* overlaycmn.cpp in Sources */, + AC6AC589EFB233C7B65A3226 /* overlaycmn.cpp in Sources */, D6B2A64A78AF3F2983B441A9 /* ownerdrwcmn.cpp in Sources */, 0742292656623EC481B3436B /* paper.cpp in Sources */, - E2A73751CECF32A68FFAEE84 /* panelcmn.cpp in Sources */, + E2A73751CECF32A68FFAEE82 /* panelcmn.cpp in Sources */, 4279D39CAAF834F6A5B99196 /* persist.cpp in Sources */, AF1E3338E892336E924AF631 /* pickerbase.cpp in Sources */, - 6E68759BC2E63CA59C12FDC0 /* popupcmn.cpp in Sources */, - 6292B023DBF4337A91404AD2 /* preferencescmn.cpp in Sources */, + 6E68759BC2E63CA59C12FDC1 /* popupcmn.cpp in Sources */, + 6292B023DBF4337A91404AD0 /* preferencescmn.cpp in Sources */, 1C52CB9487DF3AB9AF243B48 /* prntbase.cpp in Sources */, 0B98B6721DEE37A1ADEA382D /* quantize.cpp in Sources */, - AE5286C71D1130EAA368A1C5 /* radiobtncmn.cpp in Sources */, + AE5286C71D1130EAA368A1C6 /* radiobtncmn.cpp in Sources */, AEB9099819B33F4A8AAB9F56 /* radiocmn.cpp in Sources */, - 5116CE330E333724A66982E5 /* rearrangectrl.cpp in Sources */, - A9864F0104FA344BBE79D3BE /* rendcmn.cpp in Sources */, + 5116CE330E333724A66982E4 /* rearrangectrl.cpp in Sources */, + A9864F0104FA344BBE79D3BC /* rendcmn.cpp in Sources */, A80D00249A693F43A9CBE777 /* rgncmn.cpp in Sources */, - C259D01CC62533D296EF023A /* scrolbarcmn.cpp in Sources */, - 7625D908B2CD34C78243BA90 /* settcmn.cpp in Sources */, - F5D0BCF1A6C839E5829199E3 /* sizer.cpp in Sources */, + C259D01CC62533D296EF023C /* scrolbarcmn.cpp in Sources */, + 7625D908B2CD34C78243BA8F /* settcmn.cpp in Sources */, + F5D0BCF1A6C839E5829199E4 /* sizer.cpp in Sources */, EDD92822EBD93E86AE5A2ED2 /* slidercmn.cpp in Sources */, - F46777ABE0743B04A1E1F0A5 /* spinbtncmn.cpp in Sources */, + F46777ABE0743B04A1E1F0A6 /* spinbtncmn.cpp in Sources */, 49C873EE448C3CD9A32012CF /* spinctrlcmn.cpp in Sources */, 1EA81A0E8E5A3B38B4D80337 /* srchcmn.cpp in Sources */, - 4AEC67BF65B039D99F421666 /* statbar.cpp in Sources */, - 7C52E7CC12463941B0E4D404 /* statbmpcmn.cpp in Sources */, - D9DCBE799DB634C2A73FD6BE /* statboxcmn.cpp in Sources */, - 8B38C6C416BA3A51B37F60C5 /* statlinecmn.cpp in Sources */, + 4AEC67BF65B039D99F421668 /* statbar.cpp in Sources */, + 7C52E7CC12463941B0E4D402 /* statbmpcmn.cpp in Sources */, + D9DCBE799DB634C2A73FD6BF /* statboxcmn.cpp in Sources */, + 8B38C6C416BA3A51B37F60C6 /* statlinecmn.cpp in Sources */, D9EE059D3C3C3C13AE4419F2 /* stattextcmn.cpp in Sources */, - BAFF04F1680F32DA988EB03D /* stockitem.cpp in Sources */, + BAFF04F1680F32DA988EB03E /* stockitem.cpp in Sources */, 4958BD2E717A3F03AB030188 /* tbarbase.cpp in Sources */, - 9744994E8A813AA6938A7CE3 /* textcmn.cpp in Sources */, - AD4A533C4E1633598A6D5C71 /* textentrycmn.cpp in Sources */, - 23479484EC143D34871550C1 /* textmeasurecmn.cpp in Sources */, - 700BBDECBE313E108BA99ABD /* toplvcmn.cpp in Sources */, - 45FE206BBAD13DDCA1EA41CF /* treebase.cpp in Sources */, - 796311E398FF313C84218826 /* uiactioncmn.cpp in Sources */, - E9EDB5C92D5D3B529E8D73B0 /* valgen.cpp in Sources */, - 9F70A89D00B03D4894AF7639 /* validate.cpp in Sources */, - 1937FBA0A0DD32A8A743CFE1 /* valtext.cpp in Sources */, + 9744994E8A813AA6938A7CE4 /* textcmn.cpp in Sources */, + AD4A533C4E1633598A6D5C6F /* textentrycmn.cpp in Sources */, + 23479484EC143D34871550C3 /* textmeasurecmn.cpp in Sources */, + 700BBDECBE313E108BA99ABE /* toplvcmn.cpp in Sources */, + 45FE206BBAD13DDCA1EA41D1 /* treebase.cpp in Sources */, + 796311E398FF313C84218825 /* uiactioncmn.cpp in Sources */, + E9EDB5C92D5D3B529E8D73B2 /* valgen.cpp in Sources */, + 9F70A89D00B03D4894AF763A /* validate.cpp in Sources */, + 1937FBA0A0DD32A8A743CFE2 /* valtext.cpp in Sources */, 6A032420671B375D81273714 /* valnum.cpp in Sources */, A2769D1659AE3CA3B58C2CAF /* wincmn.cpp in Sources */, - 1BCC944F5E0936F5830F03E9 /* windowid.cpp in Sources */, + 1BCC944F5E0936F5830F03E8 /* windowid.cpp in Sources */, 3399AB7BB1333B5AAF5FAF55 /* wrapsizer.cpp in Sources */, C1E5799141603A75A26BEEA9 /* xpmdecod.cpp in Sources */, 46F341B46F80376B962759F7 /* animateg.cpp in Sources */, - F5806029B1BA3924A8FDDBC2 /* busyinfo.cpp in Sources */, - CB078622E90F33BE9D131134 /* buttonbar.cpp in Sources */, - 03035C5CE4BC3288A5A18426 /* choicdgg.cpp in Sources */, + F5806029B1BA3924A8FDDBC3 /* busyinfo.cpp in Sources */, + CB078622E90F33BE9D131136 /* buttonbar.cpp in Sources */, + 03035C5CE4BC3288A5A18424 /* choicdgg.cpp in Sources */, 9CA687845B3F30CCA44A89D1 /* choicbkg.cpp in Sources */, 4442EA28B0B3373B9A2D0864 /* collheaderctrlg.cpp in Sources */, 9C1F073349FD393E9220C0D5 /* combog.cpp in Sources */, - EAE02BA934B43EEE92C496C8 /* dcpsg.cpp in Sources */, - 22AE900003F73134BBEE8BB8 /* dirctrlg.cpp in Sources */, - 4040AE89BF9F34668091064A /* dragimgg.cpp in Sources */, + EAE02BA934B43EEE92C496C9 /* dcpsg.cpp in Sources */, + 22AE900003F73134BBEE8BB6 /* dirctrlg.cpp in Sources */, + 4040AE89BF9F34668091064C /* dragimgg.cpp in Sources */, 7EF89F935314301381802FAB /* filectrlg.cpp in Sources */, - 7D615329368D32709CEF4B58 /* headerctrlg.cpp in Sources */, - 2C95DFA8EE463487956B4EB4 /* infobar.cpp in Sources */, + 7D615329368D32709CEF4B5A /* headerctrlg.cpp in Sources */, + 2C95DFA8EE463487956B4EB6 /* infobar.cpp in Sources */, 02E8F1195B653D26AAA89463 /* listbkg.cpp in Sources */, - 026F90F7492C316A94128917 /* logg.cpp in Sources */, - 633DD2E870263F42A8DBF9C0 /* markuptext.cpp in Sources */, - 745C39E90E8C3C08A887B51E /* msgdlgg.cpp in Sources */, + 026F90F7492C316A94128918 /* logg.cpp in Sources */, + 633DD2E870263F42A8DBF9C1 /* markuptext.cpp in Sources */, + 745C39E90E8C3C08A887B51C /* msgdlgg.cpp in Sources */, 1AF2B2346C9639DAA4D15F31 /* numdlgg.cpp in Sources */, 4D0BA8B9F72C3C31BC170CE3 /* progdlgg.cpp in Sources */, A1A7B833061C35B4AABD093E /* preferencesg.cpp in Sources */, - DEB35F871F8E3B90AD207AF0 /* printps.cpp in Sources */, - 96927C5A21FD3ACF936CDF6E /* renderg.cpp in Sources */, - F72020415D713C1BA41C17CF /* richmsgdlgg.cpp in Sources */, + DEB35F871F8E3B90AD207AEF /* printps.cpp in Sources */, + 96927C5A21FD3ACF936CDF6C /* renderg.cpp in Sources */, + F72020415D713C1BA41C17D0 /* richmsgdlgg.cpp in Sources */, ED8D23D79FF33ED380FE09EB /* scrlwing.cpp in Sources */, 85F9828B80B03178A274BD19 /* selstore.cpp in Sources */, - 84997126352137E798CD258C /* spinctlg.cpp in Sources */, - 62F1DC80D631335B892610A8 /* splitter.cpp in Sources */, - B6C364CB4AE33708A862B4B5 /* srchctlg.cpp in Sources */, - 8FC1C07FEE793897A1E96D25 /* statbmpg.cpp in Sources */, + 84997126352137E798CD258A /* spinctlg.cpp in Sources */, + 62F1DC80D631335B892610AA /* splitter.cpp in Sources */, + B6C364CB4AE33708A862B4B6 /* srchctlg.cpp in Sources */, + 8FC1C07FEE793897A1E96D23 /* statbmpg.cpp in Sources */, BF9B151DC0543E37878F8B9B /* stattextg.cpp in Sources */, - 62757F24C4EE3B84B6AE3F15 /* textdlgg.cpp in Sources */, + 62757F24C4EE3B84B6AE3F14 /* textdlgg.cpp in Sources */, 249C9177B1A33EFEAB30F940 /* tipwin.cpp in Sources */, - 32FECED7A7633C4D8C1BFBB4 /* toolbkg.cpp in Sources */, + 32FECED7A7633C4D8C1BFBB3 /* toolbkg.cpp in Sources */, DB3C3AA956A03FB492480268 /* treectlg.cpp in Sources */, - 5388468A6F8F3141B25CD401 /* treebkg.cpp in Sources */, - 87C67583D36C3465ACD64104 /* vlbox.cpp in Sources */, - A465A43B756630F1944B5A58 /* vscroll.cpp in Sources */, - 1CBF34ACA39330028A5EA9AD /* xmlreshandler.cpp in Sources */, - 8AA341CCFB8E3F6AB3523597 /* splash.cpp in Sources */, + 5388468A6F8F3141B25CD400 /* treebkg.cpp in Sources */, + 87C67583D36C3465ACD64105 /* vlbox.cpp in Sources */, + A465A43B756630F1944B5A56 /* vscroll.cpp in Sources */, + 1CBF34ACA39330028A5EA9AE /* xmlreshandler.cpp in Sources */, + 8AA341CCFB8E3F6AB3523596 /* splash.cpp in Sources */, CEE0D7A7D5D8323B9957A781 /* notifmsgg.cpp in Sources */, 1E17F95DD433379E8C18298C /* odcombo.cpp in Sources */, - 901F659891613419B8643953 /* calctrlcmn.cpp in Sources */, - E5D698D2606A304DA743AF92 /* grideditors.cpp in Sources */, - 5C44446AB150378696CD6B3C /* bmpcboxcmn.cpp in Sources */, - A139B846584436BCBEBAE3C0 /* grid.cpp in Sources */, - 2E930206397C3EDCBD8206FE /* gridctrl.cpp in Sources */, + 901F659891613419B8643952 /* calctrlcmn.cpp in Sources */, + E5D698D2606A304DA743AF94 /* grideditors.cpp in Sources */, + 5C44446AB150378696CD6B3E /* bmpcboxcmn.cpp in Sources */, + A139B846584436BCBEBAE3BF /* grid.cpp in Sources */, + 2E930206397C3EDCBD8206FD /* gridctrl.cpp in Sources */, 760C729E41D93CC1AA2B4E0D /* hyperlinkg.cpp in Sources */, - F016C51053373E658ED4C9AB /* helpext.cpp in Sources */, + F016C51053373E658ED4C9AA /* helpext.cpp in Sources */, 3554C88010CE3D2A8970A135 /* sashwin.cpp in Sources */, - 187F921A95DA3594B0AD980F /* gridsel.cpp in Sources */, - EC3D181D65F33E09A675FFF4 /* addremovectrl.cpp in Sources */, + 187F921A95DA3594B0AD980D /* gridsel.cpp in Sources */, + EC3D181D65F33E09A675FFF3 /* addremovectrl.cpp in Sources */, 77BC918AF05C30E8A0BD27F8 /* tipdlg.cpp in Sources */, - FEA741A9B6663A4C929893C4 /* aboutdlgg.cpp in Sources */, - 2FAE979E6FE23D088C768B7D /* gridcmn.cpp in Sources */, - 2FE10EA678C73523836FCC1D /* richtooltipcmn.cpp in Sources */, - B4425B59CC27389CA9FF81D3 /* datectlg.cpp in Sources */, - E0FAB345D2933D42B62917A3 /* bannerwindow.cpp in Sources */, + FEA741A9B6663A4C929893C2 /* aboutdlgg.cpp in Sources */, + 2FAE979E6FE23D088C768B7F /* gridcmn.cpp in Sources */, + 2FE10EA678C73523836FCC1C /* richtooltipcmn.cpp in Sources */, + B4425B59CC27389CA9FF81D2 /* datectlg.cpp in Sources */, + E0FAB345D2933D42B62917A4 /* bannerwindow.cpp in Sources */, 060E095718B03EF98C754799 /* treelist.cpp in Sources */, 1CD4F67F48CF3A5FA477D86F /* datavcmn.cpp in Sources */, - CFDBB80A4C9A3BA092273938 /* animatecmn.cpp in Sources */, - E6D18B2EDE353F67883085A0 /* odcombocmn.cpp in Sources */, - 7B4DA2F5F25B3E188CBAFE39 /* hyperlnkcmn.cpp in Sources */, - 6A10511265493FA2BB79CE4E /* propdlg.cpp in Sources */, - B189DB62AE9F30A1B613756D /* bmpcboxg.cpp in Sources */, - C67EAE20657E36839BF86690 /* richtooltipg.cpp in Sources */, - 98F52D5224B438DFA8887E06 /* timectrlg.cpp in Sources */, - 8A662992FFCB32E99D11950E /* commandlinkbuttong.cpp in Sources */, - 800CFCEDBB7938338C65EEAE /* notifmsgcmn.cpp in Sources */, - 82FA4AA043213728AC266701 /* wizard.cpp in Sources */, + CFDBB80A4C9A3BA092273936 /* animatecmn.cpp in Sources */, + E6D18B2EDE353F67883085A1 /* odcombocmn.cpp in Sources */, + 7B4DA2F5F25B3E188CBAFE38 /* hyperlnkcmn.cpp in Sources */, + 6A10511265493FA2BB79CE4D /* propdlg.cpp in Sources */, + B189DB62AE9F30A1B613756B /* bmpcboxg.cpp in Sources */, + C67EAE20657E36839BF86692 /* richtooltipg.cpp in Sources */, + 98F52D5224B438DFA8887E08 /* timectrlg.cpp in Sources */, + 8A662992FFCB32E99D11950C /* commandlinkbuttong.cpp in Sources */, + 800CFCEDBB7938338C65EEAC /* notifmsgcmn.cpp in Sources */, + 82FA4AA043213728AC266700 /* wizard.cpp in Sources */, 8B60964DA1DF3F3DB40BE124 /* datavgen.cpp in Sources */, 5557AA36FBCC3ED9A5F5751A /* editlbox.cpp in Sources */, 955D2199F1893D37BA2D747A /* laywin.cpp in Sources */, 2F50DBC14FE538A49823925A /* calctrlg.cpp in Sources */, - 63F895D6F5643E4B9E666B7B /* creddlgg.cpp in Sources */, - 8F372080E11E382EA0B5ED11 /* rowheightcache.cpp in Sources */, - DB244DC0A09C379AAA63C0A6 /* bmpbndl.cpp in Sources */, + 63F895D6F5643E4B9E666B79 /* creddlgg.cpp in Sources */, + 8F372080E11E382EA0B5ED0F /* rowheightcache.cpp in Sources */, + DB244DC0A09C379AAA63C0A5 /* bmpbndl.cpp in Sources */, 32988828498D32B2B3F8A984 /* bmpsvg.cpp in Sources */, - 567A32722BA33AEE9FF93D7C /* fs_inet.cpp in Sources */, + 567A32722BA33AEE9FF93D7E /* fs_inet.cpp in Sources */, 65514CD6A9F23ED98436AC04 /* ftp.cpp in Sources */, B84642DA949638A189032CE8 /* http.cpp in Sources */, - 6CA1BAEBBDB4336E9E201F97 /* protocol.cpp in Sources */, + 6CA1BAEBBDB4336E9E201F95 /* protocol.cpp in Sources */, E39021D3CDCD33BAA646B007 /* sckaddr.cpp in Sources */, - 9F608A33D52D327FAA295624 /* sckfile.cpp in Sources */, - BCD81FD3D1EC305F801E1C1B /* sckipc.cpp in Sources */, - A3A898DA3114311EB7F02229 /* sckstrm.cpp in Sources */, - 6978D7A20DA93A329DDD1384 /* socket.cpp in Sources */, + 9F608A33D52D327FAA295625 /* sckfile.cpp in Sources */, + BCD81FD3D1EC305F801E1C1C /* sckipc.cpp in Sources */, + A3A898DA3114311EB7F02227 /* sckstrm.cpp in Sources */, + 6978D7A20DA93A329DDD1383 /* socket.cpp in Sources */, E7140F3AB94D3FDFA86D8C06 /* url.cpp in Sources */, - C987310872D1396BAF716E5B /* webrequest.cpp in Sources */, + C987310872D1396BAF716E5C /* webrequest.cpp in Sources */, EE972E8DC73F310B9B4C949E /* webrequest_curl.cpp in Sources */, 652CFDD9A1C1366E99B5D6BE /* socketiohandler.cpp in Sources */, - 346D274E17673A01B0177D5B /* sockunix.cpp in Sources */, - AD07124BBA613B47829F0694 /* sockosx.cpp in Sources */, - 980ED1DA2F96361985952255 /* webrequest_urlsession.mm in Sources */, - 0E23F212CBDD33848DEBCA6E /* webview_chromium.mm in Sources */, - 2DBF5F96CCC63F7481C26A45 /* webview_webkit.mm in Sources */, - 64A716F87A5136F9A790EC5B /* webview.cpp in Sources */, + 346D274E17673A01B0177D5C /* sockunix.cpp in Sources */, + AD07124BBA613B47829F0693 /* sockosx.cpp in Sources */, + 980ED1DA2F96361985952254 /* webrequest_urlsession.mm in Sources */, + 0E23F212CBDD33848DEBCA6F /* webview_chromium.mm in Sources */, + 2DBF5F96CCC63F7481C26A44 /* webview_webkit.mm in Sources */, + 64A716F87A5136F9A790EC5A /* webview.cpp in Sources */, 5C5D0983160A36189A770744 /* webviewarchivehandler.cpp in Sources */, - 048986FB629E313EA670CD0C /* webviewfshandler.cpp in Sources */, - AE95E3BDEDB7358DBE9E7E5C /* webview_chromium.cpp in Sources */, - DEC5F4B34BC037169D3E5F2B /* mediactrlcmn.cpp in Sources */, - B6BC23F4F3E43315BD4C7CFA /* mediactrl.mm in Sources */, + 048986FB629E313EA670CD0E /* webviewfshandler.cpp in Sources */, + AE95E3BDEDB7358DBE9E7E5B /* webview_chromium.cpp in Sources */, + DEC5F4B34BC037169D3E5F2C /* mediactrlcmn.cpp in Sources */, + B6BC23F4F3E43315BD4C7CF9 /* mediactrl.mm in Sources */, 47EBBB18BDB539C2A948C713 /* chm.cpp in Sources */, BAA75384DA82370298672335 /* helpctrl.cpp in Sources */, - 2CAD4DF9505F36E4A2EAD53E /* helpdata.cpp in Sources */, + 2CAD4DF9505F36E4A2EAD53D /* helpdata.cpp in Sources */, D17E3053DA0D3F7EA4D0951D /* helpdlg.cpp in Sources */, - 7C87CC7641033D91823ED688 /* helpfrm.cpp in Sources */, + 7C87CC7641033D91823ED68A /* helpfrm.cpp in Sources */, 3D762A0BBF1B39B88A769633 /* helpwnd.cpp in Sources */, - 4DA209AEF4AD32AAB97F9719 /* htmlcell.cpp in Sources */, - FD3CC5F0AA41384B9388A1E1 /* htmlfilt.cpp in Sources */, - C5E5AB869065307F83E27DD3 /* htmlpars.cpp in Sources */, + 4DA209AEF4AD32AAB97F971A /* htmlcell.cpp in Sources */, + FD3CC5F0AA41384B9388A1E2 /* htmlfilt.cpp in Sources */, + C5E5AB869065307F83E27DD2 /* htmlpars.cpp in Sources */, EBA0986930DA3B59B2FB4F1E /* htmltag.cpp in Sources */, - 93E04642049537EB8A37BA28 /* htmlwin.cpp in Sources */, - 3E99016BDE043A08B4D6B3CF /* htmprint.cpp in Sources */, - 9836B3D336963795928FE5A2 /* m_dflist.cpp in Sources */, + 93E04642049537EB8A37BA26 /* htmlwin.cpp in Sources */, + 3E99016BDE043A08B4D6B3D0 /* htmprint.cpp in Sources */, + 9836B3D336963795928FE5A1 /* m_dflist.cpp in Sources */, 66584BC871303041BA622DE1 /* m_fonts.cpp in Sources */, - 99F7D7BFBB543A04AB728375 /* m_hline.cpp in Sources */, - A3586433C4B1398FB1C361D7 /* m_image.cpp in Sources */, - BD53E095EC1136EF853A47DA /* m_layout.cpp in Sources */, + 99F7D7BFBB543A04AB728376 /* m_hline.cpp in Sources */, + A3586433C4B1398FB1C361D8 /* m_image.cpp in Sources */, + BD53E095EC1136EF853A47D9 /* m_layout.cpp in Sources */, C05BDB0B5F5A33A9A57FF014 /* m_links.cpp in Sources */, - 81B742D64BEB373DB705947C /* m_list.cpp in Sources */, + 81B742D64BEB373DB705947B /* m_list.cpp in Sources */, FD38B04026F930CC80BC9480 /* m_pre.cpp in Sources */, - 57AE7FCF768F3965BD39B47B /* m_span.cpp in Sources */, - 4CFB7E6E5BD53E2BB39BEF64 /* m_style.cpp in Sources */, + 57AE7FCF768F3965BD39B47A /* m_span.cpp in Sources */, + 4CFB7E6E5BD53E2BB39BEF63 /* m_style.cpp in Sources */, 3D424F4B33653A00AE9B623C /* m_tables.cpp in Sources */, - F3AC352D6DAE3A12A566476A /* styleparams.cpp in Sources */, - 2A7640E4210334AC93366900 /* winpars.cpp in Sources */, - 87AA9C5D887B3C31A2AFB49E /* htmllbox.cpp in Sources */, + F3AC352D6DAE3A12A5664769 /* styleparams.cpp in Sources */, + 2A7640E4210334AC93366901 /* winpars.cpp in Sources */, + 87AA9C5D887B3C31A2AFB49D /* htmllbox.cpp in Sources */, 8F949B9010863F66A58FFEF1 /* xh_activityindicator.cpp in Sources */, - FBE4DB30865D3177B3A9993B /* xh_animatctrl.cpp in Sources */, + FBE4DB30865D3177B3A9993D /* xh_animatctrl.cpp in Sources */, 702616D38A5B345D9CC87116 /* xh_bannerwindow.cpp in Sources */, - 94E510619F433AE3AC884755 /* xh_bmp.cpp in Sources */, - 8966F77CC97B3ED780C8F138 /* xh_bmpcbox.cpp in Sources */, - 84B3625464F732C3A79E1315 /* xh_bmpbt.cpp in Sources */, + 94E510619F433AE3AC884757 /* xh_bmp.cpp in Sources */, + 8966F77CC97B3ED780C8F137 /* xh_bmpcbox.cpp in Sources */, + 84B3625464F732C3A79E1314 /* xh_bmpbt.cpp in Sources */, D5C304182151365FA9FF8A3E /* xh_bttn.cpp in Sources */, - FE9A662A1F9B34D099C45C1E /* xh_cald.cpp in Sources */, - 6138BCBC8E4438FA91E0EF9F /* xh_chckb.cpp in Sources */, + FE9A662A1F9B34D099C45C1D /* xh_cald.cpp in Sources */, + 6138BCBC8E4438FA91E0EFA0 /* xh_chckb.cpp in Sources */, 5F2C2A46781739D897CF293E /* xh_chckl.cpp in Sources */, CE17002B5B7E37558274763B /* xh_choic.cpp in Sources */, - 26E4813A97DE323E88119164 /* xh_choicbk.cpp in Sources */, - E7AF3BF2B3473AD9BE66D1A1 /* xh_clrpicker.cpp in Sources */, - 1AB50C98FF473B33A3CA4D3A /* xh_cmdlinkbn.cpp in Sources */, + 26E4813A97DE323E88119165 /* xh_choicbk.cpp in Sources */, + E7AF3BF2B3473AD9BE66D1A2 /* xh_clrpicker.cpp in Sources */, + 1AB50C98FF473B33A3CA4D39 /* xh_cmdlinkbn.cpp in Sources */, E7921B0472B63E4091F4F518 /* xh_collpane.cpp in Sources */, 84382E5DB3203A73AC5EE392 /* xh_combo.cpp in Sources */, - F569D7A3F0E038E9B4CC2A76 /* xh_comboctrl.cpp in Sources */, - 14F303FD6B5F383DADDFD788 /* xh_dataview.cpp in Sources */, - FB09720D13673A7B81BCB646 /* xh_datectrl.cpp in Sources */, - F7D10B6E0CBA32EFAF79C77C /* xh_dirpicker.cpp in Sources */, - 3B7E035ECF3D3FFB9827AC1D /* xh_dlg.cpp in Sources */, + F569D7A3F0E038E9B4CC2A78 /* xh_comboctrl.cpp in Sources */, + 14F303FD6B5F383DADDFD789 /* xh_dataview.cpp in Sources */, + FB09720D13673A7B81BCB647 /* xh_datectrl.cpp in Sources */, + F7D10B6E0CBA32EFAF79C77E /* xh_dirpicker.cpp in Sources */, + 3B7E035ECF3D3FFB9827AC1E /* xh_dlg.cpp in Sources */, E05B06A7FEEE32D5AD87EA4F /* xh_editlbox.cpp in Sources */, - F24F637D59F637CA9A7E23CA /* xh_filectrl.cpp in Sources */, - 5FE969523BDB3353AEF96812 /* xh_filepicker.cpp in Sources */, - 438EAEA4B30C325C827F6199 /* xh_fontpicker.cpp in Sources */, + F24F637D59F637CA9A7E23C9 /* xh_filectrl.cpp in Sources */, + 5FE969523BDB3353AEF96810 /* xh_filepicker.cpp in Sources */, + 438EAEA4B30C325C827F6198 /* xh_fontpicker.cpp in Sources */, 95826E8528CC32D8934C36EC /* xh_frame.cpp in Sources */, - BE99A85EE76236CC8C719A64 /* xh_gauge.cpp in Sources */, - 26649553E4763EE6BA268B7F /* xh_gdctl.cpp in Sources */, - 72AD4417FF7C3094BB1FF62E /* xh_grid.cpp in Sources */, + BE99A85EE76236CC8C719A66 /* xh_gauge.cpp in Sources */, + 26649553E4763EE6BA268B7E /* xh_gdctl.cpp in Sources */, + 72AD4417FF7C3094BB1FF62C /* xh_grid.cpp in Sources */, 83616D33080E3F0F9FA5FBB4 /* xh_html.cpp in Sources */, - 2B13BFC894C63373B7ACFA3D /* xh_hyperlink.cpp in Sources */, + 2B13BFC894C63373B7ACFA3F /* xh_hyperlink.cpp in Sources */, EA10DA3199813E90B39C70D4 /* xh_infobar.cpp in Sources */, C34B8675439F39B4845FFC50 /* xh_listb.cpp in Sources */, F5DF7AF0FA9E371BB71EF799 /* xh_listbk.cpp in Sources */, - 96B507455762391688B5E500 /* xh_listc.cpp in Sources */, - F34D240EB4513FE996179183 /* xh_mdi.cpp in Sources */, - 65FCDBFFF3F138A3ABBAA651 /* xh_menu.cpp in Sources */, - 0FBF7C9EDFB53D8DA0991B55 /* xh_notbk.cpp in Sources */, - 0FA6E1E47F123FF4A902E4D4 /* xh_odcombo.cpp in Sources */, - 36B0B923B836358D9DB0AE12 /* xh_panel.cpp in Sources */, - CDC0FF253B503BA19693D68D /* xh_propdlg.cpp in Sources */, - 47F4FC8717AF3A848812DFCC /* xh_radbt.cpp in Sources */, - 7181709A030D3749AB355B76 /* xh_radbx.cpp in Sources */, - FDE14459359334DE9FB03ED5 /* xh_scrol.cpp in Sources */, - 87092C0C817D343DAB77E240 /* xh_scwin.cpp in Sources */, + 96B507455762391688B5E502 /* xh_listc.cpp in Sources */, + F34D240EB4513FE996179182 /* xh_mdi.cpp in Sources */, + 65FCDBFFF3F138A3ABBAA650 /* xh_menu.cpp in Sources */, + 0FBF7C9EDFB53D8DA0991B57 /* xh_notbk.cpp in Sources */, + 0FA6E1E47F123FF4A902E4D2 /* xh_odcombo.cpp in Sources */, + 36B0B923B836358D9DB0AE11 /* xh_panel.cpp in Sources */, + CDC0FF253B503BA19693D68E /* xh_propdlg.cpp in Sources */, + 47F4FC8717AF3A848812DFCD /* xh_radbt.cpp in Sources */, + 7181709A030D3749AB355B74 /* xh_radbx.cpp in Sources */, + FDE14459359334DE9FB03ED7 /* xh_scrol.cpp in Sources */, + 87092C0C817D343DAB77E23E /* xh_scwin.cpp in Sources */, 00E2F82590B33BDCA1F6D0C6 /* xh_htmllbox.cpp in Sources */, A39B0D7EB43137F7BA50A35C /* xh_simplebook.cpp in Sources */, - E1A20811148F31D289AF98B1 /* xh_sizer.cpp in Sources */, - 5F6B4F226B473AACB7AC8DF7 /* xh_slidr.cpp in Sources */, + E1A20811148F31D289AF98AF /* xh_sizer.cpp in Sources */, + 5F6B4F226B473AACB7AC8DF5 /* xh_slidr.cpp in Sources */, C32EF2EC1A103BC3A6254321 /* xh_spin.cpp in Sources */, - 33ED014A7FF7398794E6E4D1 /* xh_split.cpp in Sources */, - 7C9EAFF4A0223EE597E0E39E /* xh_srchctrl.cpp in Sources */, - 8AB7191F7CB838FC8337C48F /* xh_statbar.cpp in Sources */, - 3D3EA1BAAD1833B1B48E9C88 /* xh_stbmp.cpp in Sources */, - F22C401903993639AE05A296 /* xh_stbox.cpp in Sources */, + 33ED014A7FF7398794E6E4D0 /* xh_split.cpp in Sources */, + 7C9EAFF4A0223EE597E0E39F /* xh_srchctrl.cpp in Sources */, + 8AB7191F7CB838FC8337C48E /* xh_statbar.cpp in Sources */, + 3D3EA1BAAD1833B1B48E9C86 /* xh_stbmp.cpp in Sources */, + F22C401903993639AE05A295 /* xh_stbox.cpp in Sources */, BF3D600A93403C589B65C5C0 /* xh_stlin.cpp in Sources */, - 8292D346BFC33D6E8D3CDDC0 /* xh_sttxt.cpp in Sources */, - 0EB6AB38A68D3845AC384A23 /* xh_text.cpp in Sources */, + 8292D346BFC33D6E8D3CDDBF /* xh_sttxt.cpp in Sources */, + 0EB6AB38A68D3845AC384A25 /* xh_text.cpp in Sources */, B181806CC34839E791E54BF2 /* xh_tglbtn.cpp in Sources */, - 89200B144075388BA69A07E2 /* xh_timectrl.cpp in Sources */, - F3CB42BB6D983675862C01F5 /* xh_toolb.cpp in Sources */, - 17F0494F87533196904F5314 /* xh_toolbk.cpp in Sources */, - 3357BD0518F538E9A949F888 /* xh_tree.cpp in Sources */, - 46CE8B53D2663927AAE5DF9F /* xh_treebk.cpp in Sources */, - C5A8DF376BB13A2A8290C2E5 /* xh_unkwn.cpp in Sources */, + 89200B144075388BA69A07E3 /* xh_timectrl.cpp in Sources */, + F3CB42BB6D983675862C01F4 /* xh_toolb.cpp in Sources */, + 17F0494F87533196904F5313 /* xh_toolbk.cpp in Sources */, + 3357BD0518F538E9A949F886 /* xh_tree.cpp in Sources */, + 46CE8B53D2663927AAE5DF9E /* xh_treebk.cpp in Sources */, + C5A8DF376BB13A2A8290C2E6 /* xh_unkwn.cpp in Sources */, + ABBE59AC73E135D48965F20A /* xh_vlistbox.cpp in Sources */, 37DD17F479A1371ABF3589BB /* xh_wizrd.cpp in Sources */, 1710A4BB0E6339558A187F8D /* xmlres.cpp in Sources */, - 135DFCE48FC03D8294D01A89 /* xmlrsall.cpp in Sources */, + 135DFCE48FC03D8294D01A8B /* xmlrsall.cpp in Sources */, 070797A894A03196B7BEC663 /* xh_bookctrlbase.cpp in Sources */, - 50E89226E8D7390D9D21C80A /* debugrpt.cpp in Sources */, - 7C5552FA058034238F485900 /* dbgrptg.cpp in Sources */, + 50E89226E8D7390D9D21C80B /* debugrpt.cpp in Sources */, + 7C5552FA058034238F485902 /* dbgrptg.cpp in Sources */, 61FD5E0E28F732E8AB1729F8 /* xml.cpp in Sources */, - 42ED9BAFD6E936849F1D36CB /* xtixml.cpp in Sources */, - EEB0B28903693C7E9D071931 /* glcmn.cpp in Sources */, - 59F995B6E6EE3CA5A4487846 /* glcanvas.mm in Sources */, + 42ED9BAFD6E936849F1D36CD /* xtixml.cpp in Sources */, + EEB0B28903693C7E9D07192F /* glcmn.cpp in Sources */, + 59F995B6E6EE3CA5A4487845 /* glcanvas.mm in Sources */, F2813BF297C73A3ABD02EC98 /* glcanvas_osx.cpp in Sources */, 36EB5D19429D3BD1A01001D7 /* framemanager.cpp in Sources */, - C7B6240E0E213836996A178C /* dockart.cpp in Sources */, + C7B6240E0E213836996A178D /* dockart.cpp in Sources */, 15048519756B33959B15B161 /* floatpane.cpp in Sources */, E104017EE1A4357DAF84E1E8 /* auibook.cpp in Sources */, 39CC380F801F3EE984523276 /* auibar.cpp in Sources */, 6C46AF0370793AA0B74A5A4B /* tabmdi.cpp in Sources */, - AC0B0C52922B30188AE95E94 /* tabart.cpp in Sources */, + AC0B0C52922B30188AE95E95 /* tabart.cpp in Sources */, C3C19BD343B235F9909D495A /* xh_aui.cpp in Sources */, - 44C6F11C7D1C399F99CF6BD5 /* xh_auitoolb.cpp in Sources */, - DE43350F6C9D3148A64F0AF9 /* art_internal.cpp in Sources */, - 7DC4A542372437ECA0790F87 /* art_msw.cpp in Sources */, - A0BA01A85C303C78A3130712 /* art_aui.cpp in Sources */, + 44C6F11C7D1C399F99CF6BD6 /* xh_auitoolb.cpp in Sources */, + DE43350F6C9D3148A64F0AFA /* art_internal.cpp in Sources */, + 7DC4A542372437ECA0790F89 /* art_msw.cpp in Sources */, + A0BA01A85C303C78A3130711 /* art_aui.cpp in Sources */, 056CA84179433AA48D55DA67 /* bar.cpp in Sources */, - CB078622E90F33BE9D131133 /* buttonbar.cpp in Sources */, - EB52C6A91594381393294503 /* control.cpp in Sources */, + CB078622E90F33BE9D131135 /* buttonbar.cpp in Sources */, + EB52C6A915943813932944FF /* control.cpp in Sources */, 5F57C4908E5038D19D68ED7B /* gallery.cpp in Sources */, - 4BAFAE70A6B1313B96D86630 /* page.cpp in Sources */, + 4BAFAE70A6B1313B96D86631 /* page.cpp in Sources */, F0D892C2618130FEAD46BB86 /* panel.cpp in Sources */, - EA02FA6D3B003F8F8A2963C8 /* toolbar.cpp in Sources */, + EA02FA6D3B003F8F8A2963C7 /* toolbar.cpp in Sources */, 5A459FC1180130C5B705AEDB /* xh_ribbon.cpp in Sources */, D54A162E557834A48F4646AA /* advprops.cpp in Sources */, F501AB044AAC39DCB8C0B3E3 /* editors.cpp in Sources */, - 6B9EEA3CF2E536E3B1ADAC44 /* manager.cpp in Sources */, - 46A4CCF128FC3EB092074DC7 /* property.cpp in Sources */, - 26BB10834DA1388881BDD1EC /* propgrid.cpp in Sources */, - BEA90F2C6BB93143958F899C /* propgridiface.cpp in Sources */, - A423177BBC0F3BE5A436B4B9 /* propgridpagestate.cpp in Sources */, + 6B9EEA3CF2E536E3B1ADAC42 /* manager.cpp in Sources */, + 46A4CCF128FC3EB092074DC5 /* property.cpp in Sources */, + 26BB10834DA1388881BDD1EE /* propgrid.cpp in Sources */, + BEA90F2C6BB93143958F899B /* propgridiface.cpp in Sources */, + A423177BBC0F3BE5A436B4B7 /* propgridpagestate.cpp in Sources */, D72D99FC424337CF9EDC2043 /* props.cpp in Sources */, - DC7D78BABF823480B56528AD /* xh_propgrid.cpp in Sources */, + DC7D78BABF823480B56528AC /* xh_propgrid.cpp in Sources */, 9065A4BE3D0433B88CF45572 /* richtextbuffer.cpp in Sources */, 5C3B0ED2EA973DFDBFBCC692 /* richtextctrl.cpp in Sources */, - 9455B49669853E71BD4FD965 /* richtextformatdlg.cpp in Sources */, - 70F898F8B129380BBECAC55A /* richtexthtml.cpp in Sources */, - F43DAE2E829A3A7493531381 /* richtextimagedlg.cpp in Sources */, - 0FDDE8E193743F3A8CBDC67D /* richtextprint.cpp in Sources */, - FADD46CB89B135D1AF1D5F8A /* richtextstyledlg.cpp in Sources */, + 9455B49669853E71BD4FD966 /* richtextformatdlg.cpp in Sources */, + 70F898F8B129380BBECAC559 /* richtexthtml.cpp in Sources */, + F43DAE2E829A3A7493531382 /* richtextimagedlg.cpp in Sources */, + 0FDDE8E193743F3A8CBDC67C /* richtextprint.cpp in Sources */, + FADD46CB89B135D1AF1D5F8B /* richtextstyledlg.cpp in Sources */, 2563C775427E3D68BD384F2F /* richtextstyles.cpp in Sources */, - 604ABF86317C3D4F899DBF38 /* richtextsymboldlg.cpp in Sources */, - 9058997222493A7A859A4D4C /* richtextxml.cpp in Sources */, + 604ABF86317C3D4F899DBF37 /* richtextsymboldlg.cpp in Sources */, + 9058997222493A7A859A4D4D /* richtextxml.cpp in Sources */, 0BB3BF0909A134BA93CF5621 /* xh_richtext.cpp in Sources */, - E3B3E4F75D503DB89B5C622F /* stc.cpp in Sources */, + E3B3E4F75D503DB89B5C622E /* stc.cpp in Sources */, 908957F65B7E36F8BF3858DD /* PlatWX.cpp in Sources */, - 3E6AA08E72A030D39D867D4C /* ScintillaWX.cpp in Sources */, + 3E6AA08E72A030D39D867D4D /* ScintillaWX.cpp in Sources */, 849B89D1F6AB3DDEAA2D53AF /* xh_styledtextctrl.cpp in Sources */, 57F8001809BC3864A5FA798D /* PlatWXcocoa.mm in Sources */, F5B0B26BD0803719A3FCB4D9 /* adler32.c in Sources */, @@ -9265,314 +9265,314 @@ 8DE45CEAF2DD3C22AA019F76 /* deflate.c in Sources */, 213CE0DD5B2335D0AD53B54A /* gzclose.c in Sources */, 0E8A0B8FA40E365690C20232 /* gzlib.c in Sources */, - 4B996B4C54163D7091427DB7 /* gzread.c in Sources */, - 4E2737AC738431EB9898B8B7 /* gzwrite.c in Sources */, - 5EE94793DFCB3BA281A4864E /* infback.c in Sources */, - 10743B74A58231639C6BF612 /* inffast.c in Sources */, - 42AC484FDD7D3E948CEA801C /* inflate.c in Sources */, + 4B996B4C54163D7091427DB6 /* gzread.c in Sources */, + 4E2737AC738431EB9898B8B8 /* gzwrite.c in Sources */, + 5EE94793DFCB3BA281A48650 /* infback.c in Sources */, + 10743B74A58231639C6BF611 /* inffast.c in Sources */, + 42AC484FDD7D3E948CEA801E /* inflate.c in Sources */, 3813146434693234965C4F33 /* inftrees.c in Sources */, - 1CC5AEC6C08E3600801CDADB /* trees.c in Sources */, - 9C6E9E4BA54733EF9F87E4B8 /* uncompr.c in Sources */, - 42260A6F1853361083803B0D /* zutil.c in Sources */, - 99E7A46106C03484BA70D2A0 /* tif_unix.c in Sources */, - 4E396D8D2E9138D797F320C7 /* tif_aux.c in Sources */, - 1EE845DDFDDE36CA8A218205 /* tif_close.c in Sources */, - 8E674574343A3C009B1BCD01 /* tif_codec.c in Sources */, + 1CC5AEC6C08E3600801CDADC /* trees.c in Sources */, + 9C6E9E4BA54733EF9F87E4B7 /* uncompr.c in Sources */, + 42260A6F1853361083803B0E /* zutil.c in Sources */, + 99E7A46106C03484BA70D29F /* tif_unix.c in Sources */, + 4E396D8D2E9138D797F320C6 /* tif_aux.c in Sources */, + 1EE845DDFDDE36CA8A218206 /* tif_close.c in Sources */, + 8E674574343A3C009B1BCD00 /* tif_codec.c in Sources */, D95C5F467D37339AB8DF2355 /* tif_color.c in Sources */, - 6D073876E1753549B5EEFDDB /* tif_compress.c in Sources */, + 6D073876E1753549B5EEFDDA /* tif_compress.c in Sources */, E3136EF5DD843ACE886E2868 /* tif_dir.c in Sources */, - 7ECC6EE6D5273F75BB6B7B74 /* tif_dirinfo.c in Sources */, + 7ECC6EE6D5273F75BB6B7B76 /* tif_dirinfo.c in Sources */, D51B3389209E370489078892 /* tif_dirread.c in Sources */, - E7F35B834A163C67B65176C7 /* tif_dirwrite.c in Sources */, - 2D4D105CA9BE3FA6995A6001 /* tif_dumpmode.c in Sources */, + E7F35B834A163C67B65176C8 /* tif_dirwrite.c in Sources */, + 2D4D105CA9BE3FA6995A5FFF /* tif_dumpmode.c in Sources */, C2CF6B59914A3183ADE84028 /* tif_error.c in Sources */, - 2315C8692C443ED1AE431728 /* tif_extension.c in Sources */, - FECC98B53C0F3106AB04E69E /* tif_fax3.c in Sources */, + 2315C8692C443ED1AE431729 /* tif_extension.c in Sources */, + FECC98B53C0F3106AB04E6A0 /* tif_fax3.c in Sources */, 2C53221A318E37529E6460EC /* tif_fax3sm.c in Sources */, - 522E6CF2A62F34259BCE2DE4 /* tif_flush.c in Sources */, + 522E6CF2A62F34259BCE2DE3 /* tif_flush.c in Sources */, 6944AC98F6F83E3D983DABD5 /* tif_getimage.c in Sources */, - CB46C7E531903700ADFB11C8 /* tif_jbig.c in Sources */, + CB46C7E531903700ADFB11C9 /* tif_jbig.c in Sources */, 07C769F64665317BA3E1AC90 /* tif_jpeg.c in Sources */, 09A792A5129E3FE1BF077643 /* tif_jpeg_12.c in Sources */, 88A43B1C5A7438838DE97B96 /* tif_luv.c in Sources */, - DC928C38CA8331F18FF00BCC /* tif_lzma.c in Sources */, + DC928C38CA8331F18FF00BCD /* tif_lzma.c in Sources */, 779D3480141B3683A6D132BF /* tif_lzw.c in Sources */, - F85D632964383F29BC3B30B6 /* tif_next.c in Sources */, - 64F11C549E3035DF85691060 /* tif_ojpeg.c in Sources */, - 793F542F20AB31F6AF736797 /* tif_open.c in Sources */, - A9A5973552EE30838306D15E /* tif_packbits.c in Sources */, - 64DD406C453D39FEBBE66ED2 /* tif_pixarlog.c in Sources */, - 9A178ED42D96329D8CBF9B89 /* tif_predict.c in Sources */, - 570FA90F526E3F25A8E8FCF2 /* tif_read.c in Sources */, - 912C69ADB1673ACEB0E6CF08 /* tif_strip.c in Sources */, - 552708E6296D33EBB5F6A494 /* tif_swab.c in Sources */, + F85D632964383F29BC3B30B7 /* tif_next.c in Sources */, + 64F11C549E3035DF85691062 /* tif_ojpeg.c in Sources */, + 793F542F20AB31F6AF736796 /* tif_open.c in Sources */, + A9A5973552EE30838306D15C /* tif_packbits.c in Sources */, + 64DD406C453D39FEBBE66ED3 /* tif_pixarlog.c in Sources */, + 9A178ED42D96329D8CBF9B8A /* tif_predict.c in Sources */, + 570FA90F526E3F25A8E8FCF3 /* tif_read.c in Sources */, + 912C69ADB1673ACEB0E6CF0A /* tif_strip.c in Sources */, + 552708E6296D33EBB5F6A493 /* tif_swab.c in Sources */, 527054445A0D3A00A5C2EC46 /* tif_thunder.c in Sources */, FEB073547F3F3AC19D31F698 /* tif_tile.c in Sources */, - 096BA201623034AD97218368 /* tif_version.c in Sources */, + 096BA201623034AD97218369 /* tif_version.c in Sources */, 7A79D9AC608E3B8287229176 /* tif_warning.c in Sources */, - D772334837693C9D88069D99 /* tif_webp.c in Sources */, - F2F2963D8ECC32D39FDBF101 /* tif_write.c in Sources */, - 6E2C2E8AA1713ADE9C33837B /* tif_zip.c in Sources */, - 6C1171E3FB7137CCB9E3F536 /* tif_zstd.c in Sources */, - 5D3AD309AF39385EBF7D9DF8 /* jaricom.c in Sources */, - 894D43C8F224394FB3171F26 /* jcapimin.c in Sources */, - 743BB23211B336A6A0F26E57 /* jcapistd.c in Sources */, - 7EB83F6375BF3E73ABE56C42 /* jcarith.c in Sources */, - CA5BD8ABDBA13641BBE7CD68 /* jccoefct.c in Sources */, + D772334837693C9D88069D98 /* tif_webp.c in Sources */, + F2F2963D8ECC32D39FDBF102 /* tif_write.c in Sources */, + 6E2C2E8AA1713ADE9C338379 /* tif_zip.c in Sources */, + 6C1171E3FB7137CCB9E3F538 /* tif_zstd.c in Sources */, + 5D3AD309AF39385EBF7D9DF9 /* jaricom.c in Sources */, + 894D43C8F224394FB3171F27 /* jcapimin.c in Sources */, + 743BB23211B336A6A0F26E59 /* jcapistd.c in Sources */, + 7EB83F6375BF3E73ABE56C40 /* jcarith.c in Sources */, + CA5BD8ABDBA13641BBE7CD67 /* jccoefct.c in Sources */, 11DD420E32FB3EFB9DA0AB5D /* jccolor.c in Sources */, BFA6983551B4310DA7C8A405 /* jcdctmgr.c in Sources */, BDB7B2AD26CB356B8BEAAECD /* jchuff.c in Sources */, 86003C8EB906304F9025F78A /* jcinit.c in Sources */, - 98DF13E96160304EBB905E73 /* jcmainct.c in Sources */, - DB73248401573A5996D8E68E /* jcmarker.c in Sources */, - C6DF6F29407B34F29ED1B66D /* jcmaster.c in Sources */, - FCE5B139CBE73FCB804EF7DD /* jcomapi.c in Sources */, - ACD644CFA85A3B70A3E3B11A /* jcparam.c in Sources */, - 32486A808EBC3E088598D51C /* jcprepct.c in Sources */, - 50D7E093424138C88BB50D27 /* jcsample.c in Sources */, + 98DF13E96160304EBB905E74 /* jcmainct.c in Sources */, + DB73248401573A5996D8E68F /* jcmarker.c in Sources */, + C6DF6F29407B34F29ED1B66F /* jcmaster.c in Sources */, + FCE5B139CBE73FCB804EF7DE /* jcomapi.c in Sources */, + ACD644CFA85A3B70A3E3B118 /* jcparam.c in Sources */, + 32486A808EBC3E088598D51D /* jcprepct.c in Sources */, + 50D7E093424138C88BB50D29 /* jcsample.c in Sources */, CCE4ECA9CE883B008065C6FD /* jctrans.c in Sources */, - 8B9C9FCB954F3596A4CED9A5 /* jdapimin.c in Sources */, - 67EBCE5FA5FF36349ADF0917 /* jdapistd.c in Sources */, + 8B9C9FCB954F3596A4CED9A6 /* jdapimin.c in Sources */, + 67EBCE5FA5FF36349ADF0916 /* jdapistd.c in Sources */, 8093A858CA9E3E9EA2D21860 /* jdarith.c in Sources */, - 76A83A293C9F33BCB7DFDE28 /* jdatadst.c in Sources */, + 76A83A293C9F33BCB7DFDE27 /* jdatadst.c in Sources */, 4CB3626391CE34D4B1F71AA1 /* jdatasrc.c in Sources */, B5470121BB4B35DE9C4836DB /* jdcoefct.c in Sources */, - D9F02AFDA07D3857A905527C /* jdcolor.c in Sources */, - 13854E7822783719A2530793 /* jddctmgr.c in Sources */, - 28ADE8D385A53445A5451F24 /* jdhuff.c in Sources */, - 14EF556997B0350F931EBE8E /* jdinput.c in Sources */, - 9FD99E06F6613A1A958FAF6C /* jdmainct.c in Sources */, - 61C3F7D495FB3E8BA402E4FA /* jdmarker.c in Sources */, - CEBAAB0C77983358A601C000 /* jdmaster.c in Sources */, - 1E4832B42B95308299B767BA /* jdmerge.c in Sources */, - E7D02E64384F37BC8939A2C6 /* jdpostct.c in Sources */, - D997FFC948B73FDA892DB533 /* jdsample.c in Sources */, - 11818B68C5263EB68D708845 /* jdtrans.c in Sources */, - DE26572475EE336B8EEA5D94 /* jerror.c in Sources */, + D9F02AFDA07D3857A905527E /* jdcolor.c in Sources */, + 13854E7822783719A2530794 /* jddctmgr.c in Sources */, + 28ADE8D385A53445A5451F25 /* jdhuff.c in Sources */, + 14EF556997B0350F931EBE90 /* jdinput.c in Sources */, + 9FD99E06F6613A1A958FAF6B /* jdmainct.c in Sources */, + 61C3F7D495FB3E8BA402E4F8 /* jdmarker.c in Sources */, + CEBAAB0C77983358A601BFFF /* jdmaster.c in Sources */, + 1E4832B42B95308299B767B9 /* jdmerge.c in Sources */, + E7D02E64384F37BC8939A2C5 /* jdpostct.c in Sources */, + D997FFC948B73FDA892DB532 /* jdsample.c in Sources */, + 11818B68C5263EB68D708846 /* jdtrans.c in Sources */, + DE26572475EE336B8EEA5D93 /* jerror.c in Sources */, 0948599C4FD53611A09B52AB /* jfdctflt.c in Sources */, 9B3F9D04FB533D99B58BD519 /* jfdctfst.c in Sources */, CEC6430AEB6E3200BFA75D09 /* jfdctint.c in Sources */, B01C4EF49CF9390DA93A3504 /* jidctflt.c in Sources */, - 48A1F28E04603A68A1E70318 /* jidctfst.c in Sources */, + 48A1F28E04603A68A1E7031A /* jidctfst.c in Sources */, C43A9650A9DC3372AB8F5F7A /* jidctint.c in Sources */, - 18A318847EAC37F2B915F081 /* jmemmgr.c in Sources */, + 18A318847EAC37F2B915F083 /* jmemmgr.c in Sources */, A7692B4D8658347BA16EEB85 /* jmemnobs.c in Sources */, 15D65A523EB23EC385C05E0B /* jquant1.c in Sources */, - 3C0EB1DDA5243E31B2D92CE4 /* jquant2.c in Sources */, - 311840186794346AAAA42093 /* jutils.c in Sources */, - 94B1C88076793400810FAC31 /* png.c in Sources */, + 3C0EB1DDA5243E31B2D92CE2 /* jquant2.c in Sources */, + 311840186794346AAAA42091 /* jutils.c in Sources */, + 94B1C88076793400810FAC30 /* png.c in Sources */, 1569BB4728693B6285623A25 /* pngerror.c in Sources */, - D9496139621533328AE727B6 /* pngget.c in Sources */, + D9496139621533328AE727B7 /* pngget.c in Sources */, CFA91122523B31B9A07A3826 /* pngmem.c in Sources */, - 9EC837DA722736119D49868C /* pngpread.c in Sources */, + 9EC837DA722736119D49868A /* pngpread.c in Sources */, 9B8E5690A6103FC1BDC6C47F /* pngread.c in Sources */, 31FEAB56919D372993CAD89C /* pngrio.c in Sources */, - 8FDC800D873F30E282691832 /* pngrtran.c in Sources */, + 8FDC800D873F30E282691833 /* pngrtran.c in Sources */, 61A2B54FD2E33C759CF5A5E9 /* pngrutil.c in Sources */, - 309C0A78D45C3AB7B8778B59 /* pngset.c in Sources */, - E515EAE375AE390688CBF8D4 /* pngtrans.c in Sources */, - C8C68927DB243AEAB51E11F3 /* pngwio.c in Sources */, - 0095084719983B878378CA28 /* pngwrite.c in Sources */, - 242E1D1A9BF331BA918134ED /* pngwtran.c in Sources */, - 2989056891153968B372EA15 /* pngwutil.c in Sources */, - BB12132A86E2350AA47414CC /* arm_init.c in Sources */, - 0F2FD12272023C869CE8600A /* filter_neon_intrinsics.c in Sources */, - 86787E4138CC334BB74EC7B5 /* palette_neon_intrinsics.c in Sources */, + 309C0A78D45C3AB7B8778B5B /* pngset.c in Sources */, + E515EAE375AE390688CBF8D5 /* pngtrans.c in Sources */, + C8C68927DB243AEAB51E11F2 /* pngwio.c in Sources */, + 0095084719983B878378CA29 /* pngwrite.c in Sources */, + 242E1D1A9BF331BA918134EC /* pngwtran.c in Sources */, + 2989056891153968B372EA14 /* pngwutil.c in Sources */, + BB12132A86E2350AA47414CD /* arm_init.c in Sources */, + 0F2FD12272023C869CE86008 /* filter_neon_intrinsics.c in Sources */, + 86787E4138CC334BB74EC7B4 /* palette_neon_intrinsics.c in Sources */, 25B0940CABAB39CD90C6F3C7 /* intel_init.c in Sources */, - 8620088DDD233B139B250DD5 /* filter_sse2_intrinsics.c in Sources */, + 8620088DDD233B139B250DD4 /* filter_sse2_intrinsics.c in Sources */, 9FA6C4275F0D3E1A884ED562 /* pcre2_auto_possess.c in Sources */, - 6463C9BE78C0394CB7B451FA /* pcre2_compile.c in Sources */, + 6463C9BE78C0394CB7B451FB /* pcre2_compile.c in Sources */, D7F14BDFFB7F369B842AFC13 /* pcre2_config.c in Sources */, 27B5431DC79733CD8D403E8A /* pcre2_context.c in Sources */, - EB206A0264AD3CAA9F68B8FD /* pcre2_convert.c in Sources */, - 45E15DBB6B69382D8AF1BA23 /* pcre2_dfa_match.c in Sources */, - 2F7328AC75393951B08F75F1 /* pcre2_error.c in Sources */, + EB206A0264AD3CAA9F68B8FC /* pcre2_convert.c in Sources */, + 45E15DBB6B69382D8AF1BA22 /* pcre2_dfa_match.c in Sources */, + 2F7328AC75393951B08F75F3 /* pcre2_error.c in Sources */, 5ED54DFAE28533108C08DF2B /* pcre2_extuni.c in Sources */, - C5C60B22CE6A3BCB868F69E8 /* pcre2_find_bracket.c in Sources */, - 57B41B6BACFB3906ACD1BFB0 /* pcre2_jit_compile.c in Sources */, - 7F62946D497A32CE857F65CA /* pcre2_maketables.c in Sources */, - 8C6E2BD9C31A3AE18AD17D44 /* pcre2_match.c in Sources */, - D66F55C93D1130F488970C06 /* pcre2_match_data.c in Sources */, - 00E12455C98032E18378EE5E /* pcre2_newline.c in Sources */, - 10B5C2A72C713A678458CD9E /* pcre2_ord2utf.c in Sources */, - 88E56F89A0DA3AD386F05FD4 /* pcre2_pattern_info.c in Sources */, - 1142E2D85FD93E9AB5D8A55C /* pcre2_script_run.c in Sources */, - 9E37D29DCF7A3945A0EECB39 /* pcre2_serialize.c in Sources */, + C5C60B22CE6A3BCB868F69EA /* pcre2_find_bracket.c in Sources */, + 57B41B6BACFB3906ACD1BFB1 /* pcre2_jit_compile.c in Sources */, + 7F62946D497A32CE857F65CB /* pcre2_maketables.c in Sources */, + 8C6E2BD9C31A3AE18AD17D46 /* pcre2_match.c in Sources */, + D66F55C93D1130F488970C05 /* pcre2_match_data.c in Sources */, + 00E12455C98032E18378EE5F /* pcre2_newline.c in Sources */, + 10B5C2A72C713A678458CD9D /* pcre2_ord2utf.c in Sources */, + 88E56F89A0DA3AD386F05FD3 /* pcre2_pattern_info.c in Sources */, + 1142E2D85FD93E9AB5D8A55B /* pcre2_script_run.c in Sources */, + 9E37D29DCF7A3945A0EECB3A /* pcre2_serialize.c in Sources */, DFEB01E7B97A3515B785DCA9 /* pcre2_string_utils.c in Sources */, - 60296753A32B39EB8BD0CB45 /* pcre2_study.c in Sources */, - A4DEBFA074C93388A1BBCB41 /* pcre2_substitute.c in Sources */, - B6728BCD1A0731299924C8C4 /* pcre2_substring.c in Sources */, + 60296753A32B39EB8BD0CB44 /* pcre2_study.c in Sources */, + A4DEBFA074C93388A1BBCB40 /* pcre2_substitute.c in Sources */, + B6728BCD1A0731299924C8C6 /* pcre2_substring.c in Sources */, 2047544E505C3BA38F0144E8 /* pcre2_tables.c in Sources */, - 8B87FEC23DB834EDBFB6EA32 /* pcre2_ucd.c in Sources */, - E17048DEEF1138318314F1D1 /* pcre2_valid_utf.c in Sources */, - AF1875145B2537298E4A28D8 /* pcre2_xclass.c in Sources */, + 8B87FEC23DB834EDBFB6EA34 /* pcre2_ucd.c in Sources */, + E17048DEEF1138318314F1D0 /* pcre2_valid_utf.c in Sources */, + AF1875145B2537298E4A28D9 /* pcre2_xclass.c in Sources */, 7BD3887F603E3704969A54E1 /* pcre2_chartables.c in Sources */, E741CDA71895344C974D8F51 /* AutoComplete.cxx in Sources */, E92EB502F79638B0BE569EF5 /* CallTip.cxx in Sources */, - B97C178B47173E6AB0CE577B /* CaseConvert.cxx in Sources */, - 86B0D280A43C308CAC14BE24 /* CaseFolder.cxx in Sources */, - 682403FBBD4E3D5E88159503 /* CellBuffer.cxx in Sources */, - 1D7442C82B343F50A83B25B2 /* CharClassify.cxx in Sources */, - DF861EBD9C483E79ADF98602 /* CharacterCategory.cxx in Sources */, + B97C178B47173E6AB0CE577D /* CaseConvert.cxx in Sources */, + 86B0D280A43C308CAC14BE25 /* CaseFolder.cxx in Sources */, + 682403FBBD4E3D5E88159502 /* CellBuffer.cxx in Sources */, + 1D7442C82B343F50A83B25B1 /* CharClassify.cxx in Sources */, + DF861EBD9C483E79ADF98604 /* CharacterCategory.cxx in Sources */, 13A71672A59233D3A9B2D5EB /* CharacterSet.cxx in Sources */, - 6BC8B3EDB3AE3EF4BACFC08A /* ContractionState.cxx in Sources */, + 6BC8B3EDB3AE3EF4BACFC08B /* ContractionState.cxx in Sources */, 895E7FE46F733C75AE8847E3 /* DBCS.cxx in Sources */, - 90BC965B1A1F35A3B2C9D1C9 /* Decoration.cxx in Sources */, + 90BC965B1A1F35A3B2C9D1CA /* Decoration.cxx in Sources */, 0D6596A44A8C37DE85D578F8 /* Document.cxx in Sources */, - DD1B139EA5AD3F6DB92C0FAA /* EditModel.cxx in Sources */, + DD1B139EA5AD3F6DB92C0FA8 /* EditModel.cxx in Sources */, 3C665EA42ECC3E5990BA347C /* EditView.cxx in Sources */, - 6D723C987BFB39B7B887DCB2 /* Editor.cxx in Sources */, - 0B4AF44DC0C439AD83CDC37F /* Indicator.cxx in Sources */, + 6D723C987BFB39B7B887DCB3 /* Editor.cxx in Sources */, + 0B4AF44DC0C439AD83CDC37E /* Indicator.cxx in Sources */, C8F1FB8C029031A5909DBC58 /* KeyMap.cxx in Sources */, - 923F4797A73A3BDD87BBD1E1 /* LineMarker.cxx in Sources */, - EE6474BBB4AF34D093E2451F /* MarginView.cxx in Sources */, + 923F4797A73A3BDD87BBD1E2 /* LineMarker.cxx in Sources */, + EE6474BBB4AF34D093E2451D /* MarginView.cxx in Sources */, 523FB2A8435A3324A8E1B372 /* PerLine.cxx in Sources */, - BF068F3C06473D8CBC55D509 /* PositionCache.cxx in Sources */, - A52A7D2FEB1434E29C64582D /* RESearch.cxx in Sources */, - 7B372FEA276438C186F7E342 /* RunStyles.cxx in Sources */, - 15735ED6556130F6A14F0BCF /* ScintillaBase.cxx in Sources */, + BF068F3C06473D8CBC55D507 /* PositionCache.cxx in Sources */, + A52A7D2FEB1434E29C64582E /* RESearch.cxx in Sources */, + 7B372FEA276438C186F7E341 /* RunStyles.cxx in Sources */, + 15735ED6556130F6A14F0BCE /* ScintillaBase.cxx in Sources */, 097BC5E023C33C1DA05606B1 /* Selection.cxx in Sources */, - 4C9BA36123E43589956864C6 /* Style.cxx in Sources */, - 19D823E564D932758EA6F8D1 /* UniConversion.cxx in Sources */, - 4DA9DE940E043C58BEACBB56 /* UniqueString.cxx in Sources */, - 699D88EE2DAA3594B6606891 /* ViewStyle.cxx in Sources */, - BCDAE378D03E37F5994FB9C6 /* XPM.cxx in Sources */, - B60AD651E0523DB7B31E4108 /* LexillaAccess.cxx in Sources */, - 23CECD8647C037E0B41DF0D5 /* LexA68k.cxx in Sources */, - 0654BCC3F0763C50A7949506 /* LexAPDL.cxx in Sources */, - 0ADC8DBEE80D36B0BB9B058B /* LexASY.cxx in Sources */, + 4C9BA36123E43589956864C7 /* Style.cxx in Sources */, + 19D823E564D932758EA6F8D3 /* UniConversion.cxx in Sources */, + 4DA9DE940E043C58BEACBB57 /* UniqueString.cxx in Sources */, + 699D88EE2DAA3594B6606892 /* ViewStyle.cxx in Sources */, + BCDAE378D03E37F5994FB9C5 /* XPM.cxx in Sources */, + B60AD651E0523DB7B31E4107 /* LexillaAccess.cxx in Sources */, + 23CECD8647C037E0B41DF0D4 /* LexA68k.cxx in Sources */, + 0654BCC3F0763C50A7949504 /* LexAPDL.cxx in Sources */, + 0ADC8DBEE80D36B0BB9B058A /* LexASY.cxx in Sources */, 784F7C50882F320FA76537B7 /* LexAU3.cxx in Sources */, 07EC76232BB3343FA5CB90B1 /* LexAVE.cxx in Sources */, 5519BA1F2463308FAC4A0CA1 /* LexAVS.cxx in Sources */, - 66FD099CE5A338C18329FC38 /* LexAbaqus.cxx in Sources */, - CD35A576FD363FD49C3AC4B3 /* LexAda.cxx in Sources */, + 66FD099CE5A338C18329FC36 /* LexAbaqus.cxx in Sources */, + CD35A576FD363FD49C3AC4B5 /* LexAda.cxx in Sources */, 3DA70DE666D838A59642A4E6 /* LexAsciidoc.cxx in Sources */, - 0C3F48DBD05E3566A4CA6D45 /* LexAsm.cxx in Sources */, - 825EAD51920B387DB4F8C426 /* LexAsn1.cxx in Sources */, + 0C3F48DBD05E3566A4CA6D46 /* LexAsm.cxx in Sources */, + 825EAD51920B387DB4F8C427 /* LexAsn1.cxx in Sources */, D54D3CA9E73336A08DB20705 /* LexBaan.cxx in Sources */, 39FB197CF9EB3D76BE0723CF /* LexBash.cxx in Sources */, - 6C7C1CC506CB329FB2D086AA /* LexBasic.cxx in Sources */, - 12B1DEF410AB34999AB210DB /* LexBatch.cxx in Sources */, - C92005CB86C6361BBB9D7C67 /* LexBibTeX.cxx in Sources */, - 78E15D8200F635529F396099 /* LexBullant.cxx in Sources */, + 6C7C1CC506CB329FB2D086AB /* LexBasic.cxx in Sources */, + 12B1DEF410AB34999AB210DC /* LexBatch.cxx in Sources */, + C92005CB86C6361BBB9D7C69 /* LexBibTeX.cxx in Sources */, + 78E15D8200F635529F39609A /* LexBullant.cxx in Sources */, 0C2073A011EA36B8AD906DA4 /* LexCIL.cxx in Sources */, - 6F472413FFA03B53B395BB74 /* LexCLW.cxx in Sources */, - D8ADDD24BEAC3D94B3388D40 /* LexCOBOL.cxx in Sources */, - A0FCE3CF565C3F84B63712AD /* LexCPP.cxx in Sources */, - 069D53F2DFBF370A8CC99632 /* LexCSS.cxx in Sources */, - 268DDC88C99A3A64AB8B2FFA /* LexCaml.cxx in Sources */, - 6F5A0D3C7763334396A3783D /* LexCmake.cxx in Sources */, + 6F472413FFA03B53B395BB75 /* LexCLW.cxx in Sources */, + D8ADDD24BEAC3D94B3388D3F /* LexCOBOL.cxx in Sources */, + A0FCE3CF565C3F84B63712AE /* LexCPP.cxx in Sources */, + 069D53F2DFBF370A8CC99631 /* LexCSS.cxx in Sources */, + 268DDC88C99A3A64AB8B2FFC /* LexCaml.cxx in Sources */, + 6F5A0D3C7763334396A3783F /* LexCmake.cxx in Sources */, 2020EE3C45743B53BE8C7F39 /* LexCoffeeScript.cxx in Sources */, B640A8A74D973A8FBEF63916 /* LexConf.cxx in Sources */, - 97F60B2A9CE93BC8949A8CCE /* LexCrontab.cxx in Sources */, - 834F2ADD0520313FBAC4F929 /* LexCsound.cxx in Sources */, - 8FB5FBC5730C33F1A3D85D9F /* LexD.cxx in Sources */, - 0B792C3F31713850818EEFEB /* LexDMAP.cxx in Sources */, - DC5F82733F733D98B39DE74E /* LexDMIS.cxx in Sources */, - 0C2CBD7246993527A829BD94 /* LexDataflex.cxx in Sources */, - 51F44CB1D9AD3CBDB52EE93F /* LexDiff.cxx in Sources */, + 97F60B2A9CE93BC8949A8CCD /* LexCrontab.cxx in Sources */, + 834F2ADD0520313FBAC4F928 /* LexCsound.cxx in Sources */, + 8FB5FBC5730C33F1A3D85DA0 /* LexD.cxx in Sources */, + 0B792C3F31713850818EEFEA /* LexDMAP.cxx in Sources */, + DC5F82733F733D98B39DE74F /* LexDMIS.cxx in Sources */, + 0C2CBD7246993527A829BD95 /* LexDataflex.cxx in Sources */, + 51F44CB1D9AD3CBDB52EE93E /* LexDiff.cxx in Sources */, AAC2AC9C49F1366D8BD20F5F /* LexECL.cxx in Sources */, 67CE7065EE593DAAA2CE448B /* LexEDIFACT.cxx in Sources */, - 4788F736CD9C324E8A3DFA74 /* LexEScript.cxx in Sources */, + 4788F736CD9C324E8A3DFA75 /* LexEScript.cxx in Sources */, E8BBC08597EF383597DA0309 /* LexEiffel.cxx in Sources */, BFD3BFBDC8DA3B1EAD141F96 /* LexErlang.cxx in Sources */, - 8D6B0D48EA843E48AB0FE43F /* LexErrorList.cxx in Sources */, - 512AB7B82D57387EBB7BEE29 /* LexFSharp.cxx in Sources */, - 45D88A74B3EE3837B9F79595 /* LexFlagship.cxx in Sources */, - 27759C2FBB0E35FDA847B2B7 /* LexForth.cxx in Sources */, - 020BBB417207393F8C60EFB8 /* LexFortran.cxx in Sources */, + 8D6B0D48EA843E48AB0FE43D /* LexErrorList.cxx in Sources */, + 512AB7B82D57387EBB7BEE27 /* LexFSharp.cxx in Sources */, + 45D88A74B3EE3837B9F79597 /* LexFlagship.cxx in Sources */, + 27759C2FBB0E35FDA847B2B6 /* LexForth.cxx in Sources */, + 020BBB417207393F8C60EFB7 /* LexFortran.cxx in Sources */, E62F8E49FD5035D8BC71BB4A /* LexGAP.cxx in Sources */, 807450BB072C3C0D9C52A3B7 /* LexGDScript.cxx in Sources */, - 9B6A35E706543CDAA6A5014B /* LexGui4Cli.cxx in Sources */, - AEEE6BC41B6531898A61CB18 /* LexHTML.cxx in Sources */, + 9B6A35E706543CDAA6A5014A /* LexGui4Cli.cxx in Sources */, + AEEE6BC41B6531898A61CB17 /* LexHTML.cxx in Sources */, 51D133EC44F830588FEEAEC1 /* LexHaskell.cxx in Sources */, - D98FABF75BCE3AF18C91B42E /* LexHex.cxx in Sources */, + D98FABF75BCE3AF18C91B42F /* LexHex.cxx in Sources */, D948CC99521633338B24E2F5 /* LexHollywood.cxx in Sources */, - 4D9368BD07F131C493232E2E /* LexIndent.cxx in Sources */, - B37802B0A90133C68EF93DDB /* LexInno.cxx in Sources */, + 4D9368BD07F131C493232E2D /* LexIndent.cxx in Sources */, + B37802B0A90133C68EF93DDC /* LexInno.cxx in Sources */, B0C44C3054CB3E0590DDCBDC /* LexJSON.cxx in Sources */, - 4C31B77B28343F20B4973367 /* LexJulia.cxx in Sources */, - E3AD8574E13B39BDB8D4E930 /* LexKVIrc.cxx in Sources */, - 14C024EB327435A2A571DA2E /* LexKix.cxx in Sources */, + 4C31B77B28343F20B4973368 /* LexJulia.cxx in Sources */, + E3AD8574E13B39BDB8D4E92F /* LexKVIrc.cxx in Sources */, + 14C024EB327435A2A571DA2C /* LexKix.cxx in Sources */, 62331487C17B32E081B8FEA7 /* LexLaTeX.cxx in Sources */, - DF8124E5E17D386A84CEEA28 /* LexLisp.cxx in Sources */, - D13AE659C3AC37B68D39B2CA /* LexLout.cxx in Sources */, - 9D003890CB7035A298DB7058 /* LexLua.cxx in Sources */, + DF8124E5E17D386A84CEEA29 /* LexLisp.cxx in Sources */, + D13AE659C3AC37B68D39B2CB /* LexLout.cxx in Sources */, + 9D003890CB7035A298DB7056 /* LexLua.cxx in Sources */, 3C394FBD47B6310C80577E3D /* LexMMIXAL.cxx in Sources */, - EC43AFB3670A3D459D9B388F /* LexMPT.cxx in Sources */, - E8EE34F0A78C31B489B19FF0 /* LexMSSQL.cxx in Sources */, - E80BEED62EBF34F09B3F4021 /* LexMagik.cxx in Sources */, - 4301AFBA0A193A7EB392EB92 /* LexMake.cxx in Sources */, + EC43AFB3670A3D459D9B388D /* LexMPT.cxx in Sources */, + E8EE34F0A78C31B489B19FEE /* LexMSSQL.cxx in Sources */, + E80BEED62EBF34F09B3F4020 /* LexMagik.cxx in Sources */, + 4301AFBA0A193A7EB392EB94 /* LexMake.cxx in Sources */, E0E40333B61C33B58787078E /* LexMarkdown.cxx in Sources */, - 5AEA6E94FB76371D928D371D /* LexMatlab.cxx in Sources */, - 4E712589FAA837F589B72F4D /* LexMaxima.cxx in Sources */, - 1A4F9F18BBEB3515AC7C7CC7 /* LexMetapost.cxx in Sources */, - 7CC211E10D853B958250A4CF /* LexModula.cxx in Sources */, + 5AEA6E94FB76371D928D371E /* LexMatlab.cxx in Sources */, + 4E712589FAA837F589B72F4C /* LexMaxima.cxx in Sources */, + 1A4F9F18BBEB3515AC7C7CC6 /* LexMetapost.cxx in Sources */, + 7CC211E10D853B958250A4D0 /* LexModula.cxx in Sources */, CB1F37993ECB3B73A51B42FF /* LexMySQL.cxx in Sources */, D3EC9191D94837CABFF05DC5 /* LexNim.cxx in Sources */, A874AF0B203D3DC99C27469A /* LexNimrod.cxx in Sources */, 22C76BF2C3E331CD87657E6F /* LexNsis.cxx in Sources */, A8476B3CE46B3FD4A2832F00 /* LexNull.cxx in Sources */, - 324B2BAC54553D45B3C56BFD /* LexOScript.cxx in Sources */, + 324B2BAC54553D45B3C56BFF /* LexOScript.cxx in Sources */, 76D1A1A49CC831FFB9EBB1F6 /* LexOpal.cxx in Sources */, - 24A5A71C79733E9CB913C5B8 /* LexPB.cxx in Sources */, + 24A5A71C79733E9CB913C5B9 /* LexPB.cxx in Sources */, 0D79F1B4EF44393AA324213F /* LexPLM.cxx in Sources */, FD3B31CE1E7832218B5D9A15 /* LexPO.cxx in Sources */, - A3C4D47A84E8362295867526 /* LexPOV.cxx in Sources */, + A3C4D47A84E8362295867527 /* LexPOV.cxx in Sources */, 551BF168445E3D7BB54D0175 /* LexPS.cxx in Sources */, - 0718E7524134312090541D70 /* LexPascal.cxx in Sources */, - 369BCCFF61D13A058D837837 /* LexPerl.cxx in Sources */, - 22EC132AEF863BFBAA6EDEC3 /* LexPowerPro.cxx in Sources */, - 1FB1622D59593932B25C55BA /* LexPowerShell.cxx in Sources */, - 97C551F8AEF133D680D1FD38 /* LexProgress.cxx in Sources */, - 56E1ED31F7CE38978F4A7CA1 /* LexProps.cxx in Sources */, - A36B5107860E32659194073F /* LexPython.cxx in Sources */, + 0718E7524134312090541D6E /* LexPascal.cxx in Sources */, + 369BCCFF61D13A058D837836 /* LexPerl.cxx in Sources */, + 22EC132AEF863BFBAA6EDEC4 /* LexPowerPro.cxx in Sources */, + 1FB1622D59593932B25C55BB /* LexPowerShell.cxx in Sources */, + 97C551F8AEF133D680D1FD36 /* LexProgress.cxx in Sources */, + 56E1ED31F7CE38978F4A7CA0 /* LexProps.cxx in Sources */, + A36B5107860E326591940741 /* LexPython.cxx in Sources */, 31380AD4F5BD38A6B9212FE0 /* LexR.cxx in Sources */, - 81244C52741332A8B92E5976 /* LexRaku.cxx in Sources */, - CCFD3144A22C3A87B67D88AC /* LexRebol.cxx in Sources */, - 3694B007E88A3D8C8CB952F0 /* LexRegistry.cxx in Sources */, - 7C20B79175D33852A2E9DE85 /* LexRuby.cxx in Sources */, - 502D7B786EAE383B9546F31F /* LexRust.cxx in Sources */, - 1DD1888315513C24BF9C31B6 /* LexSAS.cxx in Sources */, - FE5B7C7A84B83C17A38E8403 /* LexSML.cxx in Sources */, - 71CCB06E790C3C54BFF1199D /* LexSQL.cxx in Sources */, - E46BEC5C8D643BD099AF1D58 /* LexSTTXT.cxx in Sources */, - BA9F0BBD57F63FD29E484FD5 /* LexScriptol.cxx in Sources */, + 81244C52741332A8B92E5978 /* LexRaku.cxx in Sources */, + CCFD3144A22C3A87B67D88AB /* LexRebol.cxx in Sources */, + 3694B007E88A3D8C8CB952F2 /* LexRegistry.cxx in Sources */, + 7C20B79175D33852A2E9DE84 /* LexRuby.cxx in Sources */, + 502D7B786EAE383B9546F321 /* LexRust.cxx in Sources */, + 1DD1888315513C24BF9C31B5 /* LexSAS.cxx in Sources */, + FE5B7C7A84B83C17A38E8404 /* LexSML.cxx in Sources */, + 71CCB06E790C3C54BFF1199E /* LexSQL.cxx in Sources */, + E46BEC5C8D643BD099AF1D56 /* LexSTTXT.cxx in Sources */, + BA9F0BBD57F63FD29E484FD3 /* LexScriptol.cxx in Sources */, F55F3887CDE633D7877C607B /* LexSmalltalk.cxx in Sources */, - D5C5DD83882B3227A1CCFE0E /* LexSorcus.cxx in Sources */, + D5C5DD83882B3227A1CCFE10 /* LexSorcus.cxx in Sources */, 6F8129E317EE3486A89D8549 /* LexSpecman.cxx in Sources */, - 9678C2B19D293818AA8E9E0E /* LexSpice.cxx in Sources */, - 444D3B969B4336E8AD5CCFC1 /* LexStata.cxx in Sources */, - 0F8C79010EF0316AA1B7392D /* LexTACL.cxx in Sources */, - 2102C23970FB3F22AB46A59A /* LexTADS3.cxx in Sources */, - CAF5C5BB129431B596C4C6C2 /* LexTAL.cxx in Sources */, - 49BEDFBC3661339D90EF6937 /* LexTCL.cxx in Sources */, + 9678C2B19D293818AA8E9E0D /* LexSpice.cxx in Sources */, + 444D3B969B4336E8AD5CCFC0 /* LexStata.cxx in Sources */, + 0F8C79010EF0316AA1B7392F /* LexTACL.cxx in Sources */, + 2102C23970FB3F22AB46A59B /* LexTADS3.cxx in Sources */, + CAF5C5BB129431B596C4C6C3 /* LexTAL.cxx in Sources */, + 49BEDFBC3661339D90EF6935 /* LexTCL.cxx in Sources */, 697FC496816F33568E1FB5A6 /* LexTCMD.cxx in Sources */, - 7D0E549020D33ED39751DFC9 /* LexTeX.cxx in Sources */, + 7D0E549020D33ED39751DFCA /* LexTeX.cxx in Sources */, BA57708D2D563967A0D1F005 /* LexTxt2tags.cxx in Sources */, - D4EC9DB5F8DF319EA0FD26A5 /* LexVB.cxx in Sources */, - 16021CFD78623B8CBD08FC1F /* LexVHDL.cxx in Sources */, + D4EC9DB5F8DF319EA0FD26A4 /* LexVB.cxx in Sources */, + 16021CFD78623B8CBD08FC21 /* LexVHDL.cxx in Sources */, 3C5E1A45A57B3169A4C073D9 /* LexVerilog.cxx in Sources */, 9CC92BB4B0E233A0A7F8127A /* LexVisualProlog.cxx in Sources */, - 5E80C103F0853788A2B43E5D /* LexX12.cxx in Sources */, - 159E4248CB1333AD841D9F03 /* LexYAML.cxx in Sources */, - 91364FDD73053139BBAA313D /* Accessor.cxx in Sources */, + 5E80C103F0853788A2B43E5E /* LexX12.cxx in Sources */, + 159E4248CB1333AD841D9F05 /* LexYAML.cxx in Sources */, + 91364FDD73053139BBAA313C /* Accessor.cxx in Sources */, A08165E5D38E3EF6962A7AEB /* DefaultLexer.cxx in Sources */, A9B91FC69E473BE18895ABAD /* InList.cxx in Sources */, - D759231BC07232C0A52515A7 /* LexAccessor.cxx in Sources */, + D759231BC07232C0A52515A8 /* LexAccessor.cxx in Sources */, AA54EDC7C94730D1A31F05A0 /* LexCharacterCategory.cxx in Sources */, - A191AA29BDF83BB090A9DF50 /* LexCharacterSet.cxx in Sources */, - 46395873DB1C3B7FA81DE5FA /* LexerBase.cxx in Sources */, + A191AA29BDF83BB090A9DF51 /* LexCharacterSet.cxx in Sources */, + 46395873DB1C3B7FA81DE5F9 /* LexerBase.cxx in Sources */, DF3B927516FB365E865A9780 /* LexerModule.cxx in Sources */, - F6288F388B8C33FD85E9A156 /* LexerNoExceptions.cxx in Sources */, - 1C544DADDA6F3D62A5E25E94 /* LexerSimple.cxx in Sources */, - 7DEC57D6CE8232A09EF7421A /* PropSetSimple.cxx in Sources */, - CD241361D4693785A0B8939D /* StyleContext.cxx in Sources */, + F6288F388B8C33FD85E9A157 /* LexerNoExceptions.cxx in Sources */, + 1C544DADDA6F3D62A5E25E95 /* LexerSimple.cxx in Sources */, + 7DEC57D6CE8232A09EF74219 /* PropSetSimple.cxx in Sources */, + CD241361D4693785A0B8939F /* StyleContext.cxx in Sources */, 6C80B6049A523836BCD20BCB /* WordList.cxx in Sources */, - 46327A3C356D3570B27C6701 /* Lexilla.cxx in Sources */, - C2DEE063B5E032C1BD2B5026 /* xmlparse.c in Sources */, - AE84BC9A1CCA3ADA9C483950 /* xmlrole.c in Sources */, - DB9565CC4EAE3BCB9F490621 /* xmltok.c in Sources */, + 46327A3C356D3570B27C6703 /* Lexilla.cxx in Sources */, + C2DEE063B5E032C1BD2B5027 /* xmlparse.c in Sources */, + AE84BC9A1CCA3ADA9C483952 /* xmlrole.c in Sources */, + DB9565CC4EAE3BCB9F490620 /* xmltok.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9581,7 +9581,7 @@ buildActionMask = 2147483647; files = ( EEB0B28903693C7E9D071930 /* glcmn.cpp in Sources */, - 59F995B6E6EE3CA5A4487845 /* glcanvas.mm in Sources */, + 59F995B6E6EE3CA5A4487844 /* glcanvas.mm in Sources */, F2813BF297C73A3ABD02EC99 /* glcanvas_osx.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -9590,8 +9590,8 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 50E89226E8D7390D9D21C80B /* debugrpt.cpp in Sources */, - 7C5552FA058034238F485902 /* dbgrptg.cpp in Sources */, + 50E89226E8D7390D9D21C809 /* debugrpt.cpp in Sources */, + 7C5552FA058034238F485901 /* dbgrptg.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9601,7 +9601,7 @@ files = ( C2DEE063B5E032C1BD2B5028 /* xmlparse.c in Sources */, AE84BC9A1CCA3ADA9C483951 /* xmlrole.c in Sources */, - DB9565CC4EAE3BCB9F490620 /* xmltok.c in Sources */, + DB9565CC4EAE3BCB9F490622 /* xmltok.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9609,10 +9609,10 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5D3AD309AF39385EBF7D9DF9 /* jaricom.c in Sources */, - 894D43C8F224394FB3171F27 /* jcapimin.c in Sources */, + 5D3AD309AF39385EBF7D9DF8 /* jaricom.c in Sources */, + 894D43C8F224394FB3171F26 /* jcapimin.c in Sources */, 743BB23211B336A6A0F26E58 /* jcapistd.c in Sources */, - 7EB83F6375BF3E73ABE56C40 /* jcarith.c in Sources */, + 7EB83F6375BF3E73ABE56C42 /* jcarith.c in Sources */, CA5BD8ABDBA13641BBE7CD66 /* jccoefct.c in Sources */, 11DD420E32FB3EFB9DA0AB5C /* jccolor.c in Sources */, BFA6983551B4310DA7C8A406 /* jcdctmgr.c in Sources */, @@ -9620,41 +9620,41 @@ 86003C8EB906304F9025F789 /* jcinit.c in Sources */, 98DF13E96160304EBB905E75 /* jcmainct.c in Sources */, DB73248401573A5996D8E68D /* jcmarker.c in Sources */, - C6DF6F29407B34F29ED1B66F /* jcmaster.c in Sources */, + C6DF6F29407B34F29ED1B66E /* jcmaster.c in Sources */, FCE5B139CBE73FCB804EF7DF /* jcomapi.c in Sources */, - ACD644CFA85A3B70A3E3B118 /* jcparam.c in Sources */, - 32486A808EBC3E088598D51D /* jcprepct.c in Sources */, + ACD644CFA85A3B70A3E3B119 /* jcparam.c in Sources */, + 32486A808EBC3E088598D51E /* jcprepct.c in Sources */, 50D7E093424138C88BB50D28 /* jcsample.c in Sources */, - CCE4ECA9CE883B008065C6FC /* jctrans.c in Sources */, - 8B9C9FCB954F3596A4CED9A7 /* jdapimin.c in Sources */, - 67EBCE5FA5FF36349ADF0916 /* jdapistd.c in Sources */, + CCE4ECA9CE883B008065C6FB /* jctrans.c in Sources */, + 8B9C9FCB954F3596A4CED9A5 /* jdapimin.c in Sources */, + 67EBCE5FA5FF36349ADF0918 /* jdapistd.c in Sources */, 8093A858CA9E3E9EA2D21861 /* jdarith.c in Sources */, - 76A83A293C9F33BCB7DFDE27 /* jdatadst.c in Sources */, - 4CB3626391CE34D4B1F71AA0 /* jdatasrc.c in Sources */, - B5470121BB4B35DE9C4836DC /* jdcoefct.c in Sources */, - D9F02AFDA07D3857A905527E /* jdcolor.c in Sources */, + 76A83A293C9F33BCB7DFDE28 /* jdatadst.c in Sources */, + 4CB3626391CE34D4B1F71AA2 /* jdatasrc.c in Sources */, + B5470121BB4B35DE9C4836DA /* jdcoefct.c in Sources */, + D9F02AFDA07D3857A905527C /* jdcolor.c in Sources */, 13854E7822783719A2530792 /* jddctmgr.c in Sources */, 28ADE8D385A53445A5451F23 /* jdhuff.c in Sources */, - 14EF556997B0350F931EBE8F /* jdinput.c in Sources */, - 9FD99E06F6613A1A958FAF6D /* jdmainct.c in Sources */, - 61C3F7D495FB3E8BA402E4F8 /* jdmarker.c in Sources */, - CEBAAB0C77983358A601BFFE /* jdmaster.c in Sources */, - 1E4832B42B95308299B767B9 /* jdmerge.c in Sources */, + 14EF556997B0350F931EBE8E /* jdinput.c in Sources */, + 9FD99E06F6613A1A958FAF6C /* jdmainct.c in Sources */, + 61C3F7D495FB3E8BA402E4F9 /* jdmarker.c in Sources */, + CEBAAB0C77983358A601C000 /* jdmaster.c in Sources */, + 1E4832B42B95308299B767BB /* jdmerge.c in Sources */, E7D02E64384F37BC8939A2C4 /* jdpostct.c in Sources */, - D997FFC948B73FDA892DB532 /* jdsample.c in Sources */, + D997FFC948B73FDA892DB533 /* jdsample.c in Sources */, 11818B68C5263EB68D708847 /* jdtrans.c in Sources */, DE26572475EE336B8EEA5D92 /* jerror.c in Sources */, 0948599C4FD53611A09B52AC /* jfdctflt.c in Sources */, 9B3F9D04FB533D99B58BD51A /* jfdctfst.c in Sources */, CEC6430AEB6E3200BFA75D07 /* jfdctint.c in Sources */, B01C4EF49CF9390DA93A3502 /* jidctflt.c in Sources */, - 48A1F28E04603A68A1E7031A /* jidctfst.c in Sources */, + 48A1F28E04603A68A1E70318 /* jidctfst.c in Sources */, C43A9650A9DC3372AB8F5F79 /* jidctint.c in Sources */, - 18A318847EAC37F2B915F083 /* jmemmgr.c in Sources */, - A7692B4D8658347BA16EEB83 /* jmemnobs.c in Sources */, - 15D65A523EB23EC385C05E0C /* jquant1.c in Sources */, - 3C0EB1DDA5243E31B2D92CE2 /* jquant2.c in Sources */, - 311840186794346AAAA42091 /* jutils.c in Sources */, + 18A318847EAC37F2B915F082 /* jmemmgr.c in Sources */, + A7692B4D8658347BA16EEB84 /* jmemnobs.c in Sources */, + 15D65A523EB23EC385C05E0D /* jquant1.c in Sources */, + 3C0EB1DDA5243E31B2D92CE3 /* jquant2.c in Sources */, + 311840186794346AAAA42093 /* jutils.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9662,46 +9662,46 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 99E7A46106C03484BA70D29F /* tif_unix.c in Sources */, - 4E396D8D2E9138D797F320C6 /* tif_aux.c in Sources */, - 1EE845DDFDDE36CA8A218207 /* tif_close.c in Sources */, + 99E7A46106C03484BA70D29E /* tif_unix.c in Sources */, + 4E396D8D2E9138D797F320C7 /* tif_aux.c in Sources */, + 1EE845DDFDDE36CA8A218205 /* tif_close.c in Sources */, 8E674574343A3C009B1BCD02 /* tif_codec.c in Sources */, D95C5F467D37339AB8DF2356 /* tif_color.c in Sources */, - 6D073876E1753549B5EEFDDA /* tif_compress.c in Sources */, - E3136EF5DD843ACE886E286A /* tif_dir.c in Sources */, + 6D073876E1753549B5EEFDDC /* tif_compress.c in Sources */, + E3136EF5DD843ACE886E2869 /* tif_dir.c in Sources */, 7ECC6EE6D5273F75BB6B7B75 /* tif_dirinfo.c in Sources */, - D51B3389209E370489078893 /* tif_dirread.c in Sources */, - E7F35B834A163C67B65176C8 /* tif_dirwrite.c in Sources */, - 2D4D105CA9BE3FA6995A5FFF /* tif_dumpmode.c in Sources */, - C2CF6B59914A3183ADE8402A /* tif_error.c in Sources */, - 2315C8692C443ED1AE431729 /* tif_extension.c in Sources */, + D51B3389209E370489078891 /* tif_dirread.c in Sources */, + E7F35B834A163C67B65176C7 /* tif_dirwrite.c in Sources */, + 2D4D105CA9BE3FA6995A6000 /* tif_dumpmode.c in Sources */, + C2CF6B59914A3183ADE84029 /* tif_error.c in Sources */, + 2315C8692C443ED1AE43172A /* tif_extension.c in Sources */, FECC98B53C0F3106AB04E69F /* tif_fax3.c in Sources */, 2C53221A318E37529E6460ED /* tif_fax3sm.c in Sources */, - 522E6CF2A62F34259BCE2DE2 /* tif_flush.c in Sources */, - 6944AC98F6F83E3D983DABD3 /* tif_getimage.c in Sources */, - CB46C7E531903700ADFB11C9 /* tif_jbig.c in Sources */, + 522E6CF2A62F34259BCE2DE4 /* tif_flush.c in Sources */, + 6944AC98F6F83E3D983DABD4 /* tif_getimage.c in Sources */, + CB46C7E531903700ADFB11CA /* tif_jbig.c in Sources */, 07C769F64665317BA3E1AC92 /* tif_jpeg.c in Sources */, - 09A792A5129E3FE1BF077641 /* tif_jpeg_12.c in Sources */, + 09A792A5129E3FE1BF077642 /* tif_jpeg_12.c in Sources */, 88A43B1C5A7438838DE97B94 /* tif_luv.c in Sources */, - DC928C38CA8331F18FF00BCD /* tif_lzma.c in Sources */, + DC928C38CA8331F18FF00BCC /* tif_lzma.c in Sources */, 779D3480141B3683A6D132BE /* tif_lzw.c in Sources */, - F85D632964383F29BC3B30B7 /* tif_next.c in Sources */, + F85D632964383F29BC3B30B8 /* tif_next.c in Sources */, 64F11C549E3035DF85691061 /* tif_ojpeg.c in Sources */, - 793F542F20AB31F6AF736795 /* tif_open.c in Sources */, - A9A5973552EE30838306D15C /* tif_packbits.c in Sources */, - 64DD406C453D39FEBBE66ED3 /* tif_pixarlog.c in Sources */, - 9A178ED42D96329D8CBF9B8B /* tif_predict.c in Sources */, + 793F542F20AB31F6AF736797 /* tif_open.c in Sources */, + A9A5973552EE30838306D15E /* tif_packbits.c in Sources */, + 64DD406C453D39FEBBE66ED1 /* tif_pixarlog.c in Sources */, + 9A178ED42D96329D8CBF9B89 /* tif_predict.c in Sources */, 570FA90F526E3F25A8E8FCF4 /* tif_read.c in Sources */, - 912C69ADB1673ACEB0E6CF0A /* tif_strip.c in Sources */, - 552708E6296D33EBB5F6A493 /* tif_swab.c in Sources */, + 912C69ADB1673ACEB0E6CF08 /* tif_strip.c in Sources */, + 552708E6296D33EBB5F6A494 /* tif_swab.c in Sources */, 527054445A0D3A00A5C2EC45 /* tif_thunder.c in Sources */, FEB073547F3F3AC19D31F699 /* tif_tile.c in Sources */, - 096BA201623034AD97218369 /* tif_version.c in Sources */, + 096BA201623034AD9721836A /* tif_version.c in Sources */, 7A79D9AC608E3B8287229174 /* tif_warning.c in Sources */, - D772334837693C9D88069D98 /* tif_webp.c in Sources */, + D772334837693C9D88069D9A /* tif_webp.c in Sources */, F2F2963D8ECC32D39FDBF103 /* tif_write.c in Sources */, - 6E2C2E8AA1713ADE9C33837A /* tif_zip.c in Sources */, - 6C1171E3FB7137CCB9E3F537 /* tif_zstd.c in Sources */, + 6E2C2E8AA1713ADE9C33837B /* tif_zip.c in Sources */, + 6C1171E3FB7137CCB9E3F536 /* tif_zstd.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9709,21 +9709,21 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F5B0B26BD0803719A3FCB4D7 /* adler32.c in Sources */, + F5B0B26BD0803719A3FCB4D8 /* adler32.c in Sources */, BE3ED6EF34303867B8C8E924 /* compress.c in Sources */, AC07BA4EA5403443914DFDB1 /* crc32.c in Sources */, - 8DE45CEAF2DD3C22AA019F74 /* deflate.c in Sources */, + 8DE45CEAF2DD3C22AA019F75 /* deflate.c in Sources */, 213CE0DD5B2335D0AD53B54B /* gzclose.c in Sources */, 0E8A0B8FA40E365690C20231 /* gzlib.c in Sources */, - 4B996B4C54163D7091427DB6 /* gzread.c in Sources */, - 4E2737AC738431EB9898B8B8 /* gzwrite.c in Sources */, - 5EE94793DFCB3BA281A4864F /* infback.c in Sources */, - 10743B74A58231639C6BF611 /* inffast.c in Sources */, - 42AC484FDD7D3E948CEA801E /* inflate.c in Sources */, + 4B996B4C54163D7091427DB7 /* gzread.c in Sources */, + 4E2737AC738431EB9898B8B6 /* gzwrite.c in Sources */, + 5EE94793DFCB3BA281A4864E /* infback.c in Sources */, + 10743B74A58231639C6BF612 /* inffast.c in Sources */, + 42AC484FDD7D3E948CEA801D /* inflate.c in Sources */, 3813146434693234965C4F31 /* inftrees.c in Sources */, - 1CC5AEC6C08E3600801CDADC /* trees.c in Sources */, - 9C6E9E4BA54733EF9F87E4B9 /* uncompr.c in Sources */, - 42260A6F1853361083803B0C /* zutil.c in Sources */, + 1CC5AEC6C08E3600801CDADA /* trees.c in Sources */, + 9C6E9E4BA54733EF9F87E4B8 /* uncompr.c in Sources */, + 42260A6F1853361083803B0D /* zutil.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9732,25 +9732,25 @@ buildActionMask = 2147483647; files = ( 94B1C88076793400810FAC32 /* png.c in Sources */, - 1569BB4728693B6285623A24 /* pngerror.c in Sources */, - D9496139621533328AE727B8 /* pngget.c in Sources */, - CFA91122523B31B9A07A3828 /* pngmem.c in Sources */, - 9EC837DA722736119D49868A /* pngpread.c in Sources */, + 1569BB4728693B6285623A23 /* pngerror.c in Sources */, + D9496139621533328AE727B6 /* pngget.c in Sources */, + CFA91122523B31B9A07A3827 /* pngmem.c in Sources */, + 9EC837DA722736119D49868C /* pngpread.c in Sources */, 9B8E5690A6103FC1BDC6C47E /* pngread.c in Sources */, 31FEAB56919D372993CAD89D /* pngrio.c in Sources */, - 8FDC800D873F30E282691833 /* pngrtran.c in Sources */, - 61A2B54FD2E33C759CF5A5E8 /* pngrutil.c in Sources */, + 8FDC800D873F30E282691832 /* pngrtran.c in Sources */, + 61A2B54FD2E33C759CF5A5EA /* pngrutil.c in Sources */, 309C0A78D45C3AB7B8778B5A /* pngset.c in Sources */, - E515EAE375AE390688CBF8D5 /* pngtrans.c in Sources */, - C8C68927DB243AEAB51E11F4 /* pngwio.c in Sources */, - 0095084719983B878378CA2A /* pngwrite.c in Sources */, + E515EAE375AE390688CBF8D4 /* pngtrans.c in Sources */, + C8C68927DB243AEAB51E11F3 /* pngwio.c in Sources */, + 0095084719983B878378CA28 /* pngwrite.c in Sources */, 242E1D1A9BF331BA918134EE /* pngwtran.c in Sources */, - 2989056891153968B372EA14 /* pngwutil.c in Sources */, - BB12132A86E2350AA47414CE /* arm_init.c in Sources */, + 2989056891153968B372EA15 /* pngwutil.c in Sources */, + BB12132A86E2350AA47414CC /* arm_init.c in Sources */, 0F2FD12272023C869CE86009 /* filter_neon_intrinsics.c in Sources */, - 86787E4138CC334BB74EC7B6 /* palette_neon_intrinsics.c in Sources */, - 25B0940CABAB39CD90C6F3C6 /* intel_init.c in Sources */, - 8620088DDD233B139B250DD4 /* filter_sse2_intrinsics.c in Sources */, + 86787E4138CC334BB74EC7B5 /* palette_neon_intrinsics.c in Sources */, + 25B0940CABAB39CD90C6F3C5 /* intel_init.c in Sources */, + 8620088DDD233B139B250DD5 /* filter_sse2_intrinsics.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9761,30 +9761,30 @@ 9FA6C4275F0D3E1A884ED561 /* pcre2_auto_possess.c in Sources */, 6463C9BE78C0394CB7B451FC /* pcre2_compile.c in Sources */, D7F14BDFFB7F369B842AFC15 /* pcre2_config.c in Sources */, - 27B5431DC79733CD8D403E88 /* pcre2_context.c in Sources */, + 27B5431DC79733CD8D403E89 /* pcre2_context.c in Sources */, EB206A0264AD3CAA9F68B8FE /* pcre2_convert.c in Sources */, - 45E15DBB6B69382D8AF1BA22 /* pcre2_dfa_match.c in Sources */, - 2F7328AC75393951B08F75F3 /* pcre2_error.c in Sources */, + 45E15DBB6B69382D8AF1BA23 /* pcre2_dfa_match.c in Sources */, + 2F7328AC75393951B08F75F1 /* pcre2_error.c in Sources */, 5ED54DFAE28533108C08DF2A /* pcre2_extuni.c in Sources */, - C5C60B22CE6A3BCB868F69EA /* pcre2_find_bracket.c in Sources */, - 57B41B6BACFB3906ACD1BFAF /* pcre2_jit_compile.c in Sources */, - 7F62946D497A32CE857F65CB /* pcre2_maketables.c in Sources */, + C5C60B22CE6A3BCB868F69E8 /* pcre2_find_bracket.c in Sources */, + 57B41B6BACFB3906ACD1BFB0 /* pcre2_jit_compile.c in Sources */, + 7F62946D497A32CE857F65C9 /* pcre2_maketables.c in Sources */, 8C6E2BD9C31A3AE18AD17D45 /* pcre2_match.c in Sources */, D66F55C93D1130F488970C07 /* pcre2_match_data.c in Sources */, - 00E12455C98032E18378EE5F /* pcre2_newline.c in Sources */, - 10B5C2A72C713A678458CD9D /* pcre2_ord2utf.c in Sources */, - 88E56F89A0DA3AD386F05FD3 /* pcre2_pattern_info.c in Sources */, - 1142E2D85FD93E9AB5D8A55B /* pcre2_script_run.c in Sources */, - 9E37D29DCF7A3945A0EECB3A /* pcre2_serialize.c in Sources */, - DFEB01E7B97A3515B785DCAA /* pcre2_string_utils.c in Sources */, - 60296753A32B39EB8BD0CB44 /* pcre2_study.c in Sources */, + 00E12455C98032E18378EE60 /* pcre2_newline.c in Sources */, + 10B5C2A72C713A678458CD9F /* pcre2_ord2utf.c in Sources */, + 88E56F89A0DA3AD386F05FD2 /* pcre2_pattern_info.c in Sources */, + 1142E2D85FD93E9AB5D8A55C /* pcre2_script_run.c in Sources */, + 9E37D29DCF7A3945A0EECB3B /* pcre2_serialize.c in Sources */, + DFEB01E7B97A3515B785DCAB /* pcre2_string_utils.c in Sources */, + 60296753A32B39EB8BD0CB46 /* pcre2_study.c in Sources */, A4DEBFA074C93388A1BBCB42 /* pcre2_substitute.c in Sources */, - B6728BCD1A0731299924C8C5 /* pcre2_substring.c in Sources */, + B6728BCD1A0731299924C8C4 /* pcre2_substring.c in Sources */, 2047544E505C3BA38F0144E7 /* pcre2_tables.c in Sources */, - 8B87FEC23DB834EDBFB6EA34 /* pcre2_ucd.c in Sources */, - E17048DEEF1138318314F1D0 /* pcre2_valid_utf.c in Sources */, - AF1875145B2537298E4A28D9 /* pcre2_xclass.c in Sources */, - 7BD3887F603E3704969A54E2 /* pcre2_chartables.c in Sources */, + 8B87FEC23DB834EDBFB6EA33 /* pcre2_ucd.c in Sources */, + E17048DEEF1138318314F1D1 /* pcre2_valid_utf.c in Sources */, + AF1875145B2537298E4A28D8 /* pcre2_xclass.c in Sources */, + 7BD3887F603E3704969A54E3 /* pcre2_chartables.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9792,36 +9792,36 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E741CDA71895344C974D8F50 /* AutoComplete.cxx in Sources */, - E92EB502F79638B0BE569EF6 /* CallTip.cxx in Sources */, + E741CDA71895344C974D8F52 /* AutoComplete.cxx in Sources */, + E92EB502F79638B0BE569EF4 /* CallTip.cxx in Sources */, B97C178B47173E6AB0CE577C /* CaseConvert.cxx in Sources */, - 86B0D280A43C308CAC14BE25 /* CaseFolder.cxx in Sources */, - 682403FBBD4E3D5E88159501 /* CellBuffer.cxx in Sources */, + 86B0D280A43C308CAC14BE26 /* CaseFolder.cxx in Sources */, + 682403FBBD4E3D5E88159503 /* CellBuffer.cxx in Sources */, 1D7442C82B343F50A83B25B0 /* CharClassify.cxx in Sources */, - DF861EBD9C483E79ADF98603 /* CharacterCategory.cxx in Sources */, - 13A71672A59233D3A9B2D5E9 /* CharacterSet.cxx in Sources */, - 6BC8B3EDB3AE3EF4BACFC08C /* ContractionState.cxx in Sources */, + DF861EBD9C483E79ADF98602 /* CharacterCategory.cxx in Sources */, + 13A71672A59233D3A9B2D5EA /* CharacterSet.cxx in Sources */, + 6BC8B3EDB3AE3EF4BACFC08A /* ContractionState.cxx in Sources */, 895E7FE46F733C75AE8847E5 /* DBCS.cxx in Sources */, - 90BC965B1A1F35A3B2C9D1CB /* Decoration.cxx in Sources */, + 90BC965B1A1F35A3B2C9D1C9 /* Decoration.cxx in Sources */, 0D6596A44A8C37DE85D578F7 /* Document.cxx in Sources */, - DD1B139EA5AD3F6DB92C0FA9 /* EditModel.cxx in Sources */, - 3C665EA42ECC3E5990BA347B /* EditView.cxx in Sources */, + DD1B139EA5AD3F6DB92C0FAA /* EditModel.cxx in Sources */, + 3C665EA42ECC3E5990BA347D /* EditView.cxx in Sources */, 6D723C987BFB39B7B887DCB1 /* Editor.cxx in Sources */, - 0B4AF44DC0C439AD83CDC37E /* Indicator.cxx in Sources */, - C8F1FB8C029031A5909DBC57 /* KeyMap.cxx in Sources */, - 923F4797A73A3BDD87BBD1E2 /* LineMarker.cxx in Sources */, - EE6474BBB4AF34D093E2451D /* MarginView.cxx in Sources */, - 523FB2A8435A3324A8E1B370 /* PerLine.cxx in Sources */, + 0B4AF44DC0C439AD83CDC37F /* Indicator.cxx in Sources */, + C8F1FB8C029031A5909DBC56 /* KeyMap.cxx in Sources */, + 923F4797A73A3BDD87BBD1E1 /* LineMarker.cxx in Sources */, + EE6474BBB4AF34D093E2451E /* MarginView.cxx in Sources */, + 523FB2A8435A3324A8E1B371 /* PerLine.cxx in Sources */, BF068F3C06473D8CBC55D508 /* PositionCache.cxx in Sources */, - A52A7D2FEB1434E29C64582E /* RESearch.cxx in Sources */, - 7B372FEA276438C186F7E341 /* RunStyles.cxx in Sources */, - 15735ED6556130F6A14F0BCE /* ScintillaBase.cxx in Sources */, - 097BC5E023C33C1DA05606B0 /* Selection.cxx in Sources */, - 4C9BA36123E43589956864C7 /* Style.cxx in Sources */, - 19D823E564D932758EA6F8D3 /* UniConversion.cxx in Sources */, - 4DA9DE940E043C58BEACBB57 /* UniqueString.cxx in Sources */, - 699D88EE2DAA3594B6606892 /* ViewStyle.cxx in Sources */, - BCDAE378D03E37F5994FB9C5 /* XPM.cxx in Sources */, + A52A7D2FEB1434E29C64582D /* RESearch.cxx in Sources */, + 7B372FEA276438C186F7E342 /* RunStyles.cxx in Sources */, + 15735ED6556130F6A14F0BCF /* ScintillaBase.cxx in Sources */, + 097BC5E023C33C1DA05606B0 /* Selection.cxx in Sources */, + 4C9BA36123E43589956864C8 /* Style.cxx in Sources */, + 19D823E564D932758EA6F8D2 /* UniConversion.cxx in Sources */, + 4DA9DE940E043C58BEACBB56 /* UniqueString.cxx in Sources */, + 699D88EE2DAA3594B6606890 /* ViewStyle.cxx in Sources */, + BCDAE378D03E37F5994FB9C7 /* XPM.cxx in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9830,955 +9830,955 @@ buildActionMask = 2147483647; files = ( 59BFB8C8310E37B39AF8B0D4 /* any.cpp in Sources */, - D5A25AC579F436509805335A /* appbase.cpp in Sources */, - C2B07E2ECDDC3833BDC9B28C /* arcall.cpp in Sources */, - 4CF9BA40653C3153805D88AB /* arcfind.cpp in Sources */, - 3EB6B8528A0D3B6CADAE1258 /* archive.cpp in Sources */, + D5A25AC579F436509805335B /* appbase.cpp in Sources */, + C2B07E2ECDDC3833BDC9B28E /* arcall.cpp in Sources */, + 4CF9BA40653C3153805D88AC /* arcfind.cpp in Sources */, + 3EB6B8528A0D3B6CADAE1256 /* archive.cpp in Sources */, 3B8A54D5E5A53607A6F7979C /* arrstr.cpp in Sources */, - 0A2A4D2DC8F63FE1AC0BFAB1 /* base64.cpp in Sources */, - 319FB8E64CE731D6A58AD303 /* clntdata.cpp in Sources */, + 0A2A4D2DC8F63FE1AC0BFAAF /* base64.cpp in Sources */, + 319FB8E64CE731D6A58AD302 /* clntdata.cpp in Sources */, 51437DC2AD7B3BEB9A53CE1A /* cmdline.cpp in Sources */, DA0FA502405A37B2A5698D21 /* config.cpp in Sources */, BB6FE851028C3DE7A070C214 /* convauto.cpp in Sources */, - F89405757B063F80B111F469 /* datetime.cpp in Sources */, - 1D726139C977341A97D0C932 /* datetimefmt.cpp in Sources */, + F89405757B063F80B111F46B /* datetime.cpp in Sources */, + 1D726139C977341A97D0C931 /* datetimefmt.cpp in Sources */, E63364B7E727383BA8E2B7EE /* datstrm.cpp in Sources */, - 3ED6F4B64C283232A79423D1 /* dircmn.cpp in Sources */, - AD7EEB418C7930CB828EAF88 /* dynlib.cpp in Sources */, - 0164A65CDB7A334A8E9AA4C0 /* dynload.cpp in Sources */, - 246B4FF96BA135258FE45F50 /* encconv.cpp in Sources */, + 3ED6F4B64C283232A79423D0 /* dircmn.cpp in Sources */, + AD7EEB418C7930CB828EAF87 /* dynlib.cpp in Sources */, + 0164A65CDB7A334A8E9AA4BF /* dynload.cpp in Sources */, + 246B4FF96BA135258FE45F51 /* encconv.cpp in Sources */, 97BAFEAD53E238B6881178DE /* evtloopcmn.cpp in Sources */, - F07D84D124F23E7FA11CF148 /* extended.c in Sources */, - FEF99FF6C38D3B488396B142 /* ffile.cpp in Sources */, + F07D84D124F23E7FA11CF14A /* extended.c in Sources */, + FEF99FF6C38D3B488396B144 /* ffile.cpp in Sources */, D6C3421AD2A537AAA2F0AB82 /* file.cpp in Sources */, FFF5BFBE600E35FAB7EA522C /* fileback.cpp in Sources */, - 41943A8F82723027A151A468 /* fileconf.cpp in Sources */, - 49260580A7F23B569A827D40 /* filefn.cpp in Sources */, - D4C87E227A28391891D8908A /* filename.cpp in Sources */, - 8A4046BD38873D9CAC9C2B59 /* filesys.cpp in Sources */, + 41943A8F82723027A151A46A /* fileconf.cpp in Sources */, + 49260580A7F23B569A827D41 /* filefn.cpp in Sources */, + D4C87E227A28391891D89088 /* filename.cpp in Sources */, + 8A4046BD38873D9CAC9C2B5A /* filesys.cpp in Sources */, 9E0B67E34B683412978BA82D /* filtall.cpp in Sources */, - CA4DCD57060B38CC8B2283D8 /* filtfind.cpp in Sources */, - 2FA1A8FE3644325ABAD273A6 /* fmapbase.cpp in Sources */, + CA4DCD57060B38CC8B2283D9 /* filtfind.cpp in Sources */, + 2FA1A8FE3644325ABAD273A5 /* fmapbase.cpp in Sources */, FE2DBCCC1D0B36A3BE4493C0 /* fs_arc.cpp in Sources */, - F6B85CD918E93923BE631B97 /* fs_filter.cpp in Sources */, - FE5285579C7F39C48FC66B11 /* hash.cpp in Sources */, + F6B85CD918E93923BE631B96 /* fs_filter.cpp in Sources */, + FE5285579C7F39C48FC66B12 /* hash.cpp in Sources */, 595DCB164D55342EB86604EC /* hashmap.cpp in Sources */, 1B06622C8D8731FC832199E2 /* init.cpp in Sources */, - 0743AE8613F535A0ABB79315 /* intl.cpp in Sources */, - A336FD218BE63B19991CA515 /* ipcbase.cpp in Sources */, + 0743AE8613F535A0ABB79316 /* intl.cpp in Sources */, + A336FD218BE63B19991CA513 /* ipcbase.cpp in Sources */, BFD4B8871B3934048B63141A /* languageinfo.cpp in Sources */, - 68AC8860B0943C1FAF76D96D /* list.cpp in Sources */, - 3141FEDED0943BD6A2EF8590 /* log.cpp in Sources */, - 0C7E2D5C22A232368F862A61 /* longlong.cpp in Sources */, - B59FC7345C383D9099391AC3 /* mimecmn.cpp in Sources */, + 68AC8860B0943C1FAF76D96B /* list.cpp in Sources */, + 3141FEDED0943BD6A2EF8591 /* log.cpp in Sources */, + 0C7E2D5C22A232368F862A60 /* longlong.cpp in Sources */, + B59FC7345C383D9099391AC4 /* mimecmn.cpp in Sources */, EC3A1C620D323B5590AABF02 /* module.cpp in Sources */, - F38202271C6131908C358DEC /* mstream.cpp in Sources */, - 31DD19A942283FA8810B6383 /* numformatter.cpp in Sources */, - 23A7AF68A03E380785EE7C26 /* object.cpp in Sources */, - D6B73239BF0E32288161679E /* platinfo.cpp in Sources */, - 0A406D2D1ADA343891E3664C /* powercmn.cpp in Sources */, - CA85901B9E2538CFB7E44217 /* process.cpp in Sources */, + F38202271C6131908C358DED /* mstream.cpp in Sources */, + 31DD19A942283FA8810B6384 /* numformatter.cpp in Sources */, + 23A7AF68A03E380785EE7C24 /* object.cpp in Sources */, + D6B73239BF0E32288161679D /* platinfo.cpp in Sources */, + 0A406D2D1ADA343891E3664D /* powercmn.cpp in Sources */, + CA85901B9E2538CFB7E44218 /* process.cpp in Sources */, 7A7439BE66AA3771B4A89048 /* regex.cpp in Sources */, - CF3082BA1ED232F4B904BD15 /* stdpbase.cpp in Sources */, + CF3082BA1ED232F4B904BD14 /* stdpbase.cpp in Sources */, 539B586AEAD630A79FC12ED1 /* sstream.cpp in Sources */, 028257C52CAE3038AA862C37 /* stdstream.cpp in Sources */, 6AA0EE765330326380989FD3 /* stopwatch.cpp in Sources */, - E882402BEE0330A080A65170 /* strconv.cpp in Sources */, + E882402BEE0330A080A65171 /* strconv.cpp in Sources */, 30493B486DFF35AF80D12C49 /* stream.cpp in Sources */, - 795613831EC8332A83FF26E7 /* string.cpp in Sources */, + 795613831EC8332A83FF26E9 /* string.cpp in Sources */, 88E1AE56FD393C8BA5CF8545 /* stringops.cpp in Sources */, - 056E30EA43753A7CB1AF8C9F /* strvararg.cpp in Sources */, - 4DD98A9436C83CF3B9425A78 /* sysopt.cpp in Sources */, - 9FB1E1763EFA334CA0C07C4B /* tarstrm.cpp in Sources */, - 2E4747E0736B30569ACD5423 /* textbuf.cpp in Sources */, - 6167245C417A32179EC37D2D /* textfile.cpp in Sources */, - 98AD7D0478BA36249B03C624 /* time.cpp in Sources */, - 7FC3D17B3C853FE58841002D /* timercmn.cpp in Sources */, - 729091CC33C73C989B4E0719 /* timerimpl.cpp in Sources */, - BF8C33B7CB3A3ECE814A95FB /* tokenzr.cpp in Sources */, - ABCD15C4AB37396EA17B7B29 /* translation.cpp in Sources */, + 056E30EA43753A7CB1AF8C9E /* strvararg.cpp in Sources */, + 4DD98A9436C83CF3B9425A7A /* sysopt.cpp in Sources */, + 9FB1E1763EFA334CA0C07C49 /* tarstrm.cpp in Sources */, + 2E4747E0736B30569ACD5422 /* textbuf.cpp in Sources */, + 6167245C417A32179EC37D2E /* textfile.cpp in Sources */, + 98AD7D0478BA36249B03C623 /* time.cpp in Sources */, + 7FC3D17B3C853FE58841002E /* timercmn.cpp in Sources */, + 729091CC33C73C989B4E071A /* timerimpl.cpp in Sources */, + BF8C33B7CB3A3ECE814A95FC /* tokenzr.cpp in Sources */, + ABCD15C4AB37396EA17B7B2A /* translation.cpp in Sources */, 087FF6DE223A32509692F39B /* txtstrm.cpp in Sources */, - DAAFBED07FF8365B96D20B9A /* unichar.cpp in Sources */, - 2E8440A2BDD53BE7B01547C4 /* uri.cpp in Sources */, - C425A172B0AB3EBD9AC9A590 /* ustring.cpp in Sources */, - 65E8A5F333D7336C816F0D0E /* variant.cpp in Sources */, - E53AFF04877D34C386D77382 /* wfstream.cpp in Sources */, + DAAFBED07FF8365B96D20B9B /* unichar.cpp in Sources */, + 2E8440A2BDD53BE7B01547C3 /* uri.cpp in Sources */, + C425A172B0AB3EBD9AC9A591 /* ustring.cpp in Sources */, + 65E8A5F333D7336C816F0D0D /* variant.cpp in Sources */, + E53AFF04877D34C386D77380 /* wfstream.cpp in Sources */, 319EA32592DA3C74B86DDE00 /* wxcrt.cpp in Sources */, A2473402D8B83628B1F6674A /* wxprintf.cpp in Sources */, - BA7B12396B873FDA8F3A2748 /* xlocale.cpp in Sources */, - C5419BC04D6234B5A8307B82 /* xti.cpp in Sources */, - 52C0984A2A4F31BC885519B1 /* xtistrm.cpp in Sources */, + BA7B12396B873FDA8F3A274A /* xlocale.cpp in Sources */, + C5419BC04D6234B5A8307B83 /* xti.cpp in Sources */, + 52C0984A2A4F31BC885519B2 /* xtistrm.cpp in Sources */, CA155860CE9A3A8189C3A4C4 /* zipstrm.cpp in Sources */, - 014AF0BAB1783A5D9D75A7EF /* zstream.cpp in Sources */, + 014AF0BAB1783A5D9D75A7EE /* zstream.cpp in Sources */, A93D0E6F0871368EA8FC9FFA /* fswatchercmn.cpp in Sources */, E49F0D43B5A63EF1A57A7114 /* fswatcherg.cpp in Sources */, - B0FD1B96EAE635AFBFCF2C95 /* secretstore.cpp in Sources */, - A486A28E216D320AB57452D4 /* lzmastream.cpp in Sources */, - 9A63148F193E33B5964DD029 /* uilocale.cpp in Sources */, - B8A98F209934399DA45C2388 /* fs_data.cpp in Sources */, - 4657E7382E9E3EDC8DE2401E /* mimetype.cpp in Sources */, - 1DBDF75500D73A3098015E80 /* cfstring.cpp in Sources */, - 9FBC642677C63D01AA2511BE /* evtloop_cf.cpp in Sources */, - AAAB5DF8E60736D88273DCFE /* strconv_cf.cpp in Sources */, + B0FD1B96EAE635AFBFCF2C91 /* secretstore.cpp in Sources */, + A486A28E216D320AB57452D3 /* lzmastream.cpp in Sources */, + 9A63148F193E33B5964DD02A /* uilocale.cpp in Sources */, + B8A98F209934399DA45C2387 /* fs_data.cpp in Sources */, + 4657E7382E9E3EDC8DE2401F /* mimetype.cpp in Sources */, + 1DBDF75500D73A3098015E81 /* cfstring.cpp in Sources */, + 9FBC642677C63D01AA2511BC /* evtloop_cf.cpp in Sources */, + AAAB5DF8E60736D88273DD00 /* strconv_cf.cpp in Sources */, 68C300D096BF39239876D044 /* utils_base.mm in Sources */, - B0FD1B96EAE635AFBFCF2C93 /* secretstore.cpp in Sources */, - AE660214E0CB375FBA508A36 /* uilocale.mm in Sources */, - D36E76A4CAF5352D9397E200 /* fdiodispatcher.cpp in Sources */, + B0FD1B96EAE635AFBFCF2C94 /* secretstore.cpp in Sources */, + AE660214E0CB375FBA508A38 /* uilocale.mm in Sources */, + D36E76A4CAF5352D9397E1FF /* fdiodispatcher.cpp in Sources */, D3FB75C8E3A73AE38EE8A6F6 /* selectdispatcher.cpp in Sources */, - BAAB6B1D80A33843A8436B10 /* appunix.cpp in Sources */, - 403FBA20CEFE3EAFB4E6B906 /* dir.cpp in Sources */, - 20BEEFFA08F3396791596870 /* dlunix.cpp in Sources */, + BAAB6B1D80A33843A8436B12 /* appunix.cpp in Sources */, + 403FBA20CEFE3EAFB4E6B905 /* dir.cpp in Sources */, + 20BEEFFA08F3396791596871 /* dlunix.cpp in Sources */, CBBD7B32DB7B3E24AE745D78 /* epolldispatcher.cpp in Sources */, D18E2985C48733B2B7B3D444 /* evtloopunix.cpp in Sources */, - 3D22FC202D903007AEE3D166 /* fdiounix.cpp in Sources */, - 4B88254FF9963833A276A64D /* snglinst.cpp in Sources */, + 3D22FC202D903007AEE3D164 /* fdiounix.cpp in Sources */, + 4B88254FF9963833A276A64E /* snglinst.cpp in Sources */, 5F78DB0417BF3CE1B4E35C7F /* stackwalk.cpp in Sources */, - 2F35A207C3993DE08E4FE0B0 /* timerunx.cpp in Sources */, + 2F35A207C3993DE08E4FE0B1 /* timerunx.cpp in Sources */, F5D2146C94E733FAAB6D286C /* threadpsx.cpp in Sources */, - B5C7FD8C27F43F3289A77FCA /* utilsunx.cpp in Sources */, - F9C5EAC42CCF3267B4100BAF /* wakeuppipe.cpp in Sources */, - FF7DB2884F6E3C5DB4BDF61E /* fswatcher_kqueue.cpp in Sources */, + B5C7FD8C27F43F3289A77FCB /* utilsunx.cpp in Sources */, + F9C5EAC42CCF3267B4100BAE /* wakeuppipe.cpp in Sources */, + FF7DB2884F6E3C5DB4BDF61F /* fswatcher_kqueue.cpp in Sources */, 830A61EA04FD367C9EB6A758 /* fswatcher_fsevents.cpp in Sources */, - DA71FBB9EFB2350ABB3CEC82 /* stdpaths.mm in Sources */, - 55D893FDD00633FEA82ABD81 /* event.cpp in Sources */, - 131B879180AE3FB481F81CC9 /* fs_mem.cpp in Sources */, - 05814571E7A83F5DBFB6E4C7 /* msgout.cpp in Sources */, + DA71FBB9EFB2350ABB3CEC81 /* stdpaths.mm in Sources */, + 55D893FDD00633FEA82ABD82 /* event.cpp in Sources */, + 131B879180AE3FB481F81CC8 /* fs_mem.cpp in Sources */, + 05814571E7A83F5DBFB6E4C5 /* msgout.cpp in Sources */, 80665EEAE8613DF8A93A7986 /* utilscmn.cpp in Sources */, - 3DE2CD678CEB39C2B1E09ACA /* power.mm in Sources */, - A1A7D793B034398B8696EF35 /* utils.mm in Sources */, + 3DE2CD678CEB39C2B1E09ACC /* power.mm in Sources */, + A1A7D793B034398B8696EF34 /* utils.mm in Sources */, E0E4885BF4AF34B48EB08B92 /* volume.mm in Sources */, - F4C0CEADEDC23610BF6983D6 /* artmac.cpp in Sources */, - 296692A7A3783E3A83D005C7 /* brush.cpp in Sources */, + F4C0CEADEDC23610BF6983D8 /* artmac.cpp in Sources */, + 296692A7A3783E3A83D005C6 /* brush.cpp in Sources */, 86AED49CEAFC3637B1F10539 /* dialog_osx.cpp in Sources */, - DC6B669C9A78398F914AEE55 /* fontutil.cpp in Sources */, - C1CDD035AA393ACC9E202C05 /* minifram.cpp in Sources */, + DC6B669C9A78398F914AEE54 /* fontutil.cpp in Sources */, + C1CDD035AA393ACC9E202C03 /* minifram.cpp in Sources */, 4269B85FDC5639BEB76A8AED /* nonownedwnd_osx.cpp in Sources */, AC91349D7F0E37739B1F5166 /* palette.cpp in Sources */, - 2480859662ED399799E120A5 /* pen.cpp in Sources */, - 0E024D145DDD38ACAE68F464 /* toplevel_osx.cpp in Sources */, - 02BB539E2AD63C078DA776B1 /* uiaction_osx.cpp in Sources */, - 052331773CF6362C9A6CF38E /* utils_osx.cpp in Sources */, + 2480859662ED399799E120A6 /* pen.cpp in Sources */, + 0E024D145DDD38ACAE68F463 /* toplevel_osx.cpp in Sources */, + 02BB539E2AD63C078DA776B0 /* uiaction_osx.cpp in Sources */, + 052331773CF6362C9A6CF390 /* utils_osx.cpp in Sources */, CB2E99E8FB7D3269A333A55F /* window_osx.cpp in Sources */, 03BF1610E2FC3BD5ACB754F2 /* bitmap.cpp in Sources */, - FF50EC0EC5F23DF890C6E961 /* colour.cpp in Sources */, - BD2B17EB72E73A6EB6E0B271 /* dcmemory.cpp in Sources */, - 371809DA4AD1382F8B532879 /* fontenum.cpp in Sources */, - 86BE5213D3F131D8A686267A /* hid.cpp in Sources */, + FF50EC0EC5F23DF890C6E960 /* colour.cpp in Sources */, + BD2B17EB72E73A6EB6E0B270 /* dcmemory.cpp in Sources */, + 371809DA4AD1382F8B53287A /* fontenum.cpp in Sources */, + 86BE5213D3F131D8A686267B /* hid.cpp in Sources */, AB58406CEBA13BC4A2A83B66 /* printmac.cpp in Sources */, - 91BDA5B04CF33C9AB7358B8A /* timer.cpp in Sources */, - C2D45B334BE03F6C941CA043 /* utilsexc_cf.cpp in Sources */, - 1A70DDEDF9E13FF4BDA390E9 /* bmpbndl.mm in Sources */, - A92439BAFD3A30A29DD93131 /* apptraits.cpp in Sources */, - E82CB89681FF3747B6A94429 /* anybutton_osx.cpp in Sources */, - 49FE0228D8FD3F7AB64A4434 /* bmpbuttn_osx.cpp in Sources */, - 6AC347D2DCC730149A0A83D8 /* button_osx.cpp in Sources */, + 91BDA5B04CF33C9AB7358B8C /* timer.cpp in Sources */, + C2D45B334BE03F6C941CA042 /* utilsexc_cf.cpp in Sources */, + 1A70DDEDF9E13FF4BDA390EB /* bmpbndl.mm in Sources */, + A92439BAFD3A30A29DD93132 /* apptraits.cpp in Sources */, + E82CB89681FF3747B6A94428 /* anybutton_osx.cpp in Sources */, + 49FE0228D8FD3F7AB64A4433 /* bmpbuttn_osx.cpp in Sources */, + 6AC347D2DCC730149A0A83D9 /* button_osx.cpp in Sources */, 0E92CEF677AA32C9A8CDA0A7 /* checkbox_osx.cpp in Sources */, - 07412469921A3E488A2F9BA8 /* checklst_osx.cpp in Sources */, - 4666CDC48BA9301EA283C000 /* choice_osx.cpp in Sources */, - 0836590D35FE37988DE70443 /* combobox_osx.cpp in Sources */, - 2DF74933A90E34129F1BEF72 /* dnd_osx.cpp in Sources */, - 0FFFFA2F762B3160955D1D8A /* gauge_osx.cpp in Sources */, + 07412469921A3E488A2F9BA6 /* checklst_osx.cpp in Sources */, + 4666CDC48BA9301EA283C001 /* choice_osx.cpp in Sources */, + 0836590D35FE37988DE70442 /* combobox_osx.cpp in Sources */, + 2DF74933A90E34129F1BEF73 /* dnd_osx.cpp in Sources */, + 0FFFFA2F762B3160955D1D88 /* gauge_osx.cpp in Sources */, E4B826CE70283D999CB591F5 /* listbox_osx.cpp in Sources */, B198DA8239E9358A9D56B988 /* menu_osx.cpp in Sources */, - 1DF3A4F85FCB3BA79A552F3D /* menuitem_osx.cpp in Sources */, - A3321FE2A87D3BD69E0BB009 /* notebook_osx.cpp in Sources */, - 0C9A379D97B133FA831175A8 /* printdlg_osx.cpp in Sources */, - B1775EF7C72233408044034B /* radiobox_osx.cpp in Sources */, - 6A081BF19747385CB4C18780 /* radiobut_osx.cpp in Sources */, - DF8CE011EAC23F73BDA1C44F /* scrolbar_osx.cpp in Sources */, - 27E73CA5C35A30CE89946ECB /* slider_osx.cpp in Sources */, - 00F1531404F832C6AE0748F4 /* spinbutt_osx.cpp in Sources */, + 1DF3A4F85FCB3BA79A552F3E /* menuitem_osx.cpp in Sources */, + A3321FE2A87D3BD69E0BB00B /* notebook_osx.cpp in Sources */, + 0C9A379D97B133FA831175A7 /* printdlg_osx.cpp in Sources */, + B1775EF7C72233408044034C /* radiobox_osx.cpp in Sources */, + 6A081BF19747385CB4C18781 /* radiobut_osx.cpp in Sources */, + DF8CE011EAC23F73BDA1C44D /* scrolbar_osx.cpp in Sources */, + 27E73CA5C35A30CE89946ECA /* slider_osx.cpp in Sources */, + 00F1531404F832C6AE0748F2 /* spinbutt_osx.cpp in Sources */, 91EA325FCE3A3A6A8D1D21A5 /* srchctrl_osx.cpp in Sources */, - 221DC4F6678A3EC5ACDDEA50 /* statbox_osx.cpp in Sources */, - 91BC7802C15337CDA84C3743 /* statline_osx.cpp in Sources */, + 221DC4F6678A3EC5ACDDEA4F /* statbox_osx.cpp in Sources */, + 91BC7802C15337CDA84C3742 /* statline_osx.cpp in Sources */, 283C3ABE42433244983C27C2 /* stattext_osx.cpp in Sources */, B6891F848CA0325EAB6D1375 /* textentry_osx.cpp in Sources */, - EDCA35F1555F3509895CCA6A /* textctrl_osx.cpp in Sources */, - 664A54F914443110B7BB6928 /* tglbtn_osx.cpp in Sources */, + EDCA35F1555F3509895CCA6B /* textctrl_osx.cpp in Sources */, + 664A54F914443110B7BB692A /* tglbtn_osx.cpp in Sources */, A569A33A2097316D8110C2C1 /* toolbar_osx.cpp in Sources */, - F5FF98C231B33E3EB7902C64 /* colordlgosx.mm in Sources */, - 2386B575BC3931D2AF86CB33 /* fontdlgosx.mm in Sources */, - 2EECB3C2F9523D0B95847A81 /* accel.cpp in Sources */, - 7F77E347E1243D77A666FB43 /* clipbrd.cpp in Sources */, - 5417332FE2DB3CD3A647B15E /* cursor.cpp in Sources */, - D66F5D4D204B3B789C7F76BB /* fontdlg.cpp in Sources */, + F5FF98C231B33E3EB7902C65 /* colordlgosx.mm in Sources */, + 2386B575BC3931D2AF86CB35 /* fontdlgosx.mm in Sources */, + 2EECB3C2F9523D0B95847A7F /* accel.cpp in Sources */, + 7F77E347E1243D77A666FB44 /* clipbrd.cpp in Sources */, + 5417332FE2DB3CD3A647B15F /* cursor.cpp in Sources */, + D66F5D4D204B3B789C7F76B9 /* fontdlg.cpp in Sources */, 692FCCABFB963696AFC1E124 /* gdiobj.cpp in Sources */, - B0E94A59C83637C09FAAE71C /* app.cpp in Sources */, + B0E94A59C83637C09FAAE71D /* app.cpp in Sources */, EB52C6A91594381393294501 /* control.cpp in Sources */, - 45AB45C6B24A3983B22E56A6 /* dataobj.cpp in Sources */, + 45AB45C6B24A3983B22E56A7 /* dataobj.cpp in Sources */, D088E7DDE38C31DC9C9B3418 /* dcclient.cpp in Sources */, - 182DFDBB58653FD9863D4178 /* dcprint.cpp in Sources */, - AAC2CB4D851230008AE4ABA3 /* dcscreen.cpp in Sources */, - 774EB9F3F7E93A379E1F7552 /* graphics.cpp in Sources */, + 182DFDBB58653FD9863D4177 /* dcprint.cpp in Sources */, + AAC2CB4D851230008AE4ABA2 /* dcscreen.cpp in Sources */, + 774EB9F3F7E93A379E1F7551 /* graphics.cpp in Sources */, 5792675690843C6AA4125A72 /* font.cpp in Sources */, - BDAB44F5D017395D9D3A1F25 /* frame.cpp in Sources */, - 27E2EABB117334CD89CFD2A6 /* mdi.cpp in Sources */, - 73AA68AB9F1236ED9F1FBB2F /* metafile.cpp in Sources */, - 805CCAE64D023561AD334B54 /* popupwin.cpp in Sources */, - F6A1AC5CF84E32C19F91A616 /* statbrma.cpp in Sources */, + BDAB44F5D017395D9D3A1F24 /* frame.cpp in Sources */, + 27E2EABB117334CD89CFD2A5 /* mdi.cpp in Sources */, + 73AA68AB9F1236ED9F1FBB30 /* metafile.cpp in Sources */, + 805CCAE64D023561AD334B55 /* popupwin.cpp in Sources */, + F6A1AC5CF84E32C19F91A614 /* statbrma.cpp in Sources */, D070C3BE95483FE38BABA1BE /* region.cpp in Sources */, - 07158EBC05A637ECA9DC7B51 /* utilscocoa.mm in Sources */, - 7E6C627A325F32FFB2EF9BA0 /* caret.cpp in Sources */, + 07158EBC05A637ECA9DC7B4F /* utilscocoa.mm in Sources */, + 7E6C627A325F32FFB2EF9B9F /* caret.cpp in Sources */, FB8B6E4789A3311A98C5B0A8 /* clrpickerg.cpp in Sources */, - 7569F0BC3C603EB191680891 /* collpaneg.cpp in Sources */, - BBAABF3C693E37D3B0FF2504 /* colrdlgg.cpp in Sources */, - F70156C3E68B38FCB72FE254 /* dirdlgg.cpp in Sources */, + 7569F0BC3C603EB191680890 /* collpaneg.cpp in Sources */, + BBAABF3C693E37D3B0FF2503 /* colrdlgg.cpp in Sources */, + F70156C3E68B38FCB72FE253 /* dirdlgg.cpp in Sources */, E1F7C51F411B3AF39476E488 /* fdrepdlg.cpp in Sources */, - A965348C7FA73CEC90C8FA25 /* filedlgg.cpp in Sources */, + A965348C7FA73CEC90C8FA27 /* filedlgg.cpp in Sources */, FD1F6CD8286D3D428FD52A2A /* filepickerg.cpp in Sources */, - 16A382A265DE32FABC318F6F /* fontdlgg.cpp in Sources */, - BEAC2449AFA7304989BA3020 /* fontpickerg.cpp in Sources */, - C3AC94EA13C1352790BF5FF9 /* listctrl.cpp in Sources */, - C005C2D547E735E9B081658E /* prntdlgg.cpp in Sources */, - A1AF8FF873D6383996995ED0 /* statusbr.cpp in Sources */, - 2E059BFE8E3B3D9299D55969 /* textmeasure.cpp in Sources */, - 01D4C5F2147F3942A7CE91AA /* icon.cpp in Sources */, - 750C716389AD3ADBABC9D689 /* statbmp_osx.cpp in Sources */, - 1EDED99760B23A1999E75C13 /* imaglist.cpp in Sources */, + 16A382A265DE32FABC318F71 /* fontdlgg.cpp in Sources */, + BEAC2449AFA7304989BA301E /* fontpickerg.cpp in Sources */, + C3AC94EA13C1352790BF5FF7 /* listctrl.cpp in Sources */, + C005C2D547E735E9B081658F /* prntdlgg.cpp in Sources */, + A1AF8FF873D6383996995ED1 /* statusbr.cpp in Sources */, + 2E059BFE8E3B3D9299D5596B /* textmeasure.cpp in Sources */, + 750C716389AD3ADBABC9D68A /* statbmp_osx.cpp in Sources */, + 1EDED99760B23A1999E75C14 /* imaglist.cpp in Sources */, 65AD3B31319C35F1AC9EC625 /* anybutton.mm in Sources */, CE32C5250F2834D4B81BE89A /* appprogress.mm in Sources */, - 14D6D5F8F5ED3C71936DD2B1 /* button.mm in Sources */, - 67A0583ADD8C35B8B9BA3D13 /* checkbox.mm in Sources */, + 14D6D5F8F5ED3C71936DD2AF /* button.mm in Sources */, + 67A0583ADD8C35B8B9BA3D14 /* checkbox.mm in Sources */, 603DF49D176737D383CE4F02 /* choice.mm in Sources */, - 8C2B50E3FC7A37C58CC9DC0A /* colour.mm in Sources */, + 8C2B50E3FC7A37C58CC9DC0B /* colour.mm in Sources */, 8C52B1985BAA371FA22CCEBD /* combobox.mm in Sources */, - 6C3A459236F736B8A14A13AD /* dialog.mm in Sources */, - 8A9C3C04D00334418C3446F9 /* dirdlg.mm in Sources */, - 5700B7F9166A37FDAA72E9DB /* dnd.mm in Sources */, + 6C3A459236F736B8A14A13AC /* dialog.mm in Sources */, + 8A9C3C04D00334418C3446FB /* dirdlg.mm in Sources */, + 5700B7F9166A37FDAA72E9DD /* dnd.mm in Sources */, 58AABAD40AA236438347DDDE /* evtloop.mm in Sources */, C40AA245D5773351979A2850 /* filedlg.mm in Sources */, - 23E9AF567E873B948EFEA182 /* gauge.mm in Sources */, - 6E1FD7D3DEF03748AEE3A29D /* listbox.mm in Sources */, - 2A79B68D20FE3C9B98A15535 /* menu.mm in Sources */, - 127E255EE601383A9E0EF7EB /* menuitem.mm in Sources */, - F84D59648206349A9768157C /* msgdlg.mm in Sources */, - D6CF7416CA6A3CFF8FDFD49B /* nativewin.mm in Sources */, - 893BDA491EDE3A0E91FADE42 /* nonownedwnd.mm in Sources */, - 33BA7D6B9DC3378B820DEB89 /* notebook.mm in Sources */, - 9241AAE354C53190BF3D5BA3 /* radiobut.mm in Sources */, - 8EE5A2467401365C8217AF2F /* preferences.mm in Sources */, + 23E9AF567E873B948EFEA181 /* gauge.mm in Sources */, + 6E1FD7D3DEF03748AEE3A29E /* listbox.mm in Sources */, + 2A79B68D20FE3C9B98A15536 /* menu.mm in Sources */, + 127E255EE601383A9E0EF7EC /* menuitem.mm in Sources */, + F84D59648206349A9768157E /* msgdlg.mm in Sources */, + D6CF7416CA6A3CFF8FDFD49D /* nativewin.mm in Sources */, + 893BDA491EDE3A0E91FADE41 /* nonownedwnd.mm in Sources */, + 33BA7D6B9DC3378B820DEB87 /* notebook.mm in Sources */, + 9241AAE354C53190BF3D5BA4 /* radiobut.mm in Sources */, + 8EE5A2467401365C8217AF30 /* preferences.mm in Sources */, 22E90F33B5C9308EBF37A701 /* printdlg.mm in Sources */, 5303FA25D0773FAEB963D8E4 /* scrolbar.mm in Sources */, - 30AEDF41EC5C374DBF96EFFC /* slider.mm in Sources */, - 5DA146A9F7653F53BF5299E8 /* spinbutt.mm in Sources */, + 30AEDF41EC5C374DBF96EFFB /* slider.mm in Sources */, + 5DA146A9F7653F53BF5299EA /* spinbutt.mm in Sources */, 55F01295F1D23805BCA12F17 /* srchctrl.mm in Sources */, - B30D10F6257631B0A1926F89 /* statbox.mm in Sources */, - 1DE75213D296323B815A02BF /* statline.mm in Sources */, - 21F74D4D4D84375AB155FD5B /* stattext.mm in Sources */, + B30D10F6257631B0A1926F8B /* statbox.mm in Sources */, + 1DE75213D296323B815A02BE /* statline.mm in Sources */, + 21F74D4D4D84375AB155FD5D /* stattext.mm in Sources */, 675B4E6CBA8632E89B4AC26D /* textctrl.mm in Sources */, E6CA1EB5550F3930BFE286CF /* tglbtn.mm in Sources */, - A53B8C3ED0D33A1D9AA8219B /* toolbar.mm in Sources */, - 2B4507BC09563DB5B0F16598 /* tooltip.mm in Sources */, - 815AE3FED68330F4933AA16F /* window.mm in Sources */, - 47C31B7492F33C3EBE53262A /* settings.mm in Sources */, - 4156FDB73D0A397A870E4304 /* overlay.mm in Sources */, + A53B8C3ED0D33A1D9AA8219C /* toolbar.mm in Sources */, + 2B4507BC09563DB5B0F16597 /* tooltip.mm in Sources */, + 815AE3FED68330F4933AA171 /* window.mm in Sources */, + 47C31B7492F33C3EBE53262C /* settings.mm in Sources */, + 4156FDB73D0A397A870E4303 /* overlay.mm in Sources */, 14DEBD7C01FC358B917FDAF4 /* aboutdlg.mm in Sources */, - 0723C4E8B52C39FDBC2158B8 /* dataview_osx.cpp in Sources */, - 1B69C40CD7493FED9A272835 /* notifmsg.mm in Sources */, - 25C5C1713C0B39AC8EB6A38E /* taskbar.mm in Sources */, + 0723C4E8B52C39FDBC2158B7 /* dataview_osx.cpp in Sources */, + 1B69C40CD7493FED9A272836 /* notifmsg.mm in Sources */, + 25C5C1713C0B39AC8EB6A390 /* taskbar.mm in Sources */, 4F99EB97F65330C28EB4D077 /* datectrl_osx.cpp in Sources */, - 3316A16628B03D5E88529EA8 /* datetimectrl.mm in Sources */, - 61FEDBF2D47A3B4E861F829B /* sound.cpp in Sources */, - CE2C937117FE3AB599DD30B9 /* sound_osx.cpp in Sources */, - 219304C9DDA33E9AADB515DC /* datetimectrl_osx.cpp in Sources */, + 3316A16628B03D5E88529EA9 /* datetimectrl.mm in Sources */, + 61FEDBF2D47A3B4E861F8298 /* sound.cpp in Sources */, + CE2C937117FE3AB599DD30BB /* sound_osx.cpp in Sources */, + 219304C9DDA33E9AADB515DD /* datetimectrl_osx.cpp in Sources */, C1DCF69200593986A8C606A6 /* hidjoystick.cpp in Sources */, - 61FEDBF2D47A3B4E861F8297 /* sound.cpp in Sources */, - 049052C49B0B3810BE0179C9 /* dataview.mm in Sources */, - 20D05D14BFAD3F969666D03B /* timectrl_osx.cpp in Sources */, + 61FEDBF2D47A3B4E861F829B /* sound.cpp in Sources */, + 049052C49B0B3810BE0179CB /* dataview.mm in Sources */, + 20D05D14BFAD3F969666D03D /* timectrl_osx.cpp in Sources */, D00AF125FCB63A7A8F9B87DE /* taskbarcmn.cpp in Sources */, - A4F2426F36653C6D87EC18AF /* activityindicator.mm in Sources */, - 215958201947310B88BBEDB3 /* statbmp.mm in Sources */, + A4F2426F36653C6D87EC18B0 /* activityindicator.mm in Sources */, + 215958201947310B88BBEDB5 /* statbmp.mm in Sources */, F1F484DD591337399FCD0465 /* display.cpp in Sources */, - 2FB16C6469433F1C91749128 /* renderer.mm in Sources */, - 3CDE2B6BF88D326189F069BD /* accelcmn.cpp in Sources */, + 2FB16C6469433F1C91749129 /* renderer.mm in Sources */, + 3CDE2B6BF88D326189F069BF /* accelcmn.cpp in Sources */, BDB8EF0E0DA03693BFB77EF9 /* accesscmn.cpp in Sources */, - 205520440CD13C0AB9E8915A /* anidecod.cpp in Sources */, - 353B584AD0C03919A57A3049 /* affinematrix2d.cpp in Sources */, + 205520440CD13C0AB9E8915B /* anidecod.cpp in Sources */, + 353B584AD0C03919A57A304A /* affinematrix2d.cpp in Sources */, DDC71B80D562303690FDBE4E /* appcmn.cpp in Sources */, - EE0EA850822E35F596B5EBBA /* artprov.cpp in Sources */, + EE0EA850822E35F596B5EBBC /* artprov.cpp in Sources */, A283187810EB32DAA173BD33 /* artstd.cpp in Sources */, - 75DCE6FF00E93C5D93970843 /* arttango.cpp in Sources */, - 1749412E53B9311DABA71DDE /* bmpbase.cpp in Sources */, + 75DCE6FF00E93C5D93970842 /* arttango.cpp in Sources */, + 1749412E53B9311DABA71DDD /* bmpbase.cpp in Sources */, 3ACCC2EB8E973C11835EB598 /* bmpbtncmn.cpp in Sources */, A5775D87FD713CBB930A783F /* bookctrl.cpp in Sources */, C3A63D7091913CD39094AE0D /* btncmn.cpp in Sources */, FBA19C939E1E33EDB0504400 /* cairo.cpp in Sources */, - 427E6AF88CF73D799206E37D /* checkboxcmn.cpp in Sources */, - 37749AC3468836FC857BD0D6 /* checklstcmn.cpp in Sources */, - C0CDA289E9EC3E20BE70B2E6 /* choiccmn.cpp in Sources */, - DFEB8DA3D42734949CB1E1AB /* clipcmn.cpp in Sources */, - 9D4B67A357D23B5283CA8D98 /* clrpickercmn.cpp in Sources */, - EBF2D44758003221A22202BC /* colourcmn.cpp in Sources */, + 427E6AF88CF73D799206E37E /* checkboxcmn.cpp in Sources */, + 37749AC3468836FC857BD0D7 /* checklstcmn.cpp in Sources */, + C0CDA289E9EC3E20BE70B2E7 /* choiccmn.cpp in Sources */, + DFEB8DA3D42734949CB1E1AA /* clipcmn.cpp in Sources */, + 9D4B67A357D23B5283CA8D9A /* clrpickercmn.cpp in Sources */, + EBF2D44758003221A22202BE /* colourcmn.cpp in Sources */, 335DD610974A33D4B6581E2B /* colourdata.cpp in Sources */, D542C7819D593112AE5F7C3D /* combocmn.cpp in Sources */, - 6F0605F3A4E83BF0BF4C8B7E /* cmdproc.cpp in Sources */, + 6F0605F3A4E83BF0BF4C8B7F /* cmdproc.cpp in Sources */, 20F10669703137E68318C6FF /* cmndata.cpp in Sources */, 6FA47EAACE613B039B6EC261 /* containr.cpp in Sources */, 0C485288EA86379D9FD66536 /* cshelp.cpp in Sources */, - 25656617A56D342AA3D1BFE3 /* ctrlcmn.cpp in Sources */, - BF1760458996391E8EB4294A /* ctrlsub.cpp in Sources */, + 25656617A56D342AA3D1BFE2 /* ctrlcmn.cpp in Sources */, + BF1760458996391E8EB4294B /* ctrlsub.cpp in Sources */, 2D60F289103837EA8925E3F2 /* dcbase.cpp in Sources */, 39D6435B10073B85A499AFD8 /* dcbufcmn.cpp in Sources */, - 9564A6968D66325DAEADEBA4 /* dcgraph.cpp in Sources */, + 9564A6968D66325DAEADEBA5 /* dcgraph.cpp in Sources */, B791BD05072B3B909A7093C2 /* dcsvg.cpp in Sources */, - B559E894684A38238CAAA115 /* dirctrlcmn.cpp in Sources */, - 63F0C8EEDF4B3641878A8B4F /* dlgcmn.cpp in Sources */, - B839235BED6F3609BDB732B8 /* dndcmn.cpp in Sources */, - 2CCC30C0162131DBBE9D8028 /* dobjcmn.cpp in Sources */, - F0B3F484C38C3BA0B9927CD9 /* docmdi.cpp in Sources */, - B1E30CF6CFA932F5A3DBA950 /* docview.cpp in Sources */, - F80C2290D67B345F9CF60087 /* dpycmn.cpp in Sources */, - 6BF19C7CA9E93D989C210FE5 /* dseldlg.cpp in Sources */, - C2E37E798F743A4199C8658E /* fddlgcmn.cpp in Sources */, + B559E894684A38238CAAA116 /* dirctrlcmn.cpp in Sources */, + 63F0C8EEDF4B3641878A8B4D /* dlgcmn.cpp in Sources */, + B839235BED6F3609BDB732BA /* dndcmn.cpp in Sources */, + 2CCC30C0162131DBBE9D8029 /* dobjcmn.cpp in Sources */, + F0B3F484C38C3BA0B9927CDA /* docmdi.cpp in Sources */, + B1E30CF6CFA932F5A3DBA951 /* docview.cpp in Sources */, + F80C2290D67B345F9CF60086 /* dpycmn.cpp in Sources */, + 6BF19C7CA9E93D989C210FE3 /* dseldlg.cpp in Sources */, + C2E37E798F743A4199C86590 /* fddlgcmn.cpp in Sources */, 37715483D08335B790FFE05A /* filectrlcmn.cpp in Sources */, - 0730A107A2B935A9923C8EF3 /* filehistorycmn.cpp in Sources */, - 9881E3FB23ED3283B6CC71A3 /* filepickercmn.cpp in Sources */, - 064908348009398C8EA8497C /* fontpickercmn.cpp in Sources */, - 1E166FC1A7B3371FB038B174 /* fldlgcmn.cpp in Sources */, - F747991E5C973F9B8C9D800C /* fontcmn.cpp in Sources */, - 1E2AB43075973AE59A8D89C1 /* fontdata.cpp in Sources */, - F910C74E48823E0BA7F7885E /* graphicc.cpp in Sources */, + 0730A107A2B935A9923C8EF4 /* filehistorycmn.cpp in Sources */, + 9881E3FB23ED3283B6CC71A4 /* filepickercmn.cpp in Sources */, + 064908348009398C8EA8497D /* fontpickercmn.cpp in Sources */, + 1E166FC1A7B3371FB038B172 /* fldlgcmn.cpp in Sources */, + F747991E5C973F9B8C9D800B /* fontcmn.cpp in Sources */, + 1E2AB43075973AE59A8D89C2 /* fontdata.cpp in Sources */, + F910C74E48823E0BA7F7885D /* graphicc.cpp in Sources */, F1E4D7CA634E33808AE3B523 /* fontenumcmn.cpp in Sources */, - D5AABE973F3A351EB1C1A5A7 /* fontmap.cpp in Sources */, + D5AABE973F3A351EB1C1A5A6 /* fontmap.cpp in Sources */, 60706F8836A130A2AF282FE2 /* fontutilcmn.cpp in Sources */, - EDD5725CF41336EFA7FB300A /* framecmn.cpp in Sources */, - EAA469E1A0CC33E4A21A3F7C /* gaugecmn.cpp in Sources */, + EDD5725CF41336EFA7FB300B /* framecmn.cpp in Sources */, + EAA469E1A0CC33E4A21A3F7B /* gaugecmn.cpp in Sources */, 5A8638C234133824BDF93BC1 /* gbsizer.cpp in Sources */, - 0E60E17BA4B23347A4F20161 /* gdicmn.cpp in Sources */, - 95AD56D602CF3C5085602AFA /* geometry.cpp in Sources */, + 0E60E17BA4B23347A4F20160 /* gdicmn.cpp in Sources */, + 95AD56D602CF3C5085602AF9 /* geometry.cpp in Sources */, 758629DA468A3EF7B1C15242 /* gifdecod.cpp in Sources */, - 7B642B17F5D23F4F8ED38BB4 /* graphcmn.cpp in Sources */, + 7B642B17F5D23F4F8ED38BB5 /* graphcmn.cpp in Sources */, B8FEEC2C94183AB69C963179 /* headercolcmn.cpp in Sources */, - 383A6993E90936D39A5F12BD /* headerctrlcmn.cpp in Sources */, - 4657479AF35533AEB7876677 /* helpbase.cpp in Sources */, + 383A6993E90936D39A5F12BE /* headerctrlcmn.cpp in Sources */, + 4657479AF35533AEB7876678 /* helpbase.cpp in Sources */, BF2585CFA6853023975F1E78 /* iconbndl.cpp in Sources */, - 5B5B8DF915D438AA9FCEB39E /* imagall.cpp in Sources */, - 0813551C951A3AD1A5EF01B2 /* imagbmp.cpp in Sources */, - 6C822F7F313734DCB51F44BA /* image.cpp in Sources */, + 5B5B8DF915D438AA9FCEB39F /* imagall.cpp in Sources */, + 0813551C951A3AD1A5EF01B4 /* imagbmp.cpp in Sources */, + 6C822F7F313734DCB51F44BB /* image.cpp in Sources */, 89046455F49D3D75A21C9DB9 /* imagfill.cpp in Sources */, 36DB80FD5B153E9099DB6912 /* imaggif.cpp in Sources */, - 9110ACFC3CFB3C7994E907B0 /* imagiff.cpp in Sources */, - D13596A4E3CD31DE810061A1 /* imagjpeg.cpp in Sources */, + 9110ACFC3CFB3C7994E907B1 /* imagiff.cpp in Sources */, + D13596A4E3CD31DE810061A3 /* imagjpeg.cpp in Sources */, D83B32B788EC310D919E0DF9 /* imagpcx.cpp in Sources */, - 23965E313EDC3BBE9B2FA1C6 /* imagpng.cpp in Sources */, - 46E331300D8F349DB36AB50A /* imagpnm.cpp in Sources */, - AAABEE399008310A8BC9BE44 /* imagtga.cpp in Sources */, - 3C36437B2E933F83984D4320 /* imagtiff.cpp in Sources */, + 23965E313EDC3BBE9B2FA1C5 /* imagpng.cpp in Sources */, + 46E331300D8F349DB36AB50C /* imagpnm.cpp in Sources */, + AAABEE399008310A8BC9BE45 /* imagtga.cpp in Sources */, + 3C36437B2E933F83984D431E /* imagtiff.cpp in Sources */, 774A89998E09308CBFB03EE2 /* imagxpm.cpp in Sources */, - 63F2517EC6B2334CA825A6FA /* layout.cpp in Sources */, + 63F2517EC6B2334CA825A6F9 /* layout.cpp in Sources */, CFF73578F04D357E83D1D830 /* lboxcmn.cpp in Sources */, - 164010B26D363F5FA09785B6 /* listctrlcmn.cpp in Sources */, - 2F7F5B9BBCD83D90B237A1A0 /* markupparser.cpp in Sources */, - 9A83D365AD1F37FA9C7030C4 /* matrix.cpp in Sources */, - E3A4615870B139D29FE727C1 /* menucmn.cpp in Sources */, - 171F09F8DD553FA5B4B3FAE2 /* modalhook.cpp in Sources */, - BD49EC50CB363642BDBF25CA /* mousemanager.cpp in Sources */, + 164010B26D363F5FA09785B8 /* listctrlcmn.cpp in Sources */, + 2F7F5B9BBCD83D90B237A1A1 /* markupparser.cpp in Sources */, + 9A83D365AD1F37FA9C7030C3 /* matrix.cpp in Sources */, + E3A4615870B139D29FE727C2 /* menucmn.cpp in Sources */, + 171F09F8DD553FA5B4B3FAE4 /* modalhook.cpp in Sources */, + BD49EC50CB363642BDBF25C8 /* mousemanager.cpp in Sources */, 7A84B9471A3238B4B66B1778 /* nbkbase.cpp in Sources */, AC6AC589EFB233C7B65A3224 /* overlaycmn.cpp in Sources */, D6B2A64A78AF3F2983B441A8 /* ownerdrwcmn.cpp in Sources */, 0742292656623EC481B3436A /* paper.cpp in Sources */, - E2A73751CECF32A68FFAEE82 /* panelcmn.cpp in Sources */, - 4279D39CAAF834F6A5B99198 /* persist.cpp in Sources */, - AF1E3338E892336E924AF633 /* pickerbase.cpp in Sources */, - 6E68759BC2E63CA59C12FDC1 /* popupcmn.cpp in Sources */, - 6292B023DBF4337A91404AD0 /* preferencescmn.cpp in Sources */, - 1C52CB9487DF3AB9AF243B47 /* prntbase.cpp in Sources */, - 0B98B6721DEE37A1ADEA382C /* quantize.cpp in Sources */, + E2A73751CECF32A68FFAEE83 /* panelcmn.cpp in Sources */, + 4279D39CAAF834F6A5B99197 /* persist.cpp in Sources */, + AF1E3338E892336E924AF632 /* pickerbase.cpp in Sources */, + 6E68759BC2E63CA59C12FDC2 /* popupcmn.cpp in Sources */, + 6292B023DBF4337A91404AD2 /* preferencescmn.cpp in Sources */, + 1C52CB9487DF3AB9AF243B49 /* prntbase.cpp in Sources */, + 0B98B6721DEE37A1ADEA382B /* quantize.cpp in Sources */, AE5286C71D1130EAA368A1C4 /* radiobtncmn.cpp in Sources */, - AEB9099819B33F4A8AAB9F54 /* radiocmn.cpp in Sources */, + AEB9099819B33F4A8AAB9F55 /* radiocmn.cpp in Sources */, 5116CE330E333724A66982E3 /* rearrangectrl.cpp in Sources */, - A9864F0104FA344BBE79D3BC /* rendcmn.cpp in Sources */, - A80D00249A693F43A9CBE779 /* rgncmn.cpp in Sources */, - C259D01CC62533D296EF023B /* scrolbarcmn.cpp in Sources */, + A9864F0104FA344BBE79D3BE /* rendcmn.cpp in Sources */, + A80D00249A693F43A9CBE778 /* rgncmn.cpp in Sources */, + C259D01CC62533D296EF023A /* scrolbarcmn.cpp in Sources */, 7625D908B2CD34C78243BA91 /* settcmn.cpp in Sources */, - F5D0BCF1A6C839E5829199E4 /* sizer.cpp in Sources */, + F5D0BCF1A6C839E5829199E3 /* sizer.cpp in Sources */, EDD92822EBD93E86AE5A2ED1 /* slidercmn.cpp in Sources */, F46777ABE0743B04A1E1F0A4 /* spinbtncmn.cpp in Sources */, 49C873EE448C3CD9A32012CD /* spinctrlcmn.cpp in Sources */, 1EA81A0E8E5A3B38B4D80338 /* srchcmn.cpp in Sources */, - 4AEC67BF65B039D99F421667 /* statbar.cpp in Sources */, - 7C52E7CC12463941B0E4D403 /* statbmpcmn.cpp in Sources */, + 4AEC67BF65B039D99F421666 /* statbar.cpp in Sources */, + 7C52E7CC12463941B0E4D404 /* statbmpcmn.cpp in Sources */, D9DCBE799DB634C2A73FD6BD /* statboxcmn.cpp in Sources */, - 8B38C6C416BA3A51B37F60C4 /* statlinecmn.cpp in Sources */, - D9EE059D3C3C3C13AE4419F1 /* stattextcmn.cpp in Sources */, + 8B38C6C416BA3A51B37F60C5 /* statlinecmn.cpp in Sources */, + D9EE059D3C3C3C13AE4419F3 /* stattextcmn.cpp in Sources */, BAFF04F1680F32DA988EB03F /* stockitem.cpp in Sources */, - 4958BD2E717A3F03AB03018A /* tbarbase.cpp in Sources */, - 9744994E8A813AA6938A7CE2 /* textcmn.cpp in Sources */, - AD4A533C4E1633598A6D5C70 /* textentrycmn.cpp in Sources */, - 23479484EC143D34871550C3 /* textmeasurecmn.cpp in Sources */, - 700BBDECBE313E108BA99ABE /* toplvcmn.cpp in Sources */, - 45FE206BBAD13DDCA1EA41D1 /* treebase.cpp in Sources */, - 796311E398FF313C84218825 /* uiactioncmn.cpp in Sources */, + 4958BD2E717A3F03AB030189 /* tbarbase.cpp in Sources */, + 9744994E8A813AA6938A7CE3 /* textcmn.cpp in Sources */, + AD4A533C4E1633598A6D5C71 /* textentrycmn.cpp in Sources */, + 23479484EC143D34871550C1 /* textmeasurecmn.cpp in Sources */, + 700BBDECBE313E108BA99ABF /* toplvcmn.cpp in Sources */, + 45FE206BBAD13DDCA1EA41D0 /* treebase.cpp in Sources */, + 796311E398FF313C84218824 /* uiactioncmn.cpp in Sources */, E9EDB5C92D5D3B529E8D73B1 /* valgen.cpp in Sources */, - 9F70A89D00B03D4894AF763A /* validate.cpp in Sources */, - 1937FBA0A0DD32A8A743CFE2 /* valtext.cpp in Sources */, + 9F70A89D00B03D4894AF7639 /* validate.cpp in Sources */, + 1937FBA0A0DD32A8A743CFE1 /* valtext.cpp in Sources */, 6A032420671B375D81273716 /* valnum.cpp in Sources */, A2769D1659AE3CA3B58C2CB0 /* wincmn.cpp in Sources */, - 1BCC944F5E0936F5830F03E8 /* windowid.cpp in Sources */, + 1BCC944F5E0936F5830F03E9 /* windowid.cpp in Sources */, 3399AB7BB1333B5AAF5FAF57 /* wrapsizer.cpp in Sources */, C1E5799141603A75A26BEEA8 /* xpmdecod.cpp in Sources */, - 46F341B46F80376B962759F5 /* animateg.cpp in Sources */, + 46F341B46F80376B962759F6 /* animateg.cpp in Sources */, F5806029B1BA3924A8FDDBC1 /* busyinfo.cpp in Sources */, - CB078622E90F33BE9D131135 /* buttonbar.cpp in Sources */, - 03035C5CE4BC3288A5A18425 /* choicdgg.cpp in Sources */, + CB078622E90F33BE9D131132 /* buttonbar.cpp in Sources */, + 03035C5CE4BC3288A5A18426 /* choicdgg.cpp in Sources */, 9CA687845B3F30CCA44A89D2 /* choicbkg.cpp in Sources */, - 4442EA28B0B3373B9A2D0863 /* collheaderctrlg.cpp in Sources */, + 4442EA28B0B3373B9A2D0862 /* collheaderctrlg.cpp in Sources */, 9C1F073349FD393E9220C0D3 /* combog.cpp in Sources */, EAE02BA934B43EEE92C496C7 /* dcpsg.cpp in Sources */, 22AE900003F73134BBEE8BB7 /* dirctrlg.cpp in Sources */, - 4040AE89BF9F34668091064C /* dragimgg.cpp in Sources */, - 7EF89F935314301381802FAD /* filectrlg.cpp in Sources */, - 7D615329368D32709CEF4B5A /* headerctrlg.cpp in Sources */, - 2C95DFA8EE463487956B4EB6 /* infobar.cpp in Sources */, - 02E8F1195B653D26AAA89464 /* listbkg.cpp in Sources */, - 026F90F7492C316A94128918 /* logg.cpp in Sources */, - 633DD2E870263F42A8DBF9C1 /* markuptext.cpp in Sources */, - 745C39E90E8C3C08A887B51C /* msgdlgg.cpp in Sources */, + 4040AE89BF9F34668091064A /* dragimgg.cpp in Sources */, + 7EF89F935314301381802FAC /* filectrlg.cpp in Sources */, + 7D615329368D32709CEF4B58 /* headerctrlg.cpp in Sources */, + 2C95DFA8EE463487956B4EB5 /* infobar.cpp in Sources */, + 02E8F1195B653D26AAA89462 /* listbkg.cpp in Sources */, + 026F90F7492C316A94128917 /* logg.cpp in Sources */, + 633DD2E870263F42A8DBF9C0 /* markuptext.cpp in Sources */, + 745C39E90E8C3C08A887B51E /* msgdlgg.cpp in Sources */, 1AF2B2346C9639DAA4D15F30 /* numdlgg.cpp in Sources */, - 4D0BA8B9F72C3C31BC170CE4 /* progdlgg.cpp in Sources */, - A1A7B833061C35B4AABD093D /* preferencesg.cpp in Sources */, - DEB35F871F8E3B90AD207AEE /* printps.cpp in Sources */, - 96927C5A21FD3ACF936CDF6C /* renderg.cpp in Sources */, - F72020415D713C1BA41C17D0 /* richmsgdlgg.cpp in Sources */, - ED8D23D79FF33ED380FE09EC /* scrlwing.cpp in Sources */, - 85F9828B80B03178A274BD17 /* selstore.cpp in Sources */, - 84997126352137E798CD258A /* spinctlg.cpp in Sources */, - 62F1DC80D631335B892610A9 /* splitter.cpp in Sources */, - B6C364CB4AE33708A862B4B6 /* srchctlg.cpp in Sources */, + 4D0BA8B9F72C3C31BC170CE2 /* progdlgg.cpp in Sources */, + A1A7B833061C35B4AABD093C /* preferencesg.cpp in Sources */, + DEB35F871F8E3B90AD207AF0 /* printps.cpp in Sources */, + 96927C5A21FD3ACF936CDF6E /* renderg.cpp in Sources */, + F72020415D713C1BA41C17CF /* richmsgdlgg.cpp in Sources */, + ED8D23D79FF33ED380FE09ED /* scrlwing.cpp in Sources */, + 85F9828B80B03178A274BD18 /* selstore.cpp in Sources */, + 84997126352137E798CD258B /* spinctlg.cpp in Sources */, + 62F1DC80D631335B892610A8 /* splitter.cpp in Sources */, + B6C364CB4AE33708A862B4B4 /* srchctlg.cpp in Sources */, 8FC1C07FEE793897A1E96D24 /* statbmpg.cpp in Sources */, BF9B151DC0543E37878F8B9C /* stattextg.cpp in Sources */, - 62757F24C4EE3B84B6AE3F14 /* textdlgg.cpp in Sources */, + 62757F24C4EE3B84B6AE3F15 /* textdlgg.cpp in Sources */, 249C9177B1A33EFEAB30F941 /* tipwin.cpp in Sources */, - 32FECED7A7633C4D8C1BFBB5 /* toolbkg.cpp in Sources */, + 32FECED7A7633C4D8C1BFBB4 /* toolbkg.cpp in Sources */, DB3C3AA956A03FB492480267 /* treectlg.cpp in Sources */, 5388468A6F8F3141B25CD402 /* treebkg.cpp in Sources */, 87C67583D36C3465ACD64103 /* vlbox.cpp in Sources */, A465A43B756630F1944B5A57 /* vscroll.cpp in Sources */, - 1CBF34ACA39330028A5EA9AE /* xmlreshandler.cpp in Sources */, - 8AA341CCFB8E3F6AB3523595 /* splash.cpp in Sources */, - CEE0D7A7D5D8323B9957A782 /* notifmsgg.cpp in Sources */, - 1E17F95DD433379E8C18298D /* odcombo.cpp in Sources */, - 901F659891613419B8643952 /* calctrlcmn.cpp in Sources */, + 1CBF34ACA39330028A5EA9AD /* xmlreshandler.cpp in Sources */, + 8AA341CCFB8E3F6AB3523597 /* splash.cpp in Sources */, + CEE0D7A7D5D8323B9957A780 /* notifmsgg.cpp in Sources */, + 1E17F95DD433379E8C18298E /* odcombo.cpp in Sources */, + 901F659891613419B8643954 /* calctrlcmn.cpp in Sources */, E5D698D2606A304DA743AF93 /* grideditors.cpp in Sources */, - 5C44446AB150378696CD6B3E /* bmpcboxcmn.cpp in Sources */, - A139B846584436BCBEBAE3C1 /* grid.cpp in Sources */, - 2E930206397C3EDCBD8206FC /* gridctrl.cpp in Sources */, + 5C44446AB150378696CD6B3C /* bmpcboxcmn.cpp in Sources */, + A139B846584436BCBEBAE3C0 /* grid.cpp in Sources */, + 2E930206397C3EDCBD8206FE /* gridctrl.cpp in Sources */, 760C729E41D93CC1AA2B4E0E /* hyperlinkg.cpp in Sources */, - F016C51053373E658ED4C9A9 /* helpext.cpp in Sources */, - 3554C88010CE3D2A8970A137 /* sashwin.cpp in Sources */, + F016C51053373E658ED4C9AB /* helpext.cpp in Sources */, + 3554C88010CE3D2A8970A136 /* sashwin.cpp in Sources */, 187F921A95DA3594B0AD980E /* gridsel.cpp in Sources */, - EC3D181D65F33E09A675FFF3 /* addremovectrl.cpp in Sources */, + EC3D181D65F33E09A675FFF4 /* addremovectrl.cpp in Sources */, 77BC918AF05C30E8A0BD27F9 /* tipdlg.cpp in Sources */, - FEA741A9B6663A4C929893C2 /* aboutdlgg.cpp in Sources */, - 2FAE979E6FE23D088C768B7E /* gridcmn.cpp in Sources */, - 2FE10EA678C73523836FCC1E /* richtooltipcmn.cpp in Sources */, - B4425B59CC27389CA9FF81D1 /* datectlg.cpp in Sources */, + FEA741A9B6663A4C929893C4 /* aboutdlgg.cpp in Sources */, + 2FAE979E6FE23D088C768B7D /* gridcmn.cpp in Sources */, + 2FE10EA678C73523836FCC1D /* richtooltipcmn.cpp in Sources */, + B4425B59CC27389CA9FF81D3 /* datectlg.cpp in Sources */, E0FAB345D2933D42B62917A5 /* bannerwindow.cpp in Sources */, 060E095718B03EF98C75479A /* treelist.cpp in Sources */, 1CD4F67F48CF3A5FA477D86E /* datavcmn.cpp in Sources */, - CFDBB80A4C9A3BA092273936 /* animatecmn.cpp in Sources */, - E6D18B2EDE353F67883085A1 /* odcombocmn.cpp in Sources */, - 7B4DA2F5F25B3E188CBAFE38 /* hyperlnkcmn.cpp in Sources */, + CFDBB80A4C9A3BA092273937 /* animatecmn.cpp in Sources */, + E6D18B2EDE353F67883085A0 /* odcombocmn.cpp in Sources */, + 7B4DA2F5F25B3E188CBAFE3A /* hyperlnkcmn.cpp in Sources */, 6A10511265493FA2BB79CE4F /* propdlg.cpp in Sources */, B189DB62AE9F30A1B613756C /* bmpcboxg.cpp in Sources */, - C67EAE20657E36839BF86692 /* richtooltipg.cpp in Sources */, - 98F52D5224B438DFA8887E07 /* timectrlg.cpp in Sources */, - 8A662992FFCB32E99D11950C /* commandlinkbuttong.cpp in Sources */, - 800CFCEDBB7938338C65EEAD /* notifmsgcmn.cpp in Sources */, + C67EAE20657E36839BF86690 /* richtooltipg.cpp in Sources */, + 98F52D5224B438DFA8887E06 /* timectrlg.cpp in Sources */, + 8A662992FFCB32E99D11950D /* commandlinkbuttong.cpp in Sources */, + 800CFCEDBB7938338C65EEAE /* notifmsgcmn.cpp in Sources */, 82FA4AA043213728AC266702 /* wizard.cpp in Sources */, 8B60964DA1DF3F3DB40BE125 /* datavgen.cpp in Sources */, 5557AA36FBCC3ED9A5F5751B /* editlbox.cpp in Sources */, 955D2199F1893D37BA2D7479 /* laywin.cpp in Sources */, - 2F50DBC14FE538A49823925C /* calctrlg.cpp in Sources */, - 63F895D6F5643E4B9E666B79 /* creddlgg.cpp in Sources */, - 8F372080E11E382EA0B5ED0F /* rowheightcache.cpp in Sources */, + 2F50DBC14FE538A49823925B /* calctrlg.cpp in Sources */, + 63F895D6F5643E4B9E666B7B /* creddlgg.cpp in Sources */, + 8F372080E11E382EA0B5ED11 /* rowheightcache.cpp in Sources */, DB244DC0A09C379AAA63C0A4 /* bmpbndl.cpp in Sources */, - 32988828498D32B2B3F8A982 /* bmpsvg.cpp in Sources */, - 567A32722BA33AEE9FF93D7E /* fs_inet.cpp in Sources */, + 32988828498D32B2B3F8A983 /* bmpsvg.cpp in Sources */, + 567A32722BA33AEE9FF93D7D /* fs_inet.cpp in Sources */, 65514CD6A9F23ED98436AC02 /* ftp.cpp in Sources */, B84642DA949638A189032CE6 /* http.cpp in Sources */, - 6CA1BAEBBDB4336E9E201F96 /* protocol.cpp in Sources */, - E39021D3CDCD33BAA646B008 /* sckaddr.cpp in Sources */, - 9F608A33D52D327FAA295625 /* sckfile.cpp in Sources */, - BCD81FD3D1EC305F801E1C1D /* sckipc.cpp in Sources */, - A3A898DA3114311EB7F02228 /* sckstrm.cpp in Sources */, - 6978D7A20DA93A329DDD1383 /* socket.cpp in Sources */, + 6CA1BAEBBDB4336E9E201F97 /* protocol.cpp in Sources */, + E39021D3CDCD33BAA646B006 /* sckaddr.cpp in Sources */, + 9F608A33D52D327FAA295626 /* sckfile.cpp in Sources */, + BCD81FD3D1EC305F801E1C1B /* sckipc.cpp in Sources */, + A3A898DA3114311EB7F02229 /* sckstrm.cpp in Sources */, + 6978D7A20DA93A329DDD1384 /* socket.cpp in Sources */, E7140F3AB94D3FDFA86D8C07 /* url.cpp in Sources */, C987310872D1396BAF716E5A /* webrequest.cpp in Sources */, - EE972E8DC73F310B9B4C949D /* webrequest_curl.cpp in Sources */, + EE972E8DC73F310B9B4C949C /* webrequest_curl.cpp in Sources */, 652CFDD9A1C1366E99B5D6BD /* socketiohandler.cpp in Sources */, - 346D274E17673A01B0177D5D /* sockunix.cpp in Sources */, - AD07124BBA613B47829F0693 /* sockosx.cpp in Sources */, - 980ED1DA2F96361985952256 /* webrequest_urlsession.mm in Sources */, - 0E23F212CBDD33848DEBCA6F /* webview_chromium.mm in Sources */, + 346D274E17673A01B0177D5B /* sockunix.cpp in Sources */, + AD07124BBA613B47829F0694 /* sockosx.cpp in Sources */, + 980ED1DA2F96361985952255 /* webrequest_urlsession.mm in Sources */, + 0E23F212CBDD33848DEBCA70 /* webview_chromium.mm in Sources */, 2DBF5F96CCC63F7481C26A43 /* webview_webkit.mm in Sources */, - 64A716F87A5136F9A790EC5C /* webview.cpp in Sources */, + 64A716F87A5136F9A790EC5B /* webview.cpp in Sources */, 5C5D0983160A36189A770742 /* webviewarchivehandler.cpp in Sources */, - 048986FB629E313EA670CD0D /* webviewfshandler.cpp in Sources */, - AE95E3BDEDB7358DBE9E7E5A /* webview_chromium.cpp in Sources */, - DEC5F4B34BC037169D3E5F2C /* mediactrlcmn.cpp in Sources */, + 048986FB629E313EA670CD0C /* webviewfshandler.cpp in Sources */, + AE95E3BDEDB7358DBE9E7E5C /* webview_chromium.cpp in Sources */, + DEC5F4B34BC037169D3E5F2A /* mediactrlcmn.cpp in Sources */, B6BC23F4F3E43315BD4C7CF8 /* mediactrl.mm in Sources */, - 47EBBB18BDB539C2A948C711 /* chm.cpp in Sources */, + 47EBBB18BDB539C2A948C712 /* chm.cpp in Sources */, BAA75384DA82370298672333 /* helpctrl.cpp in Sources */, - 2CAD4DF9505F36E4A2EAD53D /* helpdata.cpp in Sources */, - D17E3053DA0D3F7EA4D0951C /* helpdlg.cpp in Sources */, - 7C87CC7641033D91823ED689 /* helpfrm.cpp in Sources */, - 3D762A0BBF1B39B88A769632 /* helpwnd.cpp in Sources */, + 2CAD4DF9505F36E4A2EAD53F /* helpdata.cpp in Sources */, + D17E3053DA0D3F7EA4D0951B /* helpdlg.cpp in Sources */, + 7C87CC7641033D91823ED688 /* helpfrm.cpp in Sources */, + 3D762A0BBF1B39B88A769634 /* helpwnd.cpp in Sources */, 4DA209AEF4AD32AAB97F9718 /* htmlcell.cpp in Sources */, FD3CC5F0AA41384B9388A1E0 /* htmlfilt.cpp in Sources */, - C5E5AB869065307F83E27DD1 /* htmlpars.cpp in Sources */, - EBA0986930DA3B59B2FB4F20 /* htmltag.cpp in Sources */, - 93E04642049537EB8A37BA26 /* htmlwin.cpp in Sources */, + C5E5AB869065307F83E27DD3 /* htmlpars.cpp in Sources */, + EBA0986930DA3B59B2FB4F1F /* htmltag.cpp in Sources */, + 93E04642049537EB8A37BA27 /* htmlwin.cpp in Sources */, 3E99016BDE043A08B4D6B3CE /* htmprint.cpp in Sources */, 9836B3D336963795928FE5A3 /* m_dflist.cpp in Sources */, - 66584BC871303041BA622DE0 /* m_fonts.cpp in Sources */, - 99F7D7BFBB543A04AB728376 /* m_hline.cpp in Sources */, - A3586433C4B1398FB1C361D8 /* m_image.cpp in Sources */, - BD53E095EC1136EF853A47D8 /* m_layout.cpp in Sources */, - C05BDB0B5F5A33A9A57FF012 /* m_links.cpp in Sources */, - 81B742D64BEB373DB705947A /* m_list.cpp in Sources */, - FD38B04026F930CC80BC9482 /* m_pre.cpp in Sources */, - 57AE7FCF768F3965BD39B47A /* m_span.cpp in Sources */, - 4CFB7E6E5BD53E2BB39BEF63 /* m_style.cpp in Sources */, + 66584BC871303041BA622DE2 /* m_fonts.cpp in Sources */, + 99F7D7BFBB543A04AB728377 /* m_hline.cpp in Sources */, + A3586433C4B1398FB1C361D7 /* m_image.cpp in Sources */, + BD53E095EC1136EF853A47DA /* m_layout.cpp in Sources */, + C05BDB0B5F5A33A9A57FF013 /* m_links.cpp in Sources */, + 81B742D64BEB373DB705947C /* m_list.cpp in Sources */, + FD38B04026F930CC80BC9481 /* m_pre.cpp in Sources */, + 57AE7FCF768F3965BD39B47B /* m_span.cpp in Sources */, + 4CFB7E6E5BD53E2BB39BEF65 /* m_style.cpp in Sources */, 3D424F4B33653A00AE9B623A /* m_tables.cpp in Sources */, - F3AC352D6DAE3A12A5664769 /* styleparams.cpp in Sources */, - 2A7640E4210334AC93366901 /* winpars.cpp in Sources */, - 87AA9C5D887B3C31A2AFB49D /* htmllbox.cpp in Sources */, - 8F949B9010863F66A58FFEF3 /* xh_activityindicator.cpp in Sources */, - FBE4DB30865D3177B3A9993C /* xh_animatctrl.cpp in Sources */, + F3AC352D6DAE3A12A566476A /* styleparams.cpp in Sources */, + 2A7640E4210334AC93366900 /* winpars.cpp in Sources */, + 87AA9C5D887B3C31A2AFB49F /* htmllbox.cpp in Sources */, + 8F949B9010863F66A58FFEF2 /* xh_activityindicator.cpp in Sources */, + FBE4DB30865D3177B3A9993B /* xh_animatctrl.cpp in Sources */, 702616D38A5B345D9CC87114 /* xh_bannerwindow.cpp in Sources */, - 94E510619F433AE3AC884757 /* xh_bmp.cpp in Sources */, + 94E510619F433AE3AC884756 /* xh_bmp.cpp in Sources */, 8966F77CC97B3ED780C8F139 /* xh_bmpcbox.cpp in Sources */, - 84B3625464F732C3A79E1314 /* xh_bmpbt.cpp in Sources */, - D5C304182151365FA9FF8A3F /* xh_bttn.cpp in Sources */, - FE9A662A1F9B34D099C45C1D /* xh_cald.cpp in Sources */, + 84B3625464F732C3A79E1315 /* xh_bmpbt.cpp in Sources */, + D5C304182151365FA9FF8A3D /* xh_bttn.cpp in Sources */, + FE9A662A1F9B34D099C45C1E /* xh_cald.cpp in Sources */, 6138BCBC8E4438FA91E0EFA1 /* xh_chckb.cpp in Sources */, - 5F2C2A46781739D897CF293D /* xh_chckl.cpp in Sources */, + 5F2C2A46781739D897CF293F /* xh_chckl.cpp in Sources */, CE17002B5B7E37558274763A /* xh_choic.cpp in Sources */, - 26E4813A97DE323E88119165 /* xh_choicbk.cpp in Sources */, + 26E4813A97DE323E88119163 /* xh_choicbk.cpp in Sources */, E7AF3BF2B3473AD9BE66D1A3 /* xh_clrpicker.cpp in Sources */, - 1AB50C98FF473B33A3CA4D39 /* xh_cmdlinkbn.cpp in Sources */, - E7921B0472B63E4091F4F517 /* xh_collpane.cpp in Sources */, - 84382E5DB3203A73AC5EE390 /* xh_combo.cpp in Sources */, - F569D7A3F0E038E9B4CC2A78 /* xh_comboctrl.cpp in Sources */, - 14F303FD6B5F383DADDFD789 /* xh_dataview.cpp in Sources */, - FB09720D13673A7B81BCB647 /* xh_datectrl.cpp in Sources */, + 1AB50C98FF473B33A3CA4D3B /* xh_cmdlinkbn.cpp in Sources */, + E7921B0472B63E4091F4F519 /* xh_collpane.cpp in Sources */, + 84382E5DB3203A73AC5EE391 /* xh_combo.cpp in Sources */, + F569D7A3F0E038E9B4CC2A76 /* xh_comboctrl.cpp in Sources */, + 14F303FD6B5F383DADDFD78A /* xh_dataview.cpp in Sources */, + FB09720D13673A7B81BCB646 /* xh_datectrl.cpp in Sources */, F7D10B6E0CBA32EFAF79C77D /* xh_dirpicker.cpp in Sources */, - 3B7E035ECF3D3FFB9827AC1C /* xh_dlg.cpp in Sources */, + 3B7E035ECF3D3FFB9827AC1D /* xh_dlg.cpp in Sources */, E05B06A7FEEE32D5AD87EA50 /* xh_editlbox.cpp in Sources */, - F24F637D59F637CA9A7E23CB /* xh_filectrl.cpp in Sources */, - 5FE969523BDB3353AEF96810 /* xh_filepicker.cpp in Sources */, - 438EAEA4B30C325C827F6197 /* xh_fontpicker.cpp in Sources */, - 95826E8528CC32D8934C36EE /* xh_frame.cpp in Sources */, - BE99A85EE76236CC8C719A65 /* xh_gauge.cpp in Sources */, - 26649553E4763EE6BA268B7E /* xh_gdctl.cpp in Sources */, - 72AD4417FF7C3094BB1FF62D /* xh_grid.cpp in Sources */, + F24F637D59F637CA9A7E23CA /* xh_filectrl.cpp in Sources */, + 5FE969523BDB3353AEF96811 /* xh_filepicker.cpp in Sources */, + 438EAEA4B30C325C827F6199 /* xh_fontpicker.cpp in Sources */, + 95826E8528CC32D8934C36ED /* xh_frame.cpp in Sources */, + BE99A85EE76236CC8C719A64 /* xh_gauge.cpp in Sources */, + 26649553E4763EE6BA268B7D /* xh_gdctl.cpp in Sources */, + 72AD4417FF7C3094BB1FF62E /* xh_grid.cpp in Sources */, 83616D33080E3F0F9FA5FBB5 /* xh_html.cpp in Sources */, 2B13BFC894C63373B7ACFA3E /* xh_hyperlink.cpp in Sources */, EA10DA3199813E90B39C70D5 /* xh_infobar.cpp in Sources */, C34B8675439F39B4845FFC51 /* xh_listb.cpp in Sources */, F5DF7AF0FA9E371BB71EF798 /* xh_listbk.cpp in Sources */, 96B507455762391688B5E501 /* xh_listc.cpp in Sources */, - F34D240EB4513FE996179182 /* xh_mdi.cpp in Sources */, + F34D240EB4513FE996179184 /* xh_mdi.cpp in Sources */, 65FCDBFFF3F138A3ABBAA652 /* xh_menu.cpp in Sources */, - 0FBF7C9EDFB53D8DA0991B56 /* xh_notbk.cpp in Sources */, - 0FA6E1E47F123FF4A902E4D2 /* xh_odcombo.cpp in Sources */, - 36B0B923B836358D9DB0AE10 /* xh_panel.cpp in Sources */, - CDC0FF253B503BA19693D68E /* xh_propdlg.cpp in Sources */, + 0FBF7C9EDFB53D8DA0991B55 /* xh_notbk.cpp in Sources */, + 0FA6E1E47F123FF4A902E4D3 /* xh_odcombo.cpp in Sources */, + 36B0B923B836358D9DB0AE12 /* xh_panel.cpp in Sources */, + CDC0FF253B503BA19693D68F /* xh_propdlg.cpp in Sources */, 47F4FC8717AF3A848812DFCE /* xh_radbt.cpp in Sources */, - 7181709A030D3749AB355B75 /* xh_radbx.cpp in Sources */, + 7181709A030D3749AB355B76 /* xh_radbx.cpp in Sources */, FDE14459359334DE9FB03ED6 /* xh_scrol.cpp in Sources */, - 87092C0C817D343DAB77E23E /* xh_scwin.cpp in Sources */, + 87092C0C817D343DAB77E23F /* xh_scwin.cpp in Sources */, 00E2F82590B33BDCA1F6D0C4 /* xh_htmllbox.cpp in Sources */, - A39B0D7EB43137F7BA50A35E /* xh_simplebook.cpp in Sources */, - E1A20811148F31D289AF98AF /* xh_sizer.cpp in Sources */, - 5F6B4F226B473AACB7AC8DF5 /* xh_slidr.cpp in Sources */, + A39B0D7EB43137F7BA50A35D /* xh_simplebook.cpp in Sources */, + E1A20811148F31D289AF98B1 /* xh_sizer.cpp in Sources */, + 5F6B4F226B473AACB7AC8DF6 /* xh_slidr.cpp in Sources */, C32EF2EC1A103BC3A6254322 /* xh_spin.cpp in Sources */, - 33ED014A7FF7398794E6E4D0 /* xh_split.cpp in Sources */, - 7C9EAFF4A0223EE597E0E39F /* xh_srchctrl.cpp in Sources */, + 33ED014A7FF7398794E6E4D1 /* xh_split.cpp in Sources */, + 7C9EAFF4A0223EE597E0E39E /* xh_srchctrl.cpp in Sources */, 8AB7191F7CB838FC8337C48D /* xh_statbar.cpp in Sources */, - 3D3EA1BAAD1833B1B48E9C86 /* xh_stbmp.cpp in Sources */, - F22C401903993639AE05A295 /* xh_stbox.cpp in Sources */, - BF3D600A93403C589B65C5BF /* xh_stlin.cpp in Sources */, + 3D3EA1BAAD1833B1B48E9C87 /* xh_stbmp.cpp in Sources */, + F22C401903993639AE05A297 /* xh_stbox.cpp in Sources */, + BF3D600A93403C589B65C5C1 /* xh_stlin.cpp in Sources */, 8292D346BFC33D6E8D3CDDC1 /* xh_sttxt.cpp in Sources */, - 0EB6AB38A68D3845AC384A24 /* xh_text.cpp in Sources */, + 0EB6AB38A68D3845AC384A23 /* xh_text.cpp in Sources */, B181806CC34839E791E54BF0 /* xh_tglbtn.cpp in Sources */, - 89200B144075388BA69A07E3 /* xh_timectrl.cpp in Sources */, - F3CB42BB6D983675862C01F4 /* xh_toolb.cpp in Sources */, - 17F0494F87533196904F5313 /* xh_toolbk.cpp in Sources */, - 3357BD0518F538E9A949F886 /* xh_tree.cpp in Sources */, - 46CE8B53D2663927AAE5DF9D /* xh_treebk.cpp in Sources */, - C5A8DF376BB13A2A8290C2E6 /* xh_unkwn.cpp in Sources */, + 89200B144075388BA69A07E2 /* xh_timectrl.cpp in Sources */, + F3CB42BB6D983675862C01F5 /* xh_toolb.cpp in Sources */, + 17F0494F87533196904F5314 /* xh_toolbk.cpp in Sources */, + 3357BD0518F538E9A949F888 /* xh_tree.cpp in Sources */, + 46CE8B53D2663927AAE5DF9F /* xh_treebk.cpp in Sources */, + C5A8DF376BB13A2A8290C2E7 /* xh_unkwn.cpp in Sources */, + ABBE59AC73E135D48965F209 /* xh_vlistbox.cpp in Sources */, 37DD17F479A1371ABF3589BA /* xh_wizrd.cpp in Sources */, 1710A4BB0E6339558A187F8F /* xmlres.cpp in Sources */, 135DFCE48FC03D8294D01A8A /* xmlrsall.cpp in Sources */, - 070797A894A03196B7BEC661 /* xh_bookctrlbase.cpp in Sources */, - 50E89226E8D7390D9D21C809 /* debugrpt.cpp in Sources */, - 7C5552FA058034238F485901 /* dbgrptg.cpp in Sources */, + 070797A894A03196B7BEC662 /* xh_bookctrlbase.cpp in Sources */, + 50E89226E8D7390D9D21C80A /* debugrpt.cpp in Sources */, + 7C5552FA058034238F485900 /* dbgrptg.cpp in Sources */, 61FD5E0E28F732E8AB1729FA /* xml.cpp in Sources */, - 42ED9BAFD6E936849F1D36CD /* xtixml.cpp in Sources */, - EEB0B28903693C7E9D07192F /* glcmn.cpp in Sources */, - 59F995B6E6EE3CA5A4487844 /* glcanvas.mm in Sources */, + 42ED9BAFD6E936849F1D36CB /* xtixml.cpp in Sources */, + EEB0B28903693C7E9D071931 /* glcmn.cpp in Sources */, + 59F995B6E6EE3CA5A4487846 /* glcanvas.mm in Sources */, F2813BF297C73A3ABD02EC9A /* glcanvas_osx.cpp in Sources */, 36EB5D19429D3BD1A01001D5 /* framemanager.cpp in Sources */, C7B6240E0E213836996A178B /* dockart.cpp in Sources */, - 15048519756B33959B15B162 /* floatpane.cpp in Sources */, - E104017EE1A4357DAF84E1E6 /* auibook.cpp in Sources */, - 39CC380F801F3EE984523275 /* auibar.cpp in Sources */, + 15048519756B33959B15B163 /* floatpane.cpp in Sources */, + E104017EE1A4357DAF84E1E7 /* auibook.cpp in Sources */, + 39CC380F801F3EE984523277 /* auibar.cpp in Sources */, 6C46AF0370793AA0B74A5A4A /* tabmdi.cpp in Sources */, - AC0B0C52922B30188AE95E95 /* tabart.cpp in Sources */, - C3C19BD343B235F9909D495B /* xh_aui.cpp in Sources */, - 44C6F11C7D1C399F99CF6BD4 /* xh_auitoolb.cpp in Sources */, - DE43350F6C9D3148A64F0AFB /* art_internal.cpp in Sources */, - 7DC4A542372437ECA0790F88 /* art_msw.cpp in Sources */, - A0BA01A85C303C78A3130711 /* art_aui.cpp in Sources */, - 056CA84179433AA48D55DA65 /* bar.cpp in Sources */, - CB078622E90F33BE9D131132 /* buttonbar.cpp in Sources */, - EB52C6A91594381393294502 /* control.cpp in Sources */, - 5F57C4908E5038D19D68ED7A /* gallery.cpp in Sources */, - 4BAFAE70A6B1313B96D86631 /* page.cpp in Sources */, - F0D892C2618130FEAD46BB87 /* panel.cpp in Sources */, - EA02FA6D3B003F8F8A2963C7 /* toolbar.cpp in Sources */, - 5A459FC1180130C5B705AEDA /* xh_ribbon.cpp in Sources */, + AC0B0C52922B30188AE95E96 /* tabart.cpp in Sources */, + C3C19BD343B235F9909D4959 /* xh_aui.cpp in Sources */, + 44C6F11C7D1C399F99CF6BD5 /* xh_auitoolb.cpp in Sources */, + DE43350F6C9D3148A64F0AF9 /* art_internal.cpp in Sources */, + 7DC4A542372437ECA0790F87 /* art_msw.cpp in Sources */, + A0BA01A85C303C78A3130712 /* art_aui.cpp in Sources */, + 056CA84179433AA48D55DA66 /* bar.cpp in Sources */, + CB078622E90F33BE9D131133 /* buttonbar.cpp in Sources */, + EB52C6A915943813932944FE /* control.cpp in Sources */, + 5F57C4908E5038D19D68ED7C /* gallery.cpp in Sources */, + 4BAFAE70A6B1313B96D86632 /* page.cpp in Sources */, + F0D892C2618130FEAD46BB88 /* panel.cpp in Sources */, + EA02FA6D3B003F8F8A2963C6 /* toolbar.cpp in Sources */, + 5A459FC1180130C5B705AEDC /* xh_ribbon.cpp in Sources */, D54A162E557834A48F4646AB /* advprops.cpp in Sources */, F501AB044AAC39DCB8C0B3E2 /* editors.cpp in Sources */, - 6B9EEA3CF2E536E3B1ADAC42 /* manager.cpp in Sources */, - 46A4CCF128FC3EB092074DC5 /* property.cpp in Sources */, - 26BB10834DA1388881BDD1EE /* propgrid.cpp in Sources */, - BEA90F2C6BB93143958F899B /* propgridiface.cpp in Sources */, - A423177BBC0F3BE5A436B4B7 /* propgridpagestate.cpp in Sources */, - D72D99FC424337CF9EDC2044 /* props.cpp in Sources */, - DC7D78BABF823480B56528AC /* xh_propgrid.cpp in Sources */, + 6B9EEA3CF2E536E3B1ADAC44 /* manager.cpp in Sources */, + 46A4CCF128FC3EB092074DC7 /* property.cpp in Sources */, + 26BB10834DA1388881BDD1ED /* propgrid.cpp in Sources */, + BEA90F2C6BB93143958F899C /* propgridiface.cpp in Sources */, + A423177BBC0F3BE5A436B4B9 /* propgridpagestate.cpp in Sources */, + D72D99FC424337CF9EDC2042 /* props.cpp in Sources */, + DC7D78BABF823480B56528AE /* xh_propgrid.cpp in Sources */, 9065A4BE3D0433B88CF45571 /* richtextbuffer.cpp in Sources */, 5C3B0ED2EA973DFDBFBCC693 /* richtextctrl.cpp in Sources */, - 9455B49669853E71BD4FD966 /* richtextformatdlg.cpp in Sources */, - 70F898F8B129380BBECAC559 /* richtexthtml.cpp in Sources */, - F43DAE2E829A3A7493531382 /* richtextimagedlg.cpp in Sources */, - 0FDDE8E193743F3A8CBDC67C /* richtextprint.cpp in Sources */, - FADD46CB89B135D1AF1D5F8B /* richtextstyledlg.cpp in Sources */, + 9455B49669853E71BD4FD965 /* richtextformatdlg.cpp in Sources */, + 70F898F8B129380BBECAC55A /* richtexthtml.cpp in Sources */, + F43DAE2E829A3A7493531381 /* richtextimagedlg.cpp in Sources */, + 0FDDE8E193743F3A8CBDC67D /* richtextprint.cpp in Sources */, + FADD46CB89B135D1AF1D5F8A /* richtextstyledlg.cpp in Sources */, 2563C775427E3D68BD384F30 /* richtextstyles.cpp in Sources */, - 604ABF86317C3D4F899DBF37 /* richtextsymboldlg.cpp in Sources */, - 9058997222493A7A859A4D4D /* richtextxml.cpp in Sources */, + 604ABF86317C3D4F899DBF38 /* richtextsymboldlg.cpp in Sources */, + 9058997222493A7A859A4D4C /* richtextxml.cpp in Sources */, 0BB3BF0909A134BA93CF5620 /* xh_richtext.cpp in Sources */, - E3B3E4F75D503DB89B5C622D /* stc.cpp in Sources */, - 908957F65B7E36F8BF3858DF /* PlatWX.cpp in Sources */, + E3B3E4F75D503DB89B5C622F /* stc.cpp in Sources */, + 908957F65B7E36F8BF3858DE /* PlatWX.cpp in Sources */, 3E6AA08E72A030D39D867D4B /* ScintillaWX.cpp in Sources */, - 849B89D1F6AB3DDEAA2D53AE /* xh_styledtextctrl.cpp in Sources */, + 849B89D1F6AB3DDEAA2D53AD /* xh_styledtextctrl.cpp in Sources */, 57F8001809BC3864A5FA798B /* PlatWXcocoa.mm in Sources */, - F5B0B26BD0803719A3FCB4D8 /* adler32.c in Sources */, + F5B0B26BD0803719A3FCB4D7 /* adler32.c in Sources */, BE3ED6EF34303867B8C8E925 /* compress.c in Sources */, AC07BA4EA5403443914DFDB3 /* crc32.c in Sources */, - 8DE45CEAF2DD3C22AA019F75 /* deflate.c in Sources */, + 8DE45CEAF2DD3C22AA019F74 /* deflate.c in Sources */, 213CE0DD5B2335D0AD53B54C /* gzclose.c in Sources */, 0E8A0B8FA40E365690C20230 /* gzlib.c in Sources */, 4B996B4C54163D7091427DB5 /* gzread.c in Sources */, - 4E2737AC738431EB9898B8B6 /* gzwrite.c in Sources */, - 5EE94793DFCB3BA281A48650 /* infback.c in Sources */, + 4E2737AC738431EB9898B8B7 /* gzwrite.c in Sources */, + 5EE94793DFCB3BA281A4864F /* infback.c in Sources */, 10743B74A58231639C6BF610 /* inffast.c in Sources */, - 42AC484FDD7D3E948CEA801D /* inflate.c in Sources */, + 42AC484FDD7D3E948CEA801C /* inflate.c in Sources */, 3813146434693234965C4F32 /* inftrees.c in Sources */, - 1CC5AEC6C08E3600801CDADA /* trees.c in Sources */, - 9C6E9E4BA54733EF9F87E4B7 /* uncompr.c in Sources */, - 42260A6F1853361083803B0E /* zutil.c in Sources */, - 99E7A46106C03484BA70D29E /* tif_unix.c in Sources */, + 1CC5AEC6C08E3600801CDADB /* trees.c in Sources */, + 9C6E9E4BA54733EF9F87E4B9 /* uncompr.c in Sources */, + 42260A6F1853361083803B0C /* zutil.c in Sources */, + 99E7A46106C03484BA70D2A0 /* tif_unix.c in Sources */, 4E396D8D2E9138D797F320C8 /* tif_aux.c in Sources */, - 1EE845DDFDDE36CA8A218206 /* tif_close.c in Sources */, - 8E674574343A3C009B1BCD00 /* tif_codec.c in Sources */, + 1EE845DDFDDE36CA8A218207 /* tif_close.c in Sources */, + 8E674574343A3C009B1BCD01 /* tif_codec.c in Sources */, D95C5F467D37339AB8DF2354 /* tif_color.c in Sources */, - 6D073876E1753549B5EEFDDC /* tif_compress.c in Sources */, - E3136EF5DD843ACE886E2869 /* tif_dir.c in Sources */, - 7ECC6EE6D5273F75BB6B7B76 /* tif_dirinfo.c in Sources */, - D51B3389209E370489078891 /* tif_dirread.c in Sources */, + 6D073876E1753549B5EEFDDB /* tif_compress.c in Sources */, + E3136EF5DD843ACE886E286A /* tif_dir.c in Sources */, + 7ECC6EE6D5273F75BB6B7B74 /* tif_dirinfo.c in Sources */, + D51B3389209E370489078893 /* tif_dirread.c in Sources */, E7F35B834A163C67B65176C6 /* tif_dirwrite.c in Sources */, - 2D4D105CA9BE3FA6995A6000 /* tif_dumpmode.c in Sources */, - C2CF6B59914A3183ADE84029 /* tif_error.c in Sources */, - 2315C8692C443ED1AE43172A /* tif_extension.c in Sources */, - FECC98B53C0F3106AB04E6A0 /* tif_fax3.c in Sources */, + 2D4D105CA9BE3FA6995A6001 /* tif_dumpmode.c in Sources */, + C2CF6B59914A3183ADE8402A /* tif_error.c in Sources */, + 2315C8692C443ED1AE431728 /* tif_extension.c in Sources */, + FECC98B53C0F3106AB04E69E /* tif_fax3.c in Sources */, 2C53221A318E37529E6460EB /* tif_fax3sm.c in Sources */, - 522E6CF2A62F34259BCE2DE3 /* tif_flush.c in Sources */, - 6944AC98F6F83E3D983DABD4 /* tif_getimage.c in Sources */, - CB46C7E531903700ADFB11CA /* tif_jbig.c in Sources */, + 522E6CF2A62F34259BCE2DE2 /* tif_flush.c in Sources */, + 6944AC98F6F83E3D983DABD3 /* tif_getimage.c in Sources */, + CB46C7E531903700ADFB11C8 /* tif_jbig.c in Sources */, 07C769F64665317BA3E1AC91 /* tif_jpeg.c in Sources */, - 09A792A5129E3FE1BF077642 /* tif_jpeg_12.c in Sources */, + 09A792A5129E3FE1BF077641 /* tif_jpeg_12.c in Sources */, 88A43B1C5A7438838DE97B95 /* tif_luv.c in Sources */, DC928C38CA8331F18FF00BCB /* tif_lzma.c in Sources */, 779D3480141B3683A6D132C0 /* tif_lzw.c in Sources */, - F85D632964383F29BC3B30B8 /* tif_next.c in Sources */, - 64F11C549E3035DF85691062 /* tif_ojpeg.c in Sources */, - 793F542F20AB31F6AF736796 /* tif_open.c in Sources */, + F85D632964383F29BC3B30B6 /* tif_next.c in Sources */, + 64F11C549E3035DF85691060 /* tif_ojpeg.c in Sources */, + 793F542F20AB31F6AF736795 /* tif_open.c in Sources */, A9A5973552EE30838306D15D /* tif_packbits.c in Sources */, - 64DD406C453D39FEBBE66ED1 /* tif_pixarlog.c in Sources */, - 9A178ED42D96329D8CBF9B8A /* tif_predict.c in Sources */, - 570FA90F526E3F25A8E8FCF3 /* tif_read.c in Sources */, + 64DD406C453D39FEBBE66ED2 /* tif_pixarlog.c in Sources */, + 9A178ED42D96329D8CBF9B8B /* tif_predict.c in Sources */, + 570FA90F526E3F25A8E8FCF2 /* tif_read.c in Sources */, 912C69ADB1673ACEB0E6CF09 /* tif_strip.c in Sources */, 552708E6296D33EBB5F6A495 /* tif_swab.c in Sources */, 527054445A0D3A00A5C2EC44 /* tif_thunder.c in Sources */, FEB073547F3F3AC19D31F69A /* tif_tile.c in Sources */, - 096BA201623034AD9721836A /* tif_version.c in Sources */, + 096BA201623034AD97218368 /* tif_version.c in Sources */, 7A79D9AC608E3B8287229175 /* tif_warning.c in Sources */, - D772334837693C9D88069D9A /* tif_webp.c in Sources */, - F2F2963D8ECC32D39FDBF102 /* tif_write.c in Sources */, - 6E2C2E8AA1713ADE9C338379 /* tif_zip.c in Sources */, - 6C1171E3FB7137CCB9E3F538 /* tif_zstd.c in Sources */, + D772334837693C9D88069D99 /* tif_webp.c in Sources */, + F2F2963D8ECC32D39FDBF101 /* tif_write.c in Sources */, + 6E2C2E8AA1713ADE9C33837A /* tif_zip.c in Sources */, + 6C1171E3FB7137CCB9E3F537 /* tif_zstd.c in Sources */, 5D3AD309AF39385EBF7D9DFA /* jaricom.c in Sources */, 894D43C8F224394FB3171F28 /* jcapimin.c in Sources */, - 743BB23211B336A6A0F26E59 /* jcapistd.c in Sources */, + 743BB23211B336A6A0F26E57 /* jcapistd.c in Sources */, 7EB83F6375BF3E73ABE56C41 /* jcarith.c in Sources */, - CA5BD8ABDBA13641BBE7CD67 /* jccoefct.c in Sources */, + CA5BD8ABDBA13641BBE7CD68 /* jccoefct.c in Sources */, 11DD420E32FB3EFB9DA0AB5B /* jccolor.c in Sources */, BFA6983551B4310DA7C8A404 /* jcdctmgr.c in Sources */, BDB7B2AD26CB356B8BEAAECF /* jchuff.c in Sources */, 86003C8EB906304F9025F788 /* jcinit.c in Sources */, - 98DF13E96160304EBB905E74 /* jcmainct.c in Sources */, - DB73248401573A5996D8E68F /* jcmarker.c in Sources */, - C6DF6F29407B34F29ED1B66E /* jcmaster.c in Sources */, - FCE5B139CBE73FCB804EF7DE /* jcomapi.c in Sources */, - ACD644CFA85A3B70A3E3B119 /* jcparam.c in Sources */, - 32486A808EBC3E088598D51E /* jcprepct.c in Sources */, - 50D7E093424138C88BB50D29 /* jcsample.c in Sources */, - CCE4ECA9CE883B008065C6FB /* jctrans.c in Sources */, - 8B9C9FCB954F3596A4CED9A6 /* jdapimin.c in Sources */, - 67EBCE5FA5FF36349ADF0918 /* jdapistd.c in Sources */, + 98DF13E96160304EBB905E73 /* jcmainct.c in Sources */, + DB73248401573A5996D8E68E /* jcmarker.c in Sources */, + C6DF6F29407B34F29ED1B66D /* jcmaster.c in Sources */, + FCE5B139CBE73FCB804EF7DD /* jcomapi.c in Sources */, + ACD644CFA85A3B70A3E3B11A /* jcparam.c in Sources */, + 32486A808EBC3E088598D51C /* jcprepct.c in Sources */, + 50D7E093424138C88BB50D27 /* jcsample.c in Sources */, + CCE4ECA9CE883B008065C6FC /* jctrans.c in Sources */, + 8B9C9FCB954F3596A4CED9A7 /* jdapimin.c in Sources */, + 67EBCE5FA5FF36349ADF0917 /* jdapistd.c in Sources */, 8093A858CA9E3E9EA2D2185F /* jdarith.c in Sources */, 76A83A293C9F33BCB7DFDE26 /* jdatadst.c in Sources */, - 4CB3626391CE34D4B1F71AA2 /* jdatasrc.c in Sources */, - B5470121BB4B35DE9C4836DA /* jdcoefct.c in Sources */, + 4CB3626391CE34D4B1F71AA0 /* jdatasrc.c in Sources */, + B5470121BB4B35DE9C4836DC /* jdcoefct.c in Sources */, D9F02AFDA07D3857A905527D /* jdcolor.c in Sources */, - 13854E7822783719A2530794 /* jddctmgr.c in Sources */, - 28ADE8D385A53445A5451F25 /* jdhuff.c in Sources */, - 14EF556997B0350F931EBE90 /* jdinput.c in Sources */, - 9FD99E06F6613A1A958FAF6B /* jdmainct.c in Sources */, - 61C3F7D495FB3E8BA402E4F9 /* jdmarker.c in Sources */, - CEBAAB0C77983358A601BFFF /* jdmaster.c in Sources */, - 1E4832B42B95308299B767BB /* jdmerge.c in Sources */, - E7D02E64384F37BC8939A2C5 /* jdpostct.c in Sources */, + 13854E7822783719A2530793 /* jddctmgr.c in Sources */, + 28ADE8D385A53445A5451F24 /* jdhuff.c in Sources */, + 14EF556997B0350F931EBE8F /* jdinput.c in Sources */, + 9FD99E06F6613A1A958FAF6D /* jdmainct.c in Sources */, + 61C3F7D495FB3E8BA402E4FA /* jdmarker.c in Sources */, + CEBAAB0C77983358A601BFFE /* jdmaster.c in Sources */, + 1E4832B42B95308299B767BA /* jdmerge.c in Sources */, + E7D02E64384F37BC8939A2C6 /* jdpostct.c in Sources */, D997FFC948B73FDA892DB531 /* jdsample.c in Sources */, - 11818B68C5263EB68D708846 /* jdtrans.c in Sources */, - DE26572475EE336B8EEA5D93 /* jerror.c in Sources */, + 11818B68C5263EB68D708845 /* jdtrans.c in Sources */, + DE26572475EE336B8EEA5D94 /* jerror.c in Sources */, 0948599C4FD53611A09B52AD /* jfdctflt.c in Sources */, 9B3F9D04FB533D99B58BD51B /* jfdctfst.c in Sources */, CEC6430AEB6E3200BFA75D08 /* jfdctint.c in Sources */, B01C4EF49CF9390DA93A3503 /* jidctflt.c in Sources */, 48A1F28E04603A68A1E70319 /* jidctfst.c in Sources */, C43A9650A9DC3372AB8F5F78 /* jidctint.c in Sources */, - 18A318847EAC37F2B915F082 /* jmemmgr.c in Sources */, - A7692B4D8658347BA16EEB84 /* jmemnobs.c in Sources */, - 15D65A523EB23EC385C05E0D /* jquant1.c in Sources */, - 3C0EB1DDA5243E31B2D92CE3 /* jquant2.c in Sources */, + 18A318847EAC37F2B915F081 /* jmemmgr.c in Sources */, + A7692B4D8658347BA16EEB83 /* jmemnobs.c in Sources */, + 15D65A523EB23EC385C05E0C /* jquant1.c in Sources */, + 3C0EB1DDA5243E31B2D92CE4 /* jquant2.c in Sources */, 311840186794346AAAA42092 /* jutils.c in Sources */, - 94B1C88076793400810FAC30 /* png.c in Sources */, - 1569BB4728693B6285623A23 /* pngerror.c in Sources */, - D9496139621533328AE727B7 /* pngget.c in Sources */, - CFA91122523B31B9A07A3827 /* pngmem.c in Sources */, + 94B1C88076793400810FAC31 /* png.c in Sources */, + 1569BB4728693B6285623A24 /* pngerror.c in Sources */, + D9496139621533328AE727B8 /* pngget.c in Sources */, + CFA91122523B31B9A07A3828 /* pngmem.c in Sources */, 9EC837DA722736119D49868B /* pngpread.c in Sources */, 9B8E5690A6103FC1BDC6C480 /* pngread.c in Sources */, 31FEAB56919D372993CAD89E /* pngrio.c in Sources */, 8FDC800D873F30E282691834 /* pngrtran.c in Sources */, - 61A2B54FD2E33C759CF5A5EA /* pngrutil.c in Sources */, - 309C0A78D45C3AB7B8778B5B /* pngset.c in Sources */, + 61A2B54FD2E33C759CF5A5E8 /* pngrutil.c in Sources */, + 309C0A78D45C3AB7B8778B59 /* pngset.c in Sources */, E515EAE375AE390688CBF8D3 /* pngtrans.c in Sources */, - C8C68927DB243AEAB51E11F2 /* pngwio.c in Sources */, - 0095084719983B878378CA29 /* pngwrite.c in Sources */, - 242E1D1A9BF331BA918134EC /* pngwtran.c in Sources */, + C8C68927DB243AEAB51E11F4 /* pngwio.c in Sources */, + 0095084719983B878378CA2A /* pngwrite.c in Sources */, + 242E1D1A9BF331BA918134ED /* pngwtran.c in Sources */, 2989056891153968B372EA16 /* pngwutil.c in Sources */, - BB12132A86E2350AA47414CD /* arm_init.c in Sources */, - 0F2FD12272023C869CE86008 /* filter_neon_intrinsics.c in Sources */, - 86787E4138CC334BB74EC7B4 /* palette_neon_intrinsics.c in Sources */, - 25B0940CABAB39CD90C6F3C5 /* intel_init.c in Sources */, + BB12132A86E2350AA47414CE /* arm_init.c in Sources */, + 0F2FD12272023C869CE8600A /* filter_neon_intrinsics.c in Sources */, + 86787E4138CC334BB74EC7B6 /* palette_neon_intrinsics.c in Sources */, + 25B0940CABAB39CD90C6F3C6 /* intel_init.c in Sources */, 8620088DDD233B139B250DD6 /* filter_sse2_intrinsics.c in Sources */, 9FA6C4275F0D3E1A884ED563 /* pcre2_auto_possess.c in Sources */, - 6463C9BE78C0394CB7B451FB /* pcre2_compile.c in Sources */, + 6463C9BE78C0394CB7B451FA /* pcre2_compile.c in Sources */, D7F14BDFFB7F369B842AFC14 /* pcre2_config.c in Sources */, - 27B5431DC79733CD8D403E89 /* pcre2_context.c in Sources */, - EB206A0264AD3CAA9F68B8FC /* pcre2_convert.c in Sources */, + 27B5431DC79733CD8D403E88 /* pcre2_context.c in Sources */, + EB206A0264AD3CAA9F68B8FD /* pcre2_convert.c in Sources */, 45E15DBB6B69382D8AF1BA21 /* pcre2_dfa_match.c in Sources */, 2F7328AC75393951B08F75F2 /* pcre2_error.c in Sources */, 5ED54DFAE28533108C08DF2C /* pcre2_extuni.c in Sources */, C5C60B22CE6A3BCB868F69E9 /* pcre2_find_bracket.c in Sources */, - 57B41B6BACFB3906ACD1BFB1 /* pcre2_jit_compile.c in Sources */, - 7F62946D497A32CE857F65C9 /* pcre2_maketables.c in Sources */, - 8C6E2BD9C31A3AE18AD17D46 /* pcre2_match.c in Sources */, - D66F55C93D1130F488970C05 /* pcre2_match_data.c in Sources */, - 00E12455C98032E18378EE60 /* pcre2_newline.c in Sources */, - 10B5C2A72C713A678458CD9F /* pcre2_ord2utf.c in Sources */, - 88E56F89A0DA3AD386F05FD2 /* pcre2_pattern_info.c in Sources */, + 57B41B6BACFB3906ACD1BFAF /* pcre2_jit_compile.c in Sources */, + 7F62946D497A32CE857F65CA /* pcre2_maketables.c in Sources */, + 8C6E2BD9C31A3AE18AD17D44 /* pcre2_match.c in Sources */, + D66F55C93D1130F488970C06 /* pcre2_match_data.c in Sources */, + 00E12455C98032E18378EE5E /* pcre2_newline.c in Sources */, + 10B5C2A72C713A678458CD9E /* pcre2_ord2utf.c in Sources */, + 88E56F89A0DA3AD386F05FD4 /* pcre2_pattern_info.c in Sources */, 1142E2D85FD93E9AB5D8A55A /* pcre2_script_run.c in Sources */, - 9E37D29DCF7A3945A0EECB3B /* pcre2_serialize.c in Sources */, - DFEB01E7B97A3515B785DCAB /* pcre2_string_utils.c in Sources */, - 60296753A32B39EB8BD0CB46 /* pcre2_study.c in Sources */, - A4DEBFA074C93388A1BBCB40 /* pcre2_substitute.c in Sources */, - B6728BCD1A0731299924C8C6 /* pcre2_substring.c in Sources */, + 9E37D29DCF7A3945A0EECB39 /* pcre2_serialize.c in Sources */, + DFEB01E7B97A3515B785DCAA /* pcre2_string_utils.c in Sources */, + 60296753A32B39EB8BD0CB45 /* pcre2_study.c in Sources */, + A4DEBFA074C93388A1BBCB41 /* pcre2_substitute.c in Sources */, + B6728BCD1A0731299924C8C5 /* pcre2_substring.c in Sources */, 2047544E505C3BA38F0144E6 /* pcre2_tables.c in Sources */, - 8B87FEC23DB834EDBFB6EA33 /* pcre2_ucd.c in Sources */, + 8B87FEC23DB834EDBFB6EA32 /* pcre2_ucd.c in Sources */, E17048DEEF1138318314F1D2 /* pcre2_valid_utf.c in Sources */, AF1875145B2537298E4A28DA /* pcre2_xclass.c in Sources */, - 7BD3887F603E3704969A54E3 /* pcre2_chartables.c in Sources */, - E741CDA71895344C974D8F52 /* AutoComplete.cxx in Sources */, - E92EB502F79638B0BE569EF4 /* CallTip.cxx in Sources */, - B97C178B47173E6AB0CE577D /* CaseConvert.cxx in Sources */, - 86B0D280A43C308CAC14BE26 /* CaseFolder.cxx in Sources */, - 682403FBBD4E3D5E88159502 /* CellBuffer.cxx in Sources */, - 1D7442C82B343F50A83B25B1 /* CharClassify.cxx in Sources */, - DF861EBD9C483E79ADF98604 /* CharacterCategory.cxx in Sources */, - 13A71672A59233D3A9B2D5EA /* CharacterSet.cxx in Sources */, - 6BC8B3EDB3AE3EF4BACFC08B /* ContractionState.cxx in Sources */, + 7BD3887F603E3704969A54E2 /* pcre2_chartables.c in Sources */, + E741CDA71895344C974D8F50 /* AutoComplete.cxx in Sources */, + E92EB502F79638B0BE569EF6 /* CallTip.cxx in Sources */, + B97C178B47173E6AB0CE577B /* CaseConvert.cxx in Sources */, + 86B0D280A43C308CAC14BE24 /* CaseFolder.cxx in Sources */, + 682403FBBD4E3D5E88159501 /* CellBuffer.cxx in Sources */, + 1D7442C82B343F50A83B25B2 /* CharClassify.cxx in Sources */, + DF861EBD9C483E79ADF98603 /* CharacterCategory.cxx in Sources */, + 13A71672A59233D3A9B2D5E9 /* CharacterSet.cxx in Sources */, + 6BC8B3EDB3AE3EF4BACFC08C /* ContractionState.cxx in Sources */, 895E7FE46F733C75AE8847E4 /* DBCS.cxx in Sources */, - 90BC965B1A1F35A3B2C9D1CA /* Decoration.cxx in Sources */, + 90BC965B1A1F35A3B2C9D1CB /* Decoration.cxx in Sources */, 0D6596A44A8C37DE85D578F6 /* Document.cxx in Sources */, - DD1B139EA5AD3F6DB92C0FA8 /* EditModel.cxx in Sources */, - 3C665EA42ECC3E5990BA347D /* EditView.cxx in Sources */, - 6D723C987BFB39B7B887DCB3 /* Editor.cxx in Sources */, + DD1B139EA5AD3F6DB92C0FA9 /* EditModel.cxx in Sources */, + 3C665EA42ECC3E5990BA347B /* EditView.cxx in Sources */, + 6D723C987BFB39B7B887DCB2 /* Editor.cxx in Sources */, 0B4AF44DC0C439AD83CDC380 /* Indicator.cxx in Sources */, - C8F1FB8C029031A5909DBC56 /* KeyMap.cxx in Sources */, + C8F1FB8C029031A5909DBC57 /* KeyMap.cxx in Sources */, 923F4797A73A3BDD87BBD1E3 /* LineMarker.cxx in Sources */, - EE6474BBB4AF34D093E2451E /* MarginView.cxx in Sources */, - 523FB2A8435A3324A8E1B371 /* PerLine.cxx in Sources */, - BF068F3C06473D8CBC55D507 /* PositionCache.cxx in Sources */, + EE6474BBB4AF34D093E2451F /* MarginView.cxx in Sources */, + 523FB2A8435A3324A8E1B370 /* PerLine.cxx in Sources */, + BF068F3C06473D8CBC55D509 /* PositionCache.cxx in Sources */, A52A7D2FEB1434E29C64582C /* RESearch.cxx in Sources */, 7B372FEA276438C186F7E340 /* RunStyles.cxx in Sources */, 15735ED6556130F6A14F0BCD /* ScintillaBase.cxx in Sources */, 097BC5E023C33C1DA05606AF /* Selection.cxx in Sources */, - 4C9BA36123E43589956864C8 /* Style.cxx in Sources */, - 19D823E564D932758EA6F8D2 /* UniConversion.cxx in Sources */, + 4C9BA36123E43589956864C6 /* Style.cxx in Sources */, + 19D823E564D932758EA6F8D1 /* UniConversion.cxx in Sources */, 4DA9DE940E043C58BEACBB58 /* UniqueString.cxx in Sources */, - 699D88EE2DAA3594B6606890 /* ViewStyle.cxx in Sources */, - BCDAE378D03E37F5994FB9C7 /* XPM.cxx in Sources */, - B60AD651E0523DB7B31E4106 /* LexillaAccess.cxx in Sources */, - 23CECD8647C037E0B41DF0D4 /* LexA68k.cxx in Sources */, - 0654BCC3F0763C50A7949504 /* LexAPDL.cxx in Sources */, + 699D88EE2DAA3594B6606891 /* ViewStyle.cxx in Sources */, + BCDAE378D03E37F5994FB9C6 /* XPM.cxx in Sources */, + B60AD651E0523DB7B31E4108 /* LexillaAccess.cxx in Sources */, + 23CECD8647C037E0B41DF0D5 /* LexA68k.cxx in Sources */, + 0654BCC3F0763C50A7949505 /* LexAPDL.cxx in Sources */, 0ADC8DBEE80D36B0BB9B058C /* LexASY.cxx in Sources */, - 784F7C50882F320FA76537B6 /* LexAU3.cxx in Sources */, + 784F7C50882F320FA76537B5 /* LexAU3.cxx in Sources */, 07EC76232BB3343FA5CB90B2 /* LexAVE.cxx in Sources */, 5519BA1F2463308FAC4A0C9F /* LexAVS.cxx in Sources */, 66FD099CE5A338C18329FC37 /* LexAbaqus.cxx in Sources */, - CD35A576FD363FD49C3AC4B5 /* LexAda.cxx in Sources */, + CD35A576FD363FD49C3AC4B3 /* LexAda.cxx in Sources */, 3DA70DE666D838A59642A4E7 /* LexAsciidoc.cxx in Sources */, - 0C3F48DBD05E3566A4CA6D46 /* LexAsm.cxx in Sources */, - 825EAD51920B387DB4F8C427 /* LexAsn1.cxx in Sources */, - D54D3CA9E73336A08DB20706 /* LexBaan.cxx in Sources */, + 0C3F48DBD05E3566A4CA6D44 /* LexAsm.cxx in Sources */, + 825EAD51920B387DB4F8C428 /* LexAsn1.cxx in Sources */, + D54D3CA9E73336A08DB20707 /* LexBaan.cxx in Sources */, 39FB197CF9EB3D76BE0723D0 /* LexBash.cxx in Sources */, - 6C7C1CC506CB329FB2D086AB /* LexBasic.cxx in Sources */, + 6C7C1CC506CB329FB2D086AA /* LexBasic.cxx in Sources */, 12B1DEF410AB34999AB210DD /* LexBatch.cxx in Sources */, - C92005CB86C6361BBB9D7C69 /* LexBibTeX.cxx in Sources */, - 78E15D8200F635529F39609B /* LexBullant.cxx in Sources */, + C92005CB86C6361BBB9D7C68 /* LexBibTeX.cxx in Sources */, + 78E15D8200F635529F396099 /* LexBullant.cxx in Sources */, 0C2073A011EA36B8AD906DA3 /* LexCIL.cxx in Sources */, 6F472413FFA03B53B395BB76 /* LexCLW.cxx in Sources */, D8ADDD24BEAC3D94B3388D3E /* LexCOBOL.cxx in Sources */, - A0FCE3CF565C3F84B63712AE /* LexCPP.cxx in Sources */, - 069D53F2DFBF370A8CC99631 /* LexCSS.cxx in Sources */, - 268DDC88C99A3A64AB8B2FFB /* LexCaml.cxx in Sources */, - 6F5A0D3C7763334396A3783F /* LexCmake.cxx in Sources */, + A0FCE3CF565C3F84B63712AC /* LexCPP.cxx in Sources */, + 069D53F2DFBF370A8CC99632 /* LexCSS.cxx in Sources */, + 268DDC88C99A3A64AB8B2FFA /* LexCaml.cxx in Sources */, + 6F5A0D3C7763334396A3783D /* LexCmake.cxx in Sources */, 2020EE3C45743B53BE8C7F38 /* LexCoffeeScript.cxx in Sources */, - B640A8A74D973A8FBEF63918 /* LexConf.cxx in Sources */, - 97F60B2A9CE93BC8949A8CCD /* LexCrontab.cxx in Sources */, - 834F2ADD0520313FBAC4F928 /* LexCsound.cxx in Sources */, - 8FB5FBC5730C33F1A3D85DA0 /* LexD.cxx in Sources */, - 0B792C3F31713850818EEFEA /* LexDMAP.cxx in Sources */, + B640A8A74D973A8FBEF63917 /* LexConf.cxx in Sources */, + 97F60B2A9CE93BC8949A8CCE /* LexCrontab.cxx in Sources */, + 834F2ADD0520313FBAC4F929 /* LexCsound.cxx in Sources */, + 8FB5FBC5730C33F1A3D85DA1 /* LexD.cxx in Sources */, + 0B792C3F31713850818EEFEB /* LexDMAP.cxx in Sources */, DC5F82733F733D98B39DE74D /* LexDMIS.cxx in Sources */, - 0C2CBD7246993527A829BD95 /* LexDataflex.cxx in Sources */, - 51F44CB1D9AD3CBDB52EE93D /* LexDiff.cxx in Sources */, - AAC2AC9C49F1366D8BD20F60 /* LexECL.cxx in Sources */, + 0C2CBD7246993527A829BD96 /* LexDataflex.cxx in Sources */, + 51F44CB1D9AD3CBDB52EE93F /* LexDiff.cxx in Sources */, + AAC2AC9C49F1366D8BD20F5E /* LexECL.cxx in Sources */, 67CE7065EE593DAAA2CE4489 /* LexEDIFACT.cxx in Sources */, 4788F736CD9C324E8A3DFA76 /* LexEScript.cxx in Sources */, E8BBC08597EF383597DA0308 /* LexEiffel.cxx in Sources */, - BFD3BFBDC8DA3B1EAD141F97 /* LexErlang.cxx in Sources */, + BFD3BFBDC8DA3B1EAD141F98 /* LexErlang.cxx in Sources */, 8D6B0D48EA843E48AB0FE43E /* LexErrorList.cxx in Sources */, 512AB7B82D57387EBB7BEE28 /* LexFSharp.cxx in Sources */, 45D88A74B3EE3837B9F79596 /* LexFlagship.cxx in Sources */, - 27759C2FBB0E35FDA847B2B5 /* LexForth.cxx in Sources */, - 020BBB417207393F8C60EFB7 /* LexFortran.cxx in Sources */, + 27759C2FBB0E35FDA847B2B7 /* LexForth.cxx in Sources */, + 020BBB417207393F8C60EFB8 /* LexFortran.cxx in Sources */, E62F8E49FD5035D8BC71BB4B /* LexGAP.cxx in Sources */, - 807450BB072C3C0D9C52A3B8 /* LexGDScript.cxx in Sources */, + 807450BB072C3C0D9C52A3B6 /* LexGDScript.cxx in Sources */, 9B6A35E706543CDAA6A5014C /* LexGui4Cli.cxx in Sources */, - AEEE6BC41B6531898A61CB17 /* LexHTML.cxx in Sources */, + AEEE6BC41B6531898A61CB18 /* LexHTML.cxx in Sources */, 51D133EC44F830588FEEAEC2 /* LexHaskell.cxx in Sources */, - D98FABF75BCE3AF18C91B42F /* LexHex.cxx in Sources */, + D98FABF75BCE3AF18C91B42D /* LexHex.cxx in Sources */, D948CC99521633338B24E2F7 /* LexHollywood.cxx in Sources */, - 4D9368BD07F131C493232E2D /* LexIndent.cxx in Sources */, - B37802B0A90133C68EF93DDC /* LexInno.cxx in Sources */, + 4D9368BD07F131C493232E2E /* LexIndent.cxx in Sources */, + B37802B0A90133C68EF93DDB /* LexInno.cxx in Sources */, B0C44C3054CB3E0590DDCBDA /* LexJSON.cxx in Sources */, - 4C31B77B28343F20B4973366 /* LexJulia.cxx in Sources */, + 4C31B77B28343F20B4973367 /* LexJulia.cxx in Sources */, E3AD8574E13B39BDB8D4E92E /* LexKVIrc.cxx in Sources */, - 14C024EB327435A2A571DA2D /* LexKix.cxx in Sources */, - 62331487C17B32E081B8FEA9 /* LexLaTeX.cxx in Sources */, + 14C024EB327435A2A571DA2E /* LexKix.cxx in Sources */, + 62331487C17B32E081B8FEA8 /* LexLaTeX.cxx in Sources */, DF8124E5E17D386A84CEEA27 /* LexLisp.cxx in Sources */, - D13AE659C3AC37B68D39B2CB /* LexLout.cxx in Sources */, + D13AE659C3AC37B68D39B2C9 /* LexLout.cxx in Sources */, 9D003890CB7035A298DB7057 /* LexLua.cxx in Sources */, - 3C394FBD47B6310C80577E3C /* LexMMIXAL.cxx in Sources */, - EC43AFB3670A3D459D9B388D /* LexMPT.cxx in Sources */, - E8EE34F0A78C31B489B19FEF /* LexMSSQL.cxx in Sources */, - E80BEED62EBF34F09B3F4020 /* LexMagik.cxx in Sources */, - 4301AFBA0A193A7EB392EB93 /* LexMake.cxx in Sources */, + 3C394FBD47B6310C80577E3B /* LexMMIXAL.cxx in Sources */, + EC43AFB3670A3D459D9B388E /* LexMPT.cxx in Sources */, + E8EE34F0A78C31B489B19FF0 /* LexMSSQL.cxx in Sources */, + E80BEED62EBF34F09B3F401F /* LexMagik.cxx in Sources */, + 4301AFBA0A193A7EB392EB92 /* LexMake.cxx in Sources */, E0E40333B61C33B587870790 /* LexMarkdown.cxx in Sources */, - 5AEA6E94FB76371D928D371E /* LexMatlab.cxx in Sources */, + 5AEA6E94FB76371D928D371C /* LexMatlab.cxx in Sources */, 4E712589FAA837F589B72F4E /* LexMaxima.cxx in Sources */, - 1A4F9F18BBEB3515AC7C7CC6 /* LexMetapost.cxx in Sources */, - 7CC211E10D853B958250A4D0 /* LexModula.cxx in Sources */, - CB1F37993ECB3B73A51B42FE /* LexMySQL.cxx in Sources */, + 1A4F9F18BBEB3515AC7C7CC8 /* LexMetapost.cxx in Sources */, + 7CC211E10D853B958250A4CF /* LexModula.cxx in Sources */, + CB1F37993ECB3B73A51B42FD /* LexMySQL.cxx in Sources */, D3EC9191D94837CABFF05DC6 /* LexNim.cxx in Sources */, A874AF0B203D3DC99C27469C /* LexNimrod.cxx in Sources */, - 22C76BF2C3E331CD87657E70 /* LexNsis.cxx in Sources */, + 22C76BF2C3E331CD87657E6E /* LexNsis.cxx in Sources */, A8476B3CE46B3FD4A2832F02 /* LexNull.cxx in Sources */, 324B2BAC54553D45B3C56BFE /* LexOScript.cxx in Sources */, 76D1A1A49CC831FFB9EBB1F7 /* LexOpal.cxx in Sources */, 24A5A71C79733E9CB913C5B7 /* LexPB.cxx in Sources */, - 0D79F1B4EF44393AA3242141 /* LexPLM.cxx in Sources */, + 0D79F1B4EF44393AA3242140 /* LexPLM.cxx in Sources */, FD3B31CE1E7832218B5D9A17 /* LexPO.cxx in Sources */, - A3C4D47A84E8362295867527 /* LexPOV.cxx in Sources */, - 551BF168445E3D7BB54D0176 /* LexPS.cxx in Sources */, - 0718E7524134312090541D6E /* LexPascal.cxx in Sources */, + A3C4D47A84E8362295867526 /* LexPOV.cxx in Sources */, + 551BF168445E3D7BB54D0174 /* LexPS.cxx in Sources */, + 0718E7524134312090541D6F /* LexPascal.cxx in Sources */, 369BCCFF61D13A058D837835 /* LexPerl.cxx in Sources */, - 22EC132AEF863BFBAA6EDEC4 /* LexPowerPro.cxx in Sources */, - 1FB1622D59593932B25C55BB /* LexPowerShell.cxx in Sources */, - 97C551F8AEF133D680D1FD37 /* LexProgress.cxx in Sources */, - 56E1ED31F7CE38978F4A7CA0 /* LexProps.cxx in Sources */, - A36B5107860E326591940740 /* LexPython.cxx in Sources */, - 31380AD4F5BD38A6B9212FE2 /* LexR.cxx in Sources */, + 22EC132AEF863BFBAA6EDEC5 /* LexPowerPro.cxx in Sources */, + 1FB1622D59593932B25C55BA /* LexPowerShell.cxx in Sources */, + 97C551F8AEF133D680D1FD38 /* LexProgress.cxx in Sources */, + 56E1ED31F7CE38978F4A7CA1 /* LexProps.cxx in Sources */, + A36B5107860E32659194073F /* LexPython.cxx in Sources */, + 31380AD4F5BD38A6B9212FE1 /* LexR.cxx in Sources */, 81244C52741332A8B92E5977 /* LexRaku.cxx in Sources */, - CCFD3144A22C3A87B67D88AB /* LexRebol.cxx in Sources */, - 3694B007E88A3D8C8CB952F2 /* LexRegistry.cxx in Sources */, - 7C20B79175D33852A2E9DE84 /* LexRuby.cxx in Sources */, - 502D7B786EAE383B9546F320 /* LexRust.cxx in Sources */, - 1DD1888315513C24BF9C31B5 /* LexSAS.cxx in Sources */, + CCFD3144A22C3A87B67D88AD /* LexRebol.cxx in Sources */, + 3694B007E88A3D8C8CB952F1 /* LexRegistry.cxx in Sources */, + 7C20B79175D33852A2E9DE83 /* LexRuby.cxx in Sources */, + 502D7B786EAE383B9546F31F /* LexRust.cxx in Sources */, + 1DD1888315513C24BF9C31B4 /* LexSAS.cxx in Sources */, FE5B7C7A84B83C17A38E8405 /* LexSML.cxx in Sources */, - 71CCB06E790C3C54BFF1199F /* LexSQL.cxx in Sources */, - E46BEC5C8D643BD099AF1D56 /* LexSTTXT.cxx in Sources */, - BA9F0BBD57F63FD29E484FD3 /* LexScriptol.cxx in Sources */, - F55F3887CDE633D7877C607C /* LexSmalltalk.cxx in Sources */, - D5C5DD83882B3227A1CCFE10 /* LexSorcus.cxx in Sources */, - 6F8129E317EE3486A89D8548 /* LexSpecman.cxx in Sources */, - 9678C2B19D293818AA8E9E0D /* LexSpice.cxx in Sources */, - 444D3B969B4336E8AD5CCFBF /* LexStata.cxx in Sources */, + 71CCB06E790C3C54BFF1199D /* LexSQL.cxx in Sources */, + E46BEC5C8D643BD099AF1D58 /* LexSTTXT.cxx in Sources */, + BA9F0BBD57F63FD29E484FD4 /* LexScriptol.cxx in Sources */, + F55F3887CDE633D7877C607D /* LexSmalltalk.cxx in Sources */, + D5C5DD83882B3227A1CCFE0F /* LexSorcus.cxx in Sources */, + 6F8129E317EE3486A89D854A /* LexSpecman.cxx in Sources */, + 9678C2B19D293818AA8E9E0F /* LexSpice.cxx in Sources */, + 444D3B969B4336E8AD5CCFC1 /* LexStata.cxx in Sources */, 0F8C79010EF0316AA1B7392E /* LexTACL.cxx in Sources */, - 2102C23970FB3F22AB46A59C /* LexTADS3.cxx in Sources */, - CAF5C5BB129431B596C4C6C1 /* LexTAL.cxx in Sources */, - 49BEDFBC3661339D90EF6935 /* LexTCL.cxx in Sources */, + 2102C23970FB3F22AB46A59A /* LexTADS3.cxx in Sources */, + CAF5C5BB129431B596C4C6C2 /* LexTAL.cxx in Sources */, + 49BEDFBC3661339D90EF6937 /* LexTCL.cxx in Sources */, 697FC496816F33568E1FB5A5 /* LexTCMD.cxx in Sources */, - 7D0E549020D33ED39751DFCA /* LexTeX.cxx in Sources */, + 7D0E549020D33ED39751DFC8 /* LexTeX.cxx in Sources */, BA57708D2D563967A0D1F004 /* LexTxt2tags.cxx in Sources */, - D4EC9DB5F8DF319EA0FD26A6 /* LexVB.cxx in Sources */, - 16021CFD78623B8CBD08FC20 /* LexVHDL.cxx in Sources */, + D4EC9DB5F8DF319EA0FD26A5 /* LexVB.cxx in Sources */, + 16021CFD78623B8CBD08FC1F /* LexVHDL.cxx in Sources */, 3C5E1A45A57B3169A4C073DB /* LexVerilog.cxx in Sources */, - 9CC92BB4B0E233A0A7F81279 /* LexVisualProlog.cxx in Sources */, - 5E80C103F0853788A2B43E5E /* LexX12.cxx in Sources */, + 9CC92BB4B0E233A0A7F8127B /* LexVisualProlog.cxx in Sources */, + 5E80C103F0853788A2B43E5F /* LexX12.cxx in Sources */, 159E4248CB1333AD841D9F04 /* LexYAML.cxx in Sources */, - 91364FDD73053139BBAA313B /* Accessor.cxx in Sources */, + 91364FDD73053139BBAA313D /* Accessor.cxx in Sources */, A08165E5D38E3EF6962A7AEA /* DefaultLexer.cxx in Sources */, A9B91FC69E473BE18895ABAC /* InList.cxx in Sources */, - D759231BC07232C0A52515A8 /* LexAccessor.cxx in Sources */, - AA54EDC7C94730D1A31F059F /* LexCharacterCategory.cxx in Sources */, - A191AA29BDF83BB090A9DF51 /* LexCharacterSet.cxx in Sources */, + D759231BC07232C0A52515A7 /* LexAccessor.cxx in Sources */, + AA54EDC7C94730D1A31F059E /* LexCharacterCategory.cxx in Sources */, + A191AA29BDF83BB090A9DF4F /* LexCharacterSet.cxx in Sources */, 46395873DB1C3B7FA81DE5F8 /* LexerBase.cxx in Sources */, DF3B927516FB365E865A9781 /* LexerModule.cxx in Sources */, F6288F388B8C33FD85E9A155 /* LexerNoExceptions.cxx in Sources */, - 1C544DADDA6F3D62A5E25E95 /* LexerSimple.cxx in Sources */, + 1C544DADDA6F3D62A5E25E94 /* LexerSimple.cxx in Sources */, 7DEC57D6CE8232A09EF7421B /* PropSetSimple.cxx in Sources */, - CD241361D4693785A0B8939E /* StyleContext.cxx in Sources */, + CD241361D4693785A0B8939D /* StyleContext.cxx in Sources */, 6C80B6049A523836BCD20BCA /* WordList.cxx in Sources */, 46327A3C356D3570B27C6702 /* Lexilla.cxx in Sources */, - C2DEE063B5E032C1BD2B5027 /* xmlparse.c in Sources */, - AE84BC9A1CCA3ADA9C483952 /* xmlrole.c in Sources */, - DB9565CC4EAE3BCB9F490622 /* xmltok.c in Sources */, + C2DEE063B5E032C1BD2B5026 /* xmlparse.c in Sources */, + AE84BC9A1CCA3ADA9C483950 /* xmlrole.c in Sources */, + DB9565CC4EAE3BCB9F490621 /* xmltok.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/build/osx/wxiphone.xcodeproj/project.pbxproj b/build/osx/wxiphone.xcodeproj/project.pbxproj index 945b34ede5cd..d4d2fe308528 100644 --- a/build/osx/wxiphone.xcodeproj/project.pbxproj +++ b/build/osx/wxiphone.xcodeproj/project.pbxproj @@ -7,1841 +7,1841 @@ objects = { /* Begin PBXBuildFile section */ - C5C60B22CE6A3BCB868F69E8 /* pcre2_find_bracket.c in Sources */ = {isa = PBXBuildFile; fileRef = 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */; }; - B0FD1B96EAE635AFBFCF2C91 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C044 /* secretstore.cpp */; }; - 5F78DB0417BF3CE1B4E35C7F /* stackwalk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA2520F427493A22A70A5C09 /* stackwalk.cpp */; }; - CBBD7B32DB7B3E24AE745D78 /* epolldispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */; }; - 9D003890CB7035A298DB7056 /* LexLua.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5145561C78303EEE9F827962 /* LexLua.cxx */; }; - 633DD2E870263F42A8DBF9BF /* markuptext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */; }; - 522E6CF2A62F34259BCE2DE2 /* tif_flush.c in Sources */ = {isa = PBXBuildFile; fileRef = 305614D19CF23CB2B14A5B2E /* tif_flush.c */; }; - 51D133EC44F830588FEEAEC0 /* LexHaskell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */; }; - E7D02E64384F37BC8939A2C4 /* jdpostct.c in Sources */ = {isa = PBXBuildFile; fileRef = 375FF97B202F3C359402D13E /* jdpostct.c */; }; - D13596A4E3CD31DE810061A1 /* imagjpeg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6876262846EA3569B36D92E9 /* imagjpeg.cpp */; }; - B6728BCD1A0731299924C8C4 /* pcre2_substring.c in Sources */ = {isa = PBXBuildFile; fileRef = 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */; }; - E53AFF04877D34C386D77380 /* wfstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C37866F41B0C31E295AA7FA6 /* wfstream.cpp */; }; - 5303FA25D0773FAEB963D8E3 /* scrolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = CC2E24773D853A77B9FEFA4C /* scrolbar.mm */; }; - F80C2290D67B345F9CF60085 /* dpycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A37E3D1FB4FB31AFAE88665A /* dpycmn.cpp */; }; - 893BDA491EDE3A0E91FADE40 /* nonownedwnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */; }; - DFEB01E7B97A3515B785DCA9 /* pcre2_string_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */; }; + E0FAB345D2933D42B62917A3 /* bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36296C259D023EAAA240FC79 /* bannerwindow.cpp */; }; + CEC6430AEB6E3200BFA75D07 /* jfdctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */; }; + 61FEDBF2D47A3B4E861F8296 /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F4 /* sound.cpp */; }; + 41943A8F82723027A151A468 /* fileconf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */; }; + FADD46CB89B135D1AF1D5F8A /* richtextstyledlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */; }; + 3C0EB1DDA5243E31B2D92CE2 /* jquant2.c in Sources */ = {isa = PBXBuildFile; fileRef = 02D9332D5C5632E981936E29 /* jquant2.c */; }; + BF3D600A93403C589B65C5BF /* xh_stlin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F555177554E398286DBC6FB /* xh_stlin.cpp */; }; + 0F2FD12272023C869CE86008 /* filter_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */; }; + 1EA81A0E8E5A3B38B4D80337 /* srchcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF103B09F02315282EC8F44 /* srchcmn.cpp */; }; + 0D6596A44A8C37DE85D578F6 /* Document.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 71DB140E670738839EC42C2B /* Document.cxx */; }; 5388468A6F8F3141B25CD400 /* treebkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7925E38823563BCDB5565DCF /* treebkg.cpp */; }; - EC3A1C620D323B5590AABF02 /* module.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DB43FAB1E563B02ACEFF647 /* module.cpp */; }; - 77BC918AF05C30E8A0BD27F8 /* tipdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */; }; - 20F10669703137E68318C6FD /* cmndata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */; }; - 39D6435B10073B85A499AFD8 /* dcbufcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBC5A5797B0D369291A76D6E /* dcbufcmn.cpp */; }; - E1A20811148F31D289AF98AF /* xh_sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */; }; - 57B41B6BACFB3906ACD1BFAF /* pcre2_jit_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */; }; - E3AD8574E13B39BDB8D4E92E /* LexKVIrc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */; }; - 1EE845DDFDDE36CA8A218205 /* tif_close.c in Sources */ = {isa = PBXBuildFile; fileRef = F82278F9AF0432529891E6D7 /* tif_close.c */; }; - 5FE969523BDB3353AEF96810 /* xh_filepicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */; }; - EDD92822EBD93E86AE5A2ED0 /* slidercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8072CA67D19346ABF4D465F /* slidercmn.cpp */; }; - 8966F77CC97B3ED780C8F137 /* xh_bmpcbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */; }; - D13AE659C3AC37B68D39B2C9 /* LexLout.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B14D6E7E15FD3C869E341198 /* LexLout.cxx */; }; - 4CF9BA40653C3153805D88AB /* arcfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C513377E9E303F778BA9D7ED /* arcfind.cpp */; }; - F0B3F484C38C3BA0B9927CD9 /* docmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */; }; - 02E8F1195B653D26AAA89462 /* listbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */; }; - 87C67583D36C3465ACD64103 /* vlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA90128E29A03CCCA30F4D35 /* vlbox.cpp */; }; - 221DC4F6678A3EC5ACDDEA4F /* statbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */; }; - DF8CE011EAC23F73BDA1C44D /* scrolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */; }; - E39021D3CDCD33BAA646B006 /* sckaddr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8238DA30FF3FB984511250 /* sckaddr.cpp */; }; - B1E30CF6CFA932F5A3DBA94F /* docview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB634FD597793A74B3B3AA7F /* docview.cpp */; }; - FEF99FF6C38D3B488396B142 /* ffile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */; }; - E3A4615870B139D29FE727C1 /* menucmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F175D6E8E5723FC797701275 /* menucmn.cpp */; }; - 1CBF34ACA39330028A5EA9AC /* xmlreshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */; }; - 3E99016BDE043A08B4D6B3CE /* htmprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 194ADD28300E329E80F7892E /* htmprint.cpp */; }; - 319FB8E64CE731D6A58AD301 /* clntdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C904B4BA8273355869812B2 /* clntdata.cpp */; }; - 14D6D5F8F5ED3C71936DD2AF /* button.mm in Sources */ = {isa = PBXBuildFile; fileRef = C06FED83BF933DF98C2466AE /* button.mm */; }; - F910C74E48823E0BA7F7885D /* graphicc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BACAA6CE4A0934459F26B27C /* graphicc.cpp */; }; - 45E15DBB6B69382D8AF1BA21 /* pcre2_dfa_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */; }; - E8BBC08597EF383597DA0308 /* LexEiffel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 55EBB18CB4773C788510B14B /* LexEiffel.cxx */; }; - 0F8C79010EF0316AA1B7392D /* LexTACL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E5C91072D533919A78D8ED2 /* LexTACL.cxx */; }; - B4425B59CC27389CA9FF81D1 /* datectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE856D950B8C369EB0FE13BA /* datectlg.cpp */; }; - 0742292656623EC481B34369 /* paper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87D973CA8D673267BD0844D3 /* paper.cpp */; }; - CEE0D7A7D5D8323B9957A780 /* notifmsgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */; }; - 369BCCFF61D13A058D837835 /* LexPerl.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */; }; - 07C769F64665317BA3E1AC90 /* tif_jpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */; }; - 72AD4417FF7C3094BB1FF62C /* xh_grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93B77251C0E0382D9A8E113D /* xh_grid.cpp */; }; - AD4A533C4E1633598A6D5C6F /* textentrycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F63BF9430CE371DA04AC900 /* textentrycmn.cpp */; }; - F5D2146C94E733FAAB6D286A /* threadpsx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB466912FDA23F8B87A00A3C /* threadpsx.cpp */; }; - AE5286C71D1130EAA368A1C4 /* radiobtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 724927B0045F3CC0884878BB /* radiobtncmn.cpp */; }; - 3D22FC202D903007AEE3D164 /* fdiounix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */; }; - 4E712589FAA837F589B72F4C /* LexMaxima.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */; }; - 319EA32592DA3C74B86DDDFF /* wxcrt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FC98E2305230E2990471E3 /* wxcrt.cpp */; }; - BAAB6B1D80A33843A8436B10 /* appunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */; }; - BF2585CFA6853023975F1E78 /* iconbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */; }; - 9564A6968D66325DAEADEBA3 /* dcgraph.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */; }; - B8A98F209934399DA45C2386 /* fs_data.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */; }; - BDB8EF0E0DA03693BFB77EF7 /* accesscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8555204EBA8930809B732842 /* accesscmn.cpp */; }; - D5A25AC579F436509805335A /* appbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95A156A823B536DE8476E4F9 /* appbase.cpp */; }; - 11818B68C5263EB68D708845 /* jdtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 4549845C0751356A907C23E0 /* jdtrans.c */; }; - 6138BCBC8E4438FA91E0EF9F /* xh_chckb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */; }; - C67EAE20657E36839BF86690 /* richtooltipg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */; }; - 87AA9C5D887B3C31A2AFB49D /* htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD5F11A3646F397BA62EB037 /* htmllbox.cpp */; }; - 1C52CB9487DF3AB9AF243B47 /* prntbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 242BF97B558634A79322052C /* prntbase.cpp */; }; - 50D7E093424138C88BB50D27 /* jcsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 53D06E47477B3E32BB6B915E /* jcsample.c */; }; - 87092C0C817D343DAB77E23E /* xh_scwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */; }; - 2E059BFE8E3B3D9299D55969 /* textmeasure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B31409EC6532FC83B0B957 /* textmeasure.cpp */; }; - E49F0D43B5A63EF1A57A7112 /* fswatcherg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */; }; - 2E930206397C3EDCBD8206FC /* gridctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */; }; - DEB35F871F8E3B90AD207AEE /* printps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF76670146413EEFA005206A /* printps.cpp */; }; - 4CB3626391CE34D4B1F71AA0 /* jdatasrc.c in Sources */ = {isa = PBXBuildFile; fileRef = DECAF5DD80383A2CA76EB383 /* jdatasrc.c */; }; - 5116CE330E333724A66982E3 /* rearrangectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972BC9B2B0D438EFB12BCE1E /* rearrangectrl.cpp */; }; - A9864F0104FA344BBE79D3BC /* rendcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96CED508FA3C3B6B9265099E /* rendcmn.cpp */; }; - E5D698D2606A304DA743AF92 /* grideditors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66426B63AA3E3A279936C034 /* grideditors.cpp */; }; - A08165E5D38E3EF6962A7AE9 /* DefaultLexer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */; }; - EE972E8DC73F310B9B4C949C /* webrequest_curl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5279968877003A8BB8279765 /* webrequest_curl.cpp */; }; - D54D3CA9E73336A08DB20705 /* LexBaan.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */; }; - D088E7DDE38C31DC9C9B3417 /* dcclient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17772732159304AA7312D72 /* dcclient.cpp */; }; - 6D073876E1753549B5EEFDDA /* tif_compress.c in Sources */ = {isa = PBXBuildFile; fileRef = CA0D5D47D62A3148BA51B31B /* tif_compress.c */; }; - 4269B85FDC5639BEB76A8AEB /* nonownedwnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */; }; - EDCA35F1555F3509895CCA69 /* textctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */; }; - CA85901B9E2538CFB7E44216 /* process.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B35DA585CFDD32468868E892 /* process.cpp */; }; - 30AEDF41EC5C374DBF96EFFB /* slider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B862D1027C4367BBF44420F /* slider.mm */; }; - 8B60964DA1DF3F3DB40BE123 /* datavgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F3D473DC5123EDAB767045C /* datavgen.cpp */; }; - DAAFBED07FF8365B96D20B99 /* unichar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */; }; - E9EDB5C92D5D3B529E8D73B0 /* valgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7440859617F3B47AF4D3817 /* valgen.cpp */; }; - F85D632964383F29BC3B30B6 /* tif_next.c in Sources */ = {isa = PBXBuildFile; fileRef = DFDC805DD3063C389F93642D /* tif_next.c */; }; - DD1B139EA5AD3F6DB92C0FA8 /* EditModel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E685D81FB9FF3081B6C5C321 /* EditModel.cxx */; }; - FECC98B53C0F3106AB04E69E /* tif_fax3.c in Sources */ = {isa = PBXBuildFile; fileRef = 30FD1048328234E59D319863 /* tif_fax3.c */; }; - 652CFDD9A1C1366E99B5D6BC /* socketiohandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */; }; - CDC0FF253B503BA19693D68D /* xh_propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */; }; - ABCD15C4AB37396EA17B7B28 /* translation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AC666417602346EA583709E /* translation.cpp */; }; - CB078622E90F33BE9D131131 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28825 /* buttonbar.cpp */; }; - 4DA209AEF4AD32AAB97F9718 /* htmlcell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68E5188DB6003C35A8C7754D /* htmlcell.cpp */; }; - 46CE8B53D2663927AAE5DF9D /* xh_treebk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */; }; + 02BB539E2AD63C078DA776B0 /* uiaction_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */; }; + F4C0CEADEDC23610BF6983D6 /* artmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0665A40F3FC3F218074C63C /* artmac.cpp */; }; + D759231BC07232C0A52515A6 /* LexAccessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */; }; + B5C7FD8C27F43F3289A77FC9 /* utilsunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */; }; 268DDC88C99A3A64AB8B2FFA /* LexCaml.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B3B8AD0120F3EA6BF5B0AE0 /* LexCaml.cxx */; }; - BA57708D2D563967A0D1F003 /* LexTxt2tags.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */; }; - AEB9099819B33F4A8AAB9F54 /* radiocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */; }; - F24F637D59F637CA9A7E23C9 /* xh_filectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */; }; - 9B8E5690A6103FC1BDC6C47E /* pngread.c in Sources */ = {isa = PBXBuildFile; fileRef = 29D6506AEA5A323B8735F126 /* pngread.c */; }; - E104017EE1A4357DAF84E1E6 /* auibook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A298576700C33F018616E7BD /* auibook.cpp */; }; - F9C5EAC42CCF3267B4100BAE /* wakeuppipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */; }; - 743BB23211B336A6A0F26E57 /* jcapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = F83172EE2DAE352FB969D4F2 /* jcapistd.c */; }; - 46F341B46F80376B962759F5 /* animateg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 580AFC66F3003582B43043B1 /* animateg.cpp */; }; - 9A63148F193E33B5964DD029 /* uilocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */; }; - 91EA325FCE3A3A6A8D1D21A5 /* srchctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */; }; - 5519BA1F2463308FAC4A0C9F /* LexAVS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 57E4784E521339BEB971D81D /* LexAVS.cxx */; }; - 00E12455C98032E18378EE5E /* pcre2_newline.c in Sources */ = {isa = PBXBuildFile; fileRef = A208BFC0C8C43847A9620ADA /* pcre2_newline.c */; }; - 215958201947310B88BBEDB3 /* statbmp.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD6B26B5A6A733A89EF5AB9C /* statbmp.mm */; }; - 4040AE89BF9F34668091064A /* dragimgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A67053D16D63C588E555C84 /* dragimgg.cpp */; }; - 3D3EA1BAAD1833B1B48E9C86 /* xh_stbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */; }; - 4657479AF35533AEB7876676 /* helpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB30516233A39BE809405AA /* helpbase.cpp */; }; - 4E396D8D2E9138D797F320C6 /* tif_aux.c in Sources */ = {isa = PBXBuildFile; fileRef = D0CDADAF2D893E32A38351E4 /* tif_aux.c */; }; - DC7D78BABF823480B56528AC /* xh_propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73962222F573116BE63576C /* xh_propgrid.cpp */; }; - BD49EC50CB363642BDBF25C8 /* mousemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D037EA567C253DEEA17E822B /* mousemanager.cpp */; }; - F3AC352D6DAE3A12A5664768 /* styleparams.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */; }; - F3CB42BB6D983675862C01F3 /* xh_toolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */; }; - 246B4FF96BA135258FE45F4F /* encconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */; }; - 81B742D64BEB373DB705947A /* m_list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4028ABB08C63AB59F5F240B /* m_list.cpp */; }; - 4958BD2E717A3F03AB030188 /* tbarbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3F32C01D122301AB00D06A5 /* tbarbase.cpp */; }; + E3AD8574E13B39BDB8D4E92E /* LexKVIrc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */; }; + F0D892C2618130FEAD46BB86 /* panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00969CBE3B8F32C78C195619 /* panel.cpp */; }; EDD5725CF41336EFA7FB3009 /* framecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A54B80C17F823CB5900AD2E8 /* framecmn.cpp */; }; - 33ED014A7FF7398794E6E4CF /* xh_split.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */; }; + 6E2C2E8AA1713ADE9C338379 /* tif_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 726C0457DF1232C793918DC1 /* tif_zip.c */; }; + AE95E3BDEDB7358DBE9E7E5A /* webview_chromium.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2718D06670953933B897B0D8 /* webview_chromium.cpp */; }; + 5C44446AB150378696CD6B3C /* bmpcboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */; }; + 1B06622C8D8731FC832199E2 /* init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB82939EDC593F9CA95C3098 /* init.cpp */; }; + 774EB9F3F7E93A379E1F7551 /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C4762898E5330C28651EE73 /* graphics.cpp */; }; + AEB9099819B33F4A8AAB9F54 /* radiocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */; }; + 048986FB629E313EA670CD0C /* webviewfshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */; }; + AD7EEB418C7930CB828EAF87 /* dynlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D272910EC35531E5B4D6E05B /* dynlib.cpp */; }; + 5116CE330E333724A66982E3 /* rearrangectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972BC9B2B0D438EFB12BCE1E /* rearrangectrl.cpp */; }; + 91BDA5B04CF33C9AB7358B8A /* timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69F098E47EBF34368ABAE7ED /* timer.cpp */; }; + 93E04642049537EB8A37BA26 /* htmlwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */; }; + 551BF168445E3D7BB54D0174 /* LexPS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = EDB48813110636DBA045BF3A /* LexPS.cxx */; }; + E741CDA71895344C974D8F50 /* AutoComplete.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */; }; + B97C178B47173E6AB0CE577B /* CaseConvert.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 274A156457C63EC5801029C2 /* CaseConvert.cxx */; }; + A423177BBC0F3BE5A436B4B7 /* propgridpagestate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */; }; + D66F55C93D1130F488970C05 /* pcre2_match_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */; }; 23CECD8647C037E0B41DF0D4 /* LexA68k.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7020ADB5D3E0375E875B418B /* LexA68k.cxx */; }; - E4B826CE70283D999CB591F3 /* listbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B99CA41708513A599AE275A2 /* listbox_osx.cpp */; }; - FBE4DB30865D3177B3A9993B /* xh_animatctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */; }; - 9FB1E1763EFA334CA0C07C49 /* tarstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */; }; - 527054445A0D3A00A5C2EC44 /* tif_thunder.c in Sources */ = {isa = PBXBuildFile; fileRef = 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */; }; - 62F1DC80D631335B892610A8 /* splitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C125FA3837C631A9BE0ED5E7 /* splitter.cpp */; }; - 131B879180AE3FB481F81CC7 /* fs_mem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A305CEC03B3085B159B617 /* fs_mem.cpp */; }; + A53B8C3ED0D33A1D9AA8219A /* toolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3BF8C9FF2D5314591329D0D /* toolbar.mm */; }; + 7625D908B2CD34C78243BA8F /* settcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABE3DC4AA47D39ACA83F27C0 /* settcmn.cpp */; }; + A80D00249A693F43A9CBE777 /* rgncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63867276260C3F4A980E83D8 /* rgncmn.cpp */; }; + AF1E3338E892336E924AF631 /* pickerbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */; }; + 028257C52CAE3038AA862C35 /* stdstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE16011AD6323AAC8616F973 /* stdstream.cpp */; }; + 6F5A0D3C7763334396A3783D /* LexCmake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */; }; + 25B0940CABAB39CD90C6F3C5 /* intel_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 994AF74DF2A13FF09A215853 /* intel_init.c */; }; + 070797A894A03196B7BEC661 /* xh_bookctrlbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */; }; + 6CA1BAEBBDB4336E9E201F95 /* protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */; }; + EBF2D44758003221A22202BC /* colourcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D61240ABD70328BA5789663 /* colourcmn.cpp */; }; + CB078622E90F33BE9D131131 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28824 /* buttonbar.cpp */; }; + E49F0D43B5A63EF1A57A7112 /* fswatcherg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */; }; + 95AD56D602CF3C5085602AF8 /* geometry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC0A61629E635FAB4E09505 /* geometry.cpp */; }; + 1C544DADDA6F3D62A5E25E93 /* LexerSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CF502E0E4D853CBBBEC885EF /* LexerSimple.cxx */; }; + D5C5DD83882B3227A1CCFE0E /* LexSorcus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */; }; + 78E15D8200F635529F396099 /* LexBullant.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6718204F4700318E89EAC906 /* LexBullant.cxx */; }; + 1DBDF75500D73A3098015E7F /* cfstring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */; }; + C3A63D7091913CD39094AE0B /* btncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A7A3B499503ECABC6A838F /* btncmn.cpp */; }; + F1E4D7CA634E33808AE3B522 /* fontenumcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 373242CD08F330208A7CF438 /* fontenumcmn.cpp */; }; + 36DB80FD5B153E9099DB6912 /* imaggif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */; }; + C5419BC04D6234B5A8307B81 /* xti.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25C86D3D4839343BA1D8BDEE /* xti.cpp */; }; + 6BC8B3EDB3AE3EF4BACFC08A /* ContractionState.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5219A792C6A736F193D4A82F /* ContractionState.cxx */; }; + D542C7819D593112AE5F7C3D /* combocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */; }; + A874AF0B203D3DC99C27469A /* LexNimrod.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */; }; + 86787E4138CC334BB74EC7B4 /* palette_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */; }; + F5D0BCF1A6C839E5829199E2 /* sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */; }; + 4C31B77B28343F20B4973366 /* LexJulia.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */; }; + B1775EF7C72233408044034B /* radiobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 773D91F8280434519BD167EA /* radiobox_osx.cpp */; }; + 893BDA491EDE3A0E91FADE40 /* nonownedwnd.mm in Sources */ = {isa = PBXBuildFile; fileRef = AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */; }; + C5E5AB869065307F83E27DD1 /* htmlpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */; }; + B6728BCD1A0731299924C8C4 /* pcre2_substring.c in Sources */ = {isa = PBXBuildFile; fileRef = 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */; }; + 30493B486DFF35AF80D12C49 /* stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */; }; + 758629DA468A3EF7B1C15241 /* gifdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */; }; + 2F50DBC14FE538A49823925A /* calctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 496674699F173A5385EAFF07 /* calctrlg.cpp */; }; + D772334837693C9D88069D98 /* tif_webp.c in Sources */ = {isa = PBXBuildFile; fileRef = 3716DA7B0C79360CBA26A71E /* tif_webp.c */; }; + 7B642B17F5D23F4F8ED38BB4 /* graphcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BB59DD194923D6399087A75 /* graphcmn.cpp */; }; + 2102C23970FB3F22AB46A59A /* LexTADS3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A284E855892F3A9E9E19E854 /* LexTADS3.cxx */; }; + 57B41B6BACFB3906ACD1BFAF /* pcre2_jit_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */; }; + 2CCC30C0162131DBBE9D8027 /* dobjcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */; }; + E7AF3BF2B3473AD9BE66D1A1 /* xh_clrpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */; }; + 39CC380F801F3EE984523275 /* auibar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A4437E9697300390FDE14E /* auibar.cpp */; }; + 65E8A5F333D7336C816F0D0C /* variant.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31F4B9B03D52339B8F82C114 /* variant.cpp */; }; + 097BC5E023C33C1DA05606AF /* Selection.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2AF7739C389536F79DAA31E5 /* Selection.cxx */; }; + 20F10669703137E68318C6FD /* cmndata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */; }; + 7D0E549020D33ED39751DFC8 /* LexTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */; }; + 2E4747E0736B30569ACD5422 /* textbuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 701B84EE7C043B539FF5195A /* textbuf.cpp */; }; + 65AD3B31319C35F1AC9EC625 /* anybutton.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4020D790AE7363CB29F1C2F /* anybutton.mm */; }; + F747991E5C973F9B8C9D800A /* fontcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */; }; + B0E94A59C83637C09FAAE71C /* app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 757B31FCCA1F381C95B30DF8 /* app.cpp */; }; + D9F02AFDA07D3857A905527C /* jdcolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 68B81FBDA49D3C1991B6356A /* jdcolor.c */; }; + 796311E398FF313C84218824 /* uiactioncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87BF60D0D4A33E2AD2E1E25 /* uiactioncmn.cpp */; }; + 0D79F1B4EF44393AA324213F /* LexPLM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */; }; + AD4A533C4E1633598A6D5C6F /* textentrycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F63BF9430CE371DA04AC900 /* textentrycmn.cpp */; }; + 895E7FE46F733C75AE8847E3 /* DBCS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CDF592CBE5193497A26EF978 /* DBCS.cxx */; }; + 9B3F9D04FB533D99B58BD519 /* jfdctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */; }; + 0095084719983B878378CA28 /* pngwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 69A6CAF721E53E83B4820DE6 /* pngwrite.c */; }; + 4BAFAE70A6B1313B96D86630 /* page.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59ED0C057D8F388A89DC7177 /* page.cpp */; }; + 5A8638C234133824BDF93BBF /* gbsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */; }; + CB078622E90F33BE9D131132 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28825 /* buttonbar.cpp */; }; + 15D65A523EB23EC385C05E0B /* jquant1.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */; }; + 7C9EAFF4A0223EE597E0E39E /* xh_srchctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */; }; + 1A70DDEDF9E13FF4BDA390E9 /* bmpbndl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */; }; + 805CCAE64D023561AD334B53 /* popupwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 530DC2E26BF2313E8702AD43 /* popupwin.cpp */; }; + 4DD98A9436C83CF3B9425A78 /* sysopt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */; }; + 5C5D0983160A36189A770742 /* webviewarchivehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */; }; + CD35A576FD363FD49C3AC4B3 /* LexAda.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 375E7A99FF4C38FA9E223772 /* LexAda.cxx */; }; + 901F659891613419B8643952 /* calctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */; }; 19D823E564D932758EA6F8D1 /* UniConversion.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */; }; - 5ED54DFAE28533108C08DF2A /* pcre2_extuni.c in Sources */ = {isa = PBXBuildFile; fileRef = F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */; }; - 14C024EB327435A2A571DA2C /* LexKix.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B303230368143F37B2409DE6 /* LexKix.cxx */; }; - 8B87FEC23DB834EDBFB6EA32 /* pcre2_ucd.c in Sources */ = {isa = PBXBuildFile; fileRef = 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */; }; - 8A662992FFCB32E99D11950C /* commandlinkbuttong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */; }; - A1A7B833061C35B4AABD093C /* preferencesg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */; }; - DB73248401573A5996D8E68D /* jcmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 664736BDE465350C9C4750E9 /* jcmarker.c */; }; - 7C20B79175D33852A2E9DE83 /* LexRuby.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8734C52C7559310784396455 /* LexRuby.cxx */; }; - E82CB89681FF3747B6A94427 /* anybutton_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */; }; - 49260580A7F23B569A827D3F /* filefn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58421C141C9E31C6A7A3C183 /* filefn.cpp */; }; - AD7EEB418C7930CB828EAF87 /* dynlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D272910EC35531E5B4D6E05B /* dynlib.cpp */; }; - 096BA201623034AD97218368 /* tif_version.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E6F40F4740C3ED29D83E107 /* tif_version.c */; }; - 3E6AA08E72A030D39D867D4B /* ScintillaWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */; }; + BA7B12396B873FDA8F3A2748 /* xlocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 418AD9241B673308BE31DC06 /* xlocale.cpp */; }; + A5775D87FD713CBB930A783E /* bookctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */; }; + 9FB1E1763EFA334CA0C07C49 /* tarstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */; }; + 6C80B6049A523836BCD20BCA /* WordList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0E7BF9256DF533EBAE2B945E /* WordList.cxx */; }; + 9C6E9E4BA54733EF9F87E4B7 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 513033E36E643593AC305B3D /* uncompr.c */; }; + 03BF1610E2FC3BD5ACB754F0 /* bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */; }; + DF8CE011EAC23F73BDA1C44D /* scrolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */; }; + 67CE7065EE593DAAA2CE4489 /* LexEDIFACT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */; }; 24A5A71C79733E9CB913C5B7 /* LexPB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8744F2C80ECF375999195935 /* LexPB.cxx */; }; - 444D3B969B4336E8AD5CCFBF /* LexStata.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B61D36546E97371FAC5D4565 /* LexStata.cxx */; }; - BD2B17EB72E73A6EB6E0B26F /* dcmemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 343D4FDD5CC030618EF24729 /* dcmemory.cpp */; }; - 97F60B2A9CE93BC8949A8CCD /* LexCrontab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */; }; - A191AA29BDF83BB090A9DF4F /* LexCharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */; }; - 4657E7382E9E3EDC8DE2401E /* mimetype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C97C1F26B5A38C49543060C /* mimetype.cpp */; }; - A465A43B756630F1944B5A56 /* vscroll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1629FA905F903324AA5BE72C /* vscroll.cpp */; }; - 21F74D4D4D84375AB155FD5B /* stattext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95186FEF3DEF39D8B1157BD5 /* stattext.mm */; }; - A0FCE3CF565C3F84B63712AC /* LexCPP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9EF09C7CC5413CC6A5E7B21B /* LexCPP.cxx */; }; - FBA19C939E1E33EDB05043FE /* cairo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */; }; - FE5B7C7A84B83C17A38E8403 /* LexSML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */; }; - 1FB1622D59593932B25C55BA /* LexPowerShell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */; }; - 5C3B0ED2EA973DFDBFBCC692 /* richtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */; }; - A1AF8FF873D6383996995ECF /* statusbr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 071FEABEA61E3B559A47A7DB /* statusbr.cpp */; }; - FEB073547F3F3AC19D31F698 /* tif_tile.c in Sources */ = {isa = PBXBuildFile; fileRef = BD88495AF72531A28D2201D0 /* tif_tile.c */; }; - CB1F37993ECB3B73A51B42FD /* LexMySQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F3EE2E9EE05311497826962 /* LexMySQL.cxx */; }; - E63364B7E727383BA8E2B7EC /* datstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81B3DFBB73573FFDBD320334 /* datstrm.cpp */; }; - A3586433C4B1398FB1C361D6 /* m_image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 548906E4E72935E48CE4AF87 /* m_image.cpp */; }; - 1749412E53B9311DABA71DDC /* bmpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */; }; - 67CE7065EE593DAAA2CE4489 /* LexEDIFACT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */; }; - C005C2D547E735E9B081658E /* prntdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */; }; - 0095084719983B878378CA28 /* pngwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 69A6CAF721E53E83B4820DE6 /* pngwrite.c */; }; - B181806CC34839E791E54BF0 /* xh_tglbtn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */; }; - 0718E7524134312090541D6E /* LexPascal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */; }; - F501AB044AAC39DCB8C0B3E1 /* editors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C7F740A55E39FD890B3C7F /* editors.cpp */; }; - 2FAE979E6FE23D088C768B7D /* gridcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */; }; - F55F3887CDE633D7877C607B /* LexSmalltalk.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */; }; - 14EF556997B0350F931EBE8E /* jdinput.c in Sources */ = {isa = PBXBuildFile; fileRef = CCF7564A2B733F759AA8496B /* jdinput.c */; }; - D4C87E227A28391891D89088 /* filename.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */; }; - BA7B12396B873FDA8F3A2748 /* xlocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 418AD9241B673308BE31DC06 /* xlocale.cpp */; }; - 9F608A33D52D327FAA295624 /* sckfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56653FACC7D13804A70556AD /* sckfile.cpp */; }; - B198DA8239E9358A9D56B988 /* menu_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66C21CA37BF63893887FD91B /* menu_osx.cpp */; }; - 13A71672A59233D3A9B2D5E9 /* CharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B883F991159731DCB2717A21 /* CharacterSet.cxx */; }; - CD241361D4693785A0B8939D /* StyleContext.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */; }; - 26649553E4763EE6BA268B7D /* xh_gdctl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */; }; - 3399AB7BB1333B5AAF5FAF55 /* wrapsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */; }; - D6C3421AD2A537AAA2F0AB80 /* file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 168DB301ACC736FF96D7F581 /* file.cpp */; }; - BDB7B2AD26CB356B8BEAAECD /* jchuff.c in Sources */ = {isa = PBXBuildFile; fileRef = DC0FFDC7A6163F2DA73B84EB /* jchuff.c */; }; - 4301AFBA0A193A7EB392EB92 /* LexMake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3D5F00FC91343C35AF99F708 /* LexMake.cxx */; }; - 5A8638C234133824BDF93BBF /* gbsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */; }; - 7B372FEA276438C186F7E340 /* RunStyles.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */; }; - A9A5973552EE30838306D15C /* tif_packbits.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CE73979D0933A43830307E4 /* tif_packbits.c */; }; + D088E7DDE38C31DC9C9B3417 /* dcclient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17772732159304AA7312D72 /* dcclient.cpp */; }; + 8620088DDD233B139B250DD4 /* filter_sse2_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */; }; + A7692B4D8658347BA16EEB83 /* jmemnobs.c in Sources */ = {isa = PBXBuildFile; fileRef = 374E341C8703367686DEDE93 /* jmemnobs.c */; }; + BFD3BFBDC8DA3B1EAD141F96 /* LexErlang.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A1276C0E5D48337489DEE8DF /* LexErlang.cxx */; }; + ABBE59AC73E135D48965F209 /* xh_vlistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4466008861AA37CFB13A46EF /* xh_vlistbox.cpp */; }; + 0C9A379D97B133FA831175A7 /* printdlg_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */; }; + 2D60F289103837EA8925E3F1 /* dcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1EE17722EA937E88A7F0C01 /* dcbase.cpp */; }; + 97BAFEAD53E238B6881178DD /* evtloopcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 640783FBACA43206B782C77B /* evtloopcmn.cpp */; }; + 784F7C50882F320FA76537B5 /* LexAU3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C76222F466E831F896A89269 /* LexAU3.cxx */; }; + 84B3625464F732C3A79E1314 /* xh_bmpbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */; }; + 23A7AF68A03E380785EE7C24 /* object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1731D6708BFE3DE7B101CE74 /* object.cpp */; }; 03035C5CE4BC3288A5A18424 /* choicdgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */; }; + 0654BCC3F0763C50A7949504 /* LexAPDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */; }; + AC91349D7F0E37739B1F5165 /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEF6B3FB66243812969E5BD1 /* palette.cpp */; }; + E3136EF5DD843ACE886E2868 /* tif_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = E79B2D1F630036129B9677A7 /* tif_dir.c */; }; + E1F7C51F411B3AF39476E488 /* fdrepdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F094B0B07DF33BCA6077BC0 /* fdrepdlg.cpp */; }; + BFD4B8871B3934048B631419 /* languageinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67D76B026121359F9B22F8B0 /* languageinfo.cpp */; }; + F3AC352D6DAE3A12A5664768 /* styleparams.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */; }; + EC3A1C620D323B5590AABF02 /* module.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DB43FAB1E563B02ACEFF647 /* module.cpp */; }; + 7F77E347E1243D77A666FB43 /* clipbrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */; }; + 7EF89F935314301381802FAB /* filectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2334539088B036BEAB230D1C /* filectrlg.cpp */; }; + 633DD2E870263F42A8DBF9BF /* markuptext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */; }; + 014AF0BAB1783A5D9D75A7ED /* zstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9B5BC858CCF3477895D2786 /* zstream.cpp */; }; + 825EAD51920B387DB4F8C426 /* LexAsn1.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A46D50BEBF523B3F88831086 /* LexAsn1.cxx */; }; + 99F7D7BFBB543A04AB728375 /* m_hline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */; }; + 13A71672A59233D3A9B2D5E9 /* CharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B883F991159731DCB2717A21 /* CharacterSet.cxx */; }; + 0E024D145DDD38ACAE68F462 /* toplevel_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */; }; + 42AC484FDD7D3E948CEA801C /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = B5370A676AAC32419D7FDD87 /* inflate.c */; }; + C005C2D547E735E9B081658E /* prntdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */; }; + AC0B0C52922B30188AE95E94 /* tabart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51054B41BFD83E97BAF76D07 /* tabart.cpp */; }; + D3EC9191D94837CABFF05DC4 /* LexNim.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B1AA9AF75D233FFC9FC90E7C /* LexNim.cxx */; }; AAAB5DF8E60736D88273DCFE /* strconv_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5F9383D1CE931499F339D85 /* strconv_cf.cpp */; }; - 9519D59421513FF28FF717B6 /* regiong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE538F33A1423FC2AC9E45F3 /* regiong.cpp */; }; - 0B792C3F31713850818EEFEA /* LexDMAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AC62806DE67F33E18C386D4F /* LexDMAP.cxx */; }; - CFA91122523B31B9A07A3826 /* pngmem.c in Sources */ = {isa = PBXBuildFile; fileRef = C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */; }; - 5F2C2A46781739D897CF293D /* xh_chckl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */; }; - 5C5D0983160A36189A770742 /* webviewarchivehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */; }; - 7F62946D497A32CE857F65C9 /* pcre2_maketables.c in Sources */ = {isa = PBXBuildFile; fileRef = D016F584D14C31E192DB3179 /* pcre2_maketables.c */; }; - 15048519756B33959B15B161 /* floatpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A881F49ADCF33C299B041584 /* floatpane.cpp */; }; - 9065A4BE3D0433B88CF45571 /* richtextbuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */; }; - 5417332FE2DB3CD3A647B15D /* cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF1F491B8A8376E8E2E8182 /* cursor.cpp */; }; - 5557AA36FBCC3ED9A5F5751A /* editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D90D14874FD38079835AF0B /* editlbox.cpp */; }; - 9F70A89D00B03D4894AF7638 /* validate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01BA6D45FE4C381493EB4372 /* validate.cpp */; }; - 4B996B4C54163D7091427DB5 /* gzread.c in Sources */ = {isa = PBXBuildFile; fileRef = BAD4614CABC934D6AFF8D9CD /* gzread.c */; }; - 682403FBBD4E3D5E88159501 /* CellBuffer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */; }; - 0E60E17BA4B23347A4F20160 /* gdicmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998D611109EC33A9A6A11C5A /* gdicmn.cpp */; }; - 4DA9DE940E043C58BEACBB56 /* UniqueString.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */; }; + 1569BB4728693B6285623A23 /* pngerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A0650754DC2358CA5933B28 /* pngerror.c */; }; + AA54EDC7C94730D1A31F059E /* LexCharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */; }; + 1E166FC1A7B3371FB038B172 /* fldlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */; }; + AAC2AC9C49F1366D8BD20F5E /* LexECL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1AD9605C9385374C87FAC9BC /* LexECL.cxx */; }; + 61FD5E0E28F732E8AB1729F8 /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6AB648BC5173104A96CAE66 /* xml.cpp */; }; + EB52C6A915943813932944FE /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04A /* control.cpp */; }; + 6AC347D2DCC730149A0A83D8 /* button_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF4F4F5211933057824B5621 /* button_osx.cpp */; }; + 98F52D5224B438DFA8887E06 /* timectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741578B590AF3F2CABE615EB /* timectrlg.cpp */; }; D95C5F467D37339AB8DF2354 /* tif_color.c in Sources */ = {isa = PBXBuildFile; fileRef = 149D299A0EDB3D998118EC93 /* tif_color.c */; }; - D66F5D4D204B3B789C7F76B9 /* fontdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18044326B5B13A98A49732DD /* fontdlg.cpp */; }; - A423177BBC0F3BE5A436B4B7 /* propgridpagestate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */; }; - A93D0E6F0871368EA8FC9FF9 /* fswatchercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */; }; - 2CCC30C0162131DBBE9D8027 /* dobjcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */; }; - EA10DA3199813E90B39C70D3 /* xh_infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45C65E309F3A39598C043657 /* xh_infobar.cpp */; }; - 335DD610974A33D4B6581E2A /* colourdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */; }; - A3C4D47A84E8362295867525 /* LexPOV.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8EECA8EB93BF3C7A9CC827AD /* LexPOV.cxx */; }; - D759231BC07232C0A52515A6 /* LexAccessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */; }; - E7140F3AB94D3FDFA86D8C06 /* url.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49612306912038DDBCABB4DE /* url.cpp */; }; - D36E76A4CAF5352D9397E1FF /* fdiodispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */; }; - 5AEA6E94FB76371D928D371C /* LexMatlab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC9153A350893820B942D37E /* LexMatlab.cxx */; }; - 25656617A56D342AA3D1BFE2 /* ctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */; }; - 552708E6296D33EBB5F6A493 /* tif_swab.c in Sources */ = {isa = PBXBuildFile; fileRef = AAC12B4456E13F57BEA25A5E /* tif_swab.c */; }; - A7692B4D8658347BA16EEB83 /* jmemnobs.c in Sources */ = {isa = PBXBuildFile; fileRef = 374E341C8703367686DEDE93 /* jmemnobs.c */; }; - 4788F736CD9C324E8A3DFA74 /* LexEScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 58EFF24DE2E737CA8A164F5C /* LexEScript.cxx */; }; - 64F11C549E3035DF85691060 /* tif_ojpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */; }; - A139B846584436BCBEBAE3BF /* grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76337016F2CA3C85831702E6 /* grid.cpp */; }; - 1AF2B2346C9639DAA4D15F30 /* numdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */; }; - 0C2073A011EA36B8AD906DA3 /* LexCIL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7F18C26877336DBE638D75 /* LexCIL.cxx */; }; - 807450BB072C3C0D9C52A3B6 /* LexGDScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E29A8279BAEE303B95C9D3C6 /* LexGDScript.cxx */; }; - 675B4E6CBA8632E89B4AC26D /* textctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4E16323A43E36DC8024EDF1 /* textctrl.mm */; }; + F85D632964383F29BC3B30B6 /* tif_next.c in Sources */ = {isa = PBXBuildFile; fileRef = DFDC805DD3063C389F93642D /* tif_next.c */; }; + 283C3ABE42433244983C27C1 /* stattext_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CF5C09D9A1230EEB42713E1 /* stattext_osx.cpp */; }; + 800CFCEDBB7938338C65EEAC /* notifmsgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B233180893DB3328AF4847DA /* notifmsgcmn.cpp */; }; + 46A4CCF128FC3EB092074DC5 /* property.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E1F571B01F34D4AB70CA18 /* property.cpp */; }; + 0A2A4D2DC8F63FE1AC0BFAAF /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2024D29170D3B50A4DFDE11 /* base64.cpp */; }; + 46F341B46F80376B962759F5 /* animateg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 580AFC66F3003582B43043B1 /* animateg.cpp */; }; + 27E73CA5C35A30CE89946ECA /* slider_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D215A0D67563350CB4EECB06 /* slider_osx.cpp */; }; + 523FB2A8435A3324A8E1B370 /* PerLine.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9389DAF8B91030B7AAB029FF /* PerLine.cxx */; }; + F3CB42BB6D983675862C01F3 /* xh_toolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */; }; + C425A172B0AB3EBD9AC9A590 /* ustring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B63EBEE1A04537E7887E9FD0 /* ustring.cpp */; }; + F5806029B1BA3924A8FDDBC1 /* busyinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F94CF171F4532B89FECF475 /* busyinfo.cpp */; }; + E7D02E64384F37BC8939A2C4 /* jdpostct.c in Sources */ = {isa = PBXBuildFile; fileRef = 375FF97B202F3C359402D13E /* jdpostct.c */; }; + B84642DA949638A189032CE6 /* http.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F84F0DB790A23D92A193D2B4 /* http.cpp */; }; + C7B6240E0E213836996A178B /* dockart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD709DEB71623974B9836D69 /* dockart.cpp */; }; + B189DB62AE9F30A1B613756B /* bmpcboxg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */; }; + E8BBC08597EF383597DA0308 /* LexEiffel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 55EBB18CB4773C788510B14B /* LexEiffel.cxx */; }; + E1A20811148F31D289AF98AF /* xh_sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */; }; + 9FA6C4275F0D3E1A884ED561 /* pcre2_auto_possess.c in Sources */ = {isa = PBXBuildFile; fileRef = C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */; }; + 20BEEFFA08F3396791596870 /* dlunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA2D9F325F833C408657E7B7 /* dlunix.cpp */; }; + C5A8DF376BB13A2A8290C2E5 /* xh_unkwn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */; }; + 729091CC33C73C989B4E0719 /* timerimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0401B7302088357BB6B7F16F /* timerimpl.cpp */; }; + 49FE0228D8FD3F7AB64A4432 /* bmpbuttn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */; }; + BDB8EF0E0DA03693BFB77EF7 /* accesscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8555204EBA8930809B732842 /* accesscmn.cpp */; }; + 45E15DBB6B69382D8AF1BA21 /* pcre2_dfa_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */; }; + 1EDED99760B23A1999E75C12 /* imaglist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */; }; + EE972E8DC73F310B9B4C949C /* webrequest_curl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5279968877003A8BB8279765 /* webrequest_curl.cpp */; }; + 80665EEAE8613DF8A93A7984 /* utilscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4188821BBA833CCAA678B234 /* utilscmn.cpp */; }; + F569D7A3F0E038E9B4CC2A76 /* xh_comboctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */; }; + 0164A65CDB7A334A8E9AA4BF /* dynload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */; }; + 39FB197CF9EB3D76BE0723CF /* LexBash.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 78D7866F95C73A28BB540606 /* LexBash.cxx */; }; + 171F09F8DD553FA5B4B3FAE2 /* modalhook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E7C516E2453A269280A404 /* modalhook.cpp */; }; C2B07E2ECDDC3833BDC9B28C /* arcall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75D0C937F2A03ADA8581A2BB /* arcall.cpp */; }; - CA4DCD57060B38CC8B2283D7 /* filtfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */; }; - 127E255EE601383A9E0EF7EA /* menuitem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61548D0FE1353D7C846DD721 /* menuitem.mm */; }; - 6A032420671B375D81273714 /* valnum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 684D92E552BE313CBE0A88AA /* valnum.cpp */; }; - 699D88EE2DAA3594B6606890 /* ViewStyle.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C133B838193A35ABBB803151 /* ViewStyle.cxx */; }; - 67A0583ADD8C35B8B9BA3D12 /* checkbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 81708CFA21A03013ACB8DDD7 /* checkbox.mm */; }; - BEA90F2C6BB93143958F899A /* propgridiface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */; }; - 59F995B6E6EE3CA5A4487844 /* glcanvas.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35007225BB683683AA7C5E48 /* glcanvas.mm */; }; - CCFD3144A22C3A87B67D88AB /* LexRebol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0D9828C9BD9633C1A8F4E0CD /* LexRebol.cxx */; }; - 14F303FD6B5F383DADDFD788 /* xh_dataview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 616466F521DB3ECAB304289F /* xh_dataview.cpp */; }; - 64DD406C453D39FEBBE66ED1 /* tif_pixarlog.c in Sources */ = {isa = PBXBuildFile; fileRef = 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */; }; - 3B7E035ECF3D3FFB9827AC1C /* xh_dlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06B4A895955B32258DCD62BF /* xh_dlg.cpp */; }; - 026F90F7492C316A94128916 /* logg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C64705CE9398316D87BAB4DC /* logg.cpp */; }; - D9F02AFDA07D3857A905527C /* jdcolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 68B81FBDA49D3C1991B6356A /* jdcolor.c */; }; - AAC2CB4D851230008AE4ABA1 /* dcscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */; }; + EE0EA850822E35F596B5EBBA /* artprov.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29387393C07C39DB8FF1663B /* artprov.cpp */; }; + FBE4DB30865D3177B3A9993B /* xh_animatctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */; }; 5EE94793DFCB3BA281A4864E /* infback.c in Sources */ = {isa = PBXBuildFile; fileRef = FDB0E2D0966C3E408C4A2D3D /* infback.c */; }; - 25B0940CABAB39CD90C6F3C5 /* intel_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 994AF74DF2A13FF09A215853 /* intel_init.c */; }; - E7F35B834A163C67B65176C6 /* tif_dirwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */; }; - 0D6596A44A8C37DE85D578F6 /* Document.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 71DB140E670738839EC42C2B /* Document.cxx */; }; - 30493B486DFF35AF80D12C49 /* stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */; }; - 2047544E505C3BA38F0144E6 /* pcre2_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = B60497805D37375EBFCF3D98 /* pcre2_tables.c */; }; - D98FABF75BCE3AF18C91B42D /* LexHex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */; }; - 2F35A207C3993DE08E4FE0B0 /* timerunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */; }; - C05BDB0B5F5A33A9A57FF012 /* m_links.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 080597FC0436378E96EDA94B /* m_links.cpp */; }; - 98DF13E96160304EBB905E73 /* jcmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = 810EB7316DF3344197C78EC0 /* jcmainct.c */; }; - B97C178B47173E6AB0CE577B /* CaseConvert.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 274A156457C63EC5801029C2 /* CaseConvert.cxx */; }; - 78E15D8200F635529F396099 /* LexBullant.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6718204F4700318E89EAC906 /* LexBullant.cxx */; }; - DE26572475EE336B8EEA5D92 /* jerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 108517BCD39230E7A89BC943 /* jerror.c */; }; - 63F0C8EEDF4B3641878A8B4D /* dlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9051902662BE38B3912B34EA /* dlgcmn.cpp */; }; - 95826E8528CC32D8934C36EC /* xh_frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */; }; - 2A7640E4210334AC93366900 /* winpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FCA75FE592C3469AE351FBF /* winpars.cpp */; }; - 0836590D35FE37988DE70442 /* combobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */; }; - BF8C33B7CB3A3ECE814A95FB /* tokenzr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */; }; - 9CA687845B3F30CCA44A89D0 /* choicbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */; }; - A336FD218BE63B19991CA513 /* ipcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C090A76B6F23E6481A27282 /* ipcbase.cpp */; }; - 6A081BF19747385CB4C1877F /* radiobut_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */; }; - 65AD3B31319C35F1AC9EC625 /* anybutton.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4020D790AE7363CB29F1C2F /* anybutton.mm */; }; - D83B32B788EC310D919E0DF7 /* imagpcx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */; }; - 46E331300D8F349DB36AB50A /* imagpnm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC12B97F233B3B9494DA217F /* imagpnm.cpp */; }; - 087FF6DE223A32509692F39B /* txtstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */; }; - 825EAD51920B387DB4F8C426 /* LexAsn1.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A46D50BEBF523B3F88831086 /* LexAsn1.cxx */; }; - 02BB539E2AD63C078DA776B0 /* uiaction_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */; }; - 014AF0BAB1783A5D9D75A7ED /* zstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9B5BC858CCF3477895D2786 /* zstream.cpp */; }; - 6167245C417A32179EC37D2D /* textfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0903EE9B3793303285FF96E3 /* textfile.cpp */; }; - EB52C6A915943813932944FE /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04A /* control.cpp */; }; - CD35A576FD363FD49C3AC4B3 /* LexAda.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 375E7A99FF4C38FA9E223772 /* LexAda.cxx */; }; - 8E674574343A3C009B1BCD00 /* tif_codec.c in Sources */ = {isa = PBXBuildFile; fileRef = 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */; }; - 61FEDBF2D47A3B4E861F8296 /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACC8667173D3AB09F6214F4 /* sound.cpp */; }; - F89405757B063F80B111F469 /* datetime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0EBCDDF248638B58B01D9CC /* datetime.cpp */; }; - 0164A65CDB7A334A8E9AA4BF /* dynload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */; }; - DE43350F6C9D3148A64F0AF9 /* art_internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C4649974D8B3A109D1BF145 /* art_internal.cpp */; }; - 4AEC67BF65B039D99F421666 /* statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C87B071E3593A889704F512 /* statbar.cpp */; }; - 2CAD4DF9505F36E4A2EAD53D /* helpdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C466F32CCBD13DBC87285B3D /* helpdata.cpp */; }; - C1E5799141603A75A26BEEA7 /* xpmdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C562D5885AFF3E15837325CE /* xpmdecod.cpp */; }; - FFF5BFBE600E35FAB7EA522C /* fileback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC12D557950A3B0D89D9F2F3 /* fileback.cpp */; }; - 63F2517EC6B2334CA825A6F9 /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEB08798C70E33DDB360E563 /* layout.cpp */; }; - 0FDDE8E193743F3A8CBDC67C /* richtextprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */; }; - D54A162E557834A48F4646A9 /* advprops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 326723AEB79A305F90D6B41D /* advprops.cpp */; }; - 65E8A5F333D7336C816F0D0C /* variant.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31F4B9B03D52339B8F82C114 /* variant.cpp */; }; - C259D01CC62533D296EF023A /* scrolbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */; }; - 6BF19C7CA9E93D989C210FE3 /* dseldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1197B997B1D139C5AE4D198A /* dseldlg.cpp */; }; - 49BEDFBC3661339D90EF6935 /* LexTCL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */; }; - B0C44C3054CB3E0590DDCBDA /* LexJSON.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */; }; - 8DE45CEAF2DD3C22AA019F74 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CF73F49AEC238C99CE89845 /* deflate.c */; }; - DA71FBB9EFB2350ABB3CEC80 /* stdpaths.mm in Sources */ = {isa = PBXBuildFile; fileRef = 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */; }; - 0FA6E1E47F123FF4A902E4D2 /* xh_odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0080254545B9383ABDF2045C /* xh_odcombo.cpp */; }; - 750C716389AD3ADBABC9D689 /* statbmp_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */; }; - 6CA1BAEBBDB4336E9E201F95 /* protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */; }; - 664A54F914443110B7BB6928 /* tglbtn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */; }; - D070C3BE95483FE38BABA1BE /* region.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00DA3D3EEF5E305CA73A1871 /* region.cpp */; }; - B839235BED6F3609BDB732B8 /* dndcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */; }; - CB2E99E8FB7D3269A333A55E /* window_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26D7C4995D7A35A1854B533F /* window_osx.cpp */; }; - A53B8C3ED0D33A1D9AA8219A /* toolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3BF8C9FF2D5314591329D0D /* toolbar.mm */; }; - 75DCE6FF00E93C5D93970842 /* arttango.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9988CBB0772A3539970162FA /* arttango.cpp */; }; - 1710A4BB0E6339558A187F8D /* xmlres.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 087B66573CD33DA99DA82B1C /* xmlres.cpp */; }; - C2CF6B59914A3183ADE84028 /* tif_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 48F1439BF6C3361296F05A33 /* tif_error.c */; }; - FE5285579C7F39C48FC66B10 /* hash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 888BD97139C936679691FF34 /* hash.cpp */; }; + 37DD17F479A1371ABF3589B9 /* xh_wizrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */; }; 16A382A265DE32FABC318F6F /* fontdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB170BF78EFE39D692E11985 /* fontdlgg.cpp */; }; - 7DC4A542372437ECA0790F87 /* art_msw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B540E18F9C91381CA175BABB /* art_msw.cpp */; }; - BDAB44F5D017395D9D3A1F23 /* frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3019BA65DD73F30A865365F /* frame.cpp */; }; - 84382E5DB3203A73AC5EE390 /* xh_combo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0905A1EBD653F6D82395602 /* xh_combo.cpp */; }; - 4BAFAE70A6B1313B96D86630 /* page.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59ED0C057D8F388A89DC7177 /* page.cpp */; }; - 7CC211E10D853B958250A4CE /* LexModula.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */; }; - 6C3A459236F736B8A14A13AC /* dialog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83B878A16ABC396E8C03A15E /* dialog.mm */; }; - 784F7C50882F320FA76537B5 /* LexAU3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C76222F466E831F896A89269 /* LexAU3.cxx */; }; - 0C9A379D97B133FA831175A7 /* printdlg_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */; }; - C3AC94EA13C1352790BF5FF7 /* listctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9016355F66D3125919E017D /* listctrl.cpp */; }; - FB09720D13673A7B81BCB645 /* xh_datectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C63C964DAFAD311694367C94 /* xh_datectrl.cpp */; }; - 86003C8EB906304F9025F788 /* jcinit.c in Sources */ = {isa = PBXBuildFile; fileRef = AA6C6739C3BD3EFA9CF71102 /* jcinit.c */; }; - 502D7B786EAE383B9546F31F /* LexRust.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 24BD2EF635673E819B8406CB /* LexRust.cxx */; }; - 62757F24C4EE3B84B6AE3F14 /* textdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D529E2668C23D94A7706C8A /* textdlgg.cpp */; }; - 22C76BF2C3E331CD87657E6E /* LexNsis.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1BC0322549563787A21CE8F1 /* LexNsis.cxx */; }; - 0948599C4FD53611A09B52AB /* jfdctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 93D07403FCA530D7A9FD2917 /* jfdctflt.c */; }; - 6E68759BC2E63CA59C12FDC0 /* popupcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D922063B2F2536629EEEAAF0 /* popupcmn.cpp */; }; - 9A178ED42D96329D8CBF9B89 /* tif_predict.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */; }; - BFA6983551B4310DA7C8A404 /* jcdctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DBF3053414F3C448312165A /* jcdctmgr.c */; }; - D5C5DD83882B3227A1CCFE0E /* LexSorcus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */; }; - 8D6B0D48EA843E48AB0FE43D /* LexErrorList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2851EAAEE9B73FE8981912C9 /* LexErrorList.cxx */; }; - 3EB6B8528A0D3B6CADAE1256 /* archive.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02D2E8B5C89939CE90B99E2B /* archive.cpp */; }; - 99F7D7BFBB543A04AB728375 /* m_hline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */; }; + 63F0C8EEDF4B3641878A8B4D /* dlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9051902662BE38B3912B34EA /* dlgcmn.cpp */; }; + BD53E095EC1136EF853A47D8 /* m_layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5EE0B8985443BDCB36F781F /* m_layout.cpp */; }; + 61C3F7D495FB3E8BA402E4F8 /* jdmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 20E4A10BCD773C84AEC481A1 /* jdmarker.c */; }; + 9744994E8A813AA6938A7CE2 /* textcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */; }; + BD2B17EB72E73A6EB6E0B26F /* dcmemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 343D4FDD5CC030618EF24729 /* dcmemory.cpp */; }; + 3D762A0BBF1B39B88A769632 /* helpwnd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */; }; + D6C3421AD2A537AAA2F0AB80 /* file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 168DB301ACC736FF96D7F581 /* file.cpp */; }; + 7E6C627A325F32FFB2EF9B9E /* caret.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A82EDCFFBAC30098B238957 /* caret.cpp */; }; + 58AABAD40AA236438347DDDE /* evtloop.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D2549709E0133C9A267E3A5 /* evtloop.mm */; }; + A4DEBFA074C93388A1BBCB40 /* pcre2_substitute.c in Sources */ = {isa = PBXBuildFile; fileRef = FAC42945539F362D91D6F559 /* pcre2_substitute.c */; }; + 86AED49CEAFC3637B1F10537 /* dialog_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */; }; + 3C5E1A45A57B3169A4C073D9 /* LexVerilog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */; }; + 6292B023DBF4337A91404AD0 /* preferencescmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A046179831F63824A67B509B /* preferencescmn.cpp */; }; 8292D346BFC33D6E8D3CDDBF /* xh_sttxt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */; }; - 89200B144075388BA69A07E2 /* xh_timectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25A81E9028793C109D868068 /* xh_timectrl.cpp */; }; - E8EE34F0A78C31B489B19FEE /* LexMSSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C71BF55495034FFBE653C80 /* LexMSSQL.cxx */; }; - BBAABF3C693E37D3B0FF2502 /* colrdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */; }; - 9E0B67E34B683412978BA82D /* filtall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */; }; - B791BD05072B3B909A7093C2 /* dcsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */; }; - DEC5F4B34BC037169D3E5F2A /* mediactrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */; }; - 069D53F2DFBF370A8CC99630 /* LexCSS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */; }; - 512AB7B82D57387EBB7BEE27 /* LexFSharp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F8AD617806563DE394C15922 /* LexFSharp.cxx */; }; - F5B0B26BD0803719A3FCB4D7 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E45F6DF601A34BCB3CC0206 /* adler32.c */; }; - 50E89226E8D7390D9D21C809 /* debugrpt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */; }; - FEA741A9B6663A4C929893C2 /* aboutdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */; }; - 0E23F212CBDD33848DEBCA6E /* webview_chromium.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBA9036479943A4990CEB3AC /* webview_chromium.mm */; }; - 52C0984A2A4F31BC885519B0 /* xtistrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */; }; - C7B6240E0E213836996A178B /* dockart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD709DEB71623974B9836D69 /* dockart.cpp */; }; - E05B06A7FEEE32D5AD87EA4F /* xh_editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05310A868F0B35999C568681 /* xh_editlbox.cpp */; }; - 8B9C9FCB954F3596A4CED9A5 /* jdapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 86884BC843F6337EABF744BB /* jdapimin.c */; }; - 23479484EC143D34871550C1 /* textmeasurecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */; }; - BF1760458996391E8EB42949 /* ctrlsub.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */; }; - 6D723C987BFB39B7B887DCB1 /* Editor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DA5E95D498C53A808A8E2EEB /* Editor.cxx */; }; - D772334837693C9D88069D98 /* tif_webp.c in Sources */ = {isa = PBXBuildFile; fileRef = 3716DA7B0C79360CBA26A71E /* tif_webp.c */; }; - C3A63D7091913CD39094AE0B /* btncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A7A3B499503ECABC6A838F /* btncmn.cpp */; }; - 84997126352137E798CD258A /* spinctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59572A234F0636D78BFD9F6B /* spinctlg.cpp */; }; - A5775D87FD713CBB930A783E /* bookctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */; }; - 795613831EC8332A83FF26E7 /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7E99B35A98D30818120B002 /* string.cpp */; }; - D5AABE973F3A351EB1C1A5A6 /* fontmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0817D6A1AF83608B050EBC3 /* fontmap.cpp */; }; - C2E37E798F743A4199C8658E /* fddlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */; }; - B59FC7345C383D9099391AC3 /* mimecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */; }; - 0F2FD12272023C869CE86008 /* filter_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */; }; - 41943A8F82723027A151A468 /* fileconf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */; }; - 45AB45C6B24A3983B22E56A5 /* dataobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 271B4B77622B3411A7BF6634 /* dataobj.cpp */; }; + FD1F6CD8286D3D428FD52A28 /* filepickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B580FD04D0D83601826FD5EE /* filepickerg.cpp */; }; + C3AC94EA13C1352790BF5FF7 /* listctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9016355F66D3125919E017D /* listctrl.cpp */; }; + 9881E3FB23ED3283B6CC71A2 /* filepickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */; }; + DFEB8DA3D42734949CB1E1AA /* clipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 239D386E9D7D39C5A1E859C6 /* clipcmn.cpp */; }; + E4B826CE70283D999CB591F3 /* listbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B99CA41708513A599AE275A2 /* listbox_osx.cpp */; }; + 2563C775427E3D68BD384F2F /* richtextstyles.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D30617843F33310089C1F77A /* richtextstyles.cpp */; }; + 0E92CEF677AA32C9A8CDA0A7 /* checkbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */; }; + E0E40333B61C33B58787078E /* LexMarkdown.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */; }; + 403FBA20CEFE3EAFB4E6B905 /* dir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7332A03D93D3DABB050615D /* dir.cpp */; }; + 438EAEA4B30C325C827F6197 /* xh_fontpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */; }; + 47F4FC8717AF3A848812DFCC /* xh_radbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */; }; + 14F303FD6B5F383DADDFD788 /* xh_dataview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 616466F521DB3ECAB304289F /* xh_dataview.cpp */; }; + 5F6B4F226B473AACB7AC8DF5 /* xh_slidr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */; }; + 3B8A54D5E5A53607A6F7979A /* arrstr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A57CF60203F53459A03951A9 /* arrstr.cpp */; }; + F2813BF297C73A3ABD02EC98 /* glcanvas_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */; }; + 51437DC2AD7B3BEB9A53CE1A /* cmdline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE1C531185131A89EFF7FAF /* cmdline.cpp */; }; + 3DA70DE666D838A59642A4E6 /* LexAsciidoc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */; }; + 84382E5DB3203A73AC5EE390 /* xh_combo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0905A1EBD653F6D82395602 /* xh_combo.cpp */; }; + 11818B68C5263EB68D708845 /* jdtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 4549845C0751356A907C23E0 /* jdtrans.c */; }; + A965348C7FA73CEC90C8FA25 /* filedlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */; }; + 85F9828B80B03178A274BD17 /* selstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ED2105A5A033E3384EBC4ED /* selstore.cpp */; }; + 060E095718B03EF98C754799 /* treelist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5190E3E110443FD29F2474FC /* treelist.cpp */; }; FB8B6E4789A3311A98C5B0A8 /* clrpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B5A9DF3206B3954A4B38BFD /* clrpickerg.cpp */; }; - C34B8675439F39B4845FFC50 /* xh_listb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */; }; - 551BF168445E3D7BB54D0174 /* LexPS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = EDB48813110636DBA045BF3A /* LexPS.cxx */; }; + FE9A662A1F9B34D099C45C1D /* xh_cald.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 093B5233861B3F9B8C85762B /* xh_cald.cpp */; }; + D18E2985C48733B2B7B3D442 /* evtloopunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */; }; + F89405757B063F80B111F469 /* datetime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0EBCDDF248638B58B01D9CC /* datetime.cpp */; }; + 0948599C4FD53611A09B52AB /* jfdctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 93D07403FCA530D7A9FD2917 /* jfdctflt.c */; }; + 5AEA6E94FB76371D928D371C /* LexMatlab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC9153A350893820B942D37E /* LexMatlab.cxx */; }; + 9F70A89D00B03D4894AF7638 /* validate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01BA6D45FE4C381493EB4372 /* validate.cpp */; }; + 91EA325FCE3A3A6A8D1D21A5 /* srchctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */; }; + 8C6E2BD9C31A3AE18AD17D44 /* pcre2_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */; }; + C5C60B22CE6A3BCB868F69E8 /* pcre2_find_bracket.c in Sources */ = {isa = PBXBuildFile; fileRef = 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */; }; + 242E1D1A9BF331BA918134EC /* pngwtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 0964797530CF3FE7B8DB6242 /* pngwtran.c */; }; + 37749AC3468836FC857BD0D5 /* checklstcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */; }; + A08165E5D38E3EF6962A7AE9 /* DefaultLexer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */; }; + B8FEEC2C94183AB69C963177 /* headercolcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */; }; + D4EC9DB5F8DF319EA0FD26A4 /* LexVB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F633793051F371F94C27530 /* LexVB.cxx */; }; + CFF73578F04D357E83D1D830 /* lboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */; }; + 1710A4BB0E6339558A187F8D /* xmlres.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 087B66573CD33DA99DA82B1C /* xmlres.cpp */; }; + 7DC4A542372437ECA0790F87 /* art_msw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B540E18F9C91381CA175BABB /* art_msw.cpp */; }; + 8A662992FFCB32E99D11950C /* commandlinkbuttong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */; }; + FDE14459359334DE9FB03ED5 /* xh_scrol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66411D54BAD338498AC59401 /* xh_scrol.cpp */; }; + 6C7C1CC506CB329FB2D086A9 /* LexBasic.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B6AADC1056E03A3B80C20C5B /* LexBasic.cxx */; }; + 3EB6B8528A0D3B6CADAE1256 /* archive.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02D2E8B5C89939CE90B99E2B /* archive.cpp */; }; + F70156C3E68B38FCB72FE253 /* dirdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */; }; + D98FABF75BCE3AF18C91B42D /* LexHex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */; }; + 1AB50C98FF473B33A3CA4D39 /* xh_cmdlinkbn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */; }; + 14EF556997B0350F931EBE8E /* jdinput.c in Sources */ = {isa = PBXBuildFile; fileRef = CCF7564A2B733F759AA8496B /* jdinput.c */; }; + 369BCCFF61D13A058D837835 /* LexPerl.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */; }; + DB73248401573A5996D8E68D /* jcmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 664736BDE465350C9C4750E9 /* jcmarker.c */; }; + 9D003890CB7035A298DB7056 /* LexLua.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5145561C78303EEE9F827962 /* LexLua.cxx */; }; + D51B3389209E370489078891 /* tif_dirread.c in Sources */ = {isa = PBXBuildFile; fileRef = F6EA240B3DB93D398A990FAD /* tif_dirread.c */; }; + 6A032420671B375D81273714 /* valnum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 684D92E552BE313CBE0A88AA /* valnum.cpp */; }; + B839235BED6F3609BDB732B8 /* dndcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */; }; + 1AF2B2346C9639DAA4D15F30 /* numdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */; }; + 6167245C417A32179EC37D2D /* textfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0903EE9B3793303285FF96E3 /* textfile.cpp */; }; + BFA6983551B4310DA7C8A404 /* jcdctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DBF3053414F3C448312165A /* jcdctmgr.c */; }; + C8C68927DB243AEAB51E11F2 /* pngwio.c in Sources */ = {isa = PBXBuildFile; fileRef = AF9EE701DD653E2299293E5F /* pngwio.c */; }; + 795613831EC8332A83FF26E7 /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7E99B35A98D30818120B002 /* string.cpp */; }; + 23E9AF567E873B948EFEA180 /* gauge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 98A7F0605AAC3D28A8C9F253 /* gauge.mm */; }; + 353B584AD0C03919A57A3048 /* affinematrix2d.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD09A813E10A31C19554B425 /* affinematrix2d.cpp */; }; + E9EDB5C92D5D3B529E8D73B0 /* valgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7440859617F3B47AF4D3817 /* valgen.cpp */; }; + 8B9C9FCB954F3596A4CED9A5 /* jdapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 86884BC843F6337EABF744BB /* jdapimin.c */; }; + 91BC7802C15337CDA84C3742 /* statline_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */; }; + 15048519756B33959B15B161 /* floatpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A881F49ADCF33C299B041584 /* floatpane.cpp */; }; + C1E5799141603A75A26BEEA7 /* xpmdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C562D5885AFF3E15837325CE /* xpmdecod.cpp */; }; + 3399AB7BB1333B5AAF5FAF55 /* wrapsizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */; }; + 182DFDBB58653FD9863D4176 /* dcprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238741BDA2C73E56899CCB04 /* dcprint.cpp */; }; 5D3AD309AF39385EBF7D9DF8 /* jaricom.c in Sources */ = {isa = PBXBuildFile; fileRef = 573D0D15EE9E3E629D61EA65 /* jaricom.c */; }; - DB244DC0A09C379AAA63C0A4 /* bmpbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */; }; - A965348C7FA73CEC90C8FA25 /* filedlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */; }; - B6BC23F4F3E43315BD4C7CF8 /* mediactrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */; }; - 6F5A0D3C7763334396A3783D /* LexCmake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */; }; - 7EB83F6375BF3E73ABE56C40 /* jcarith.c in Sources */ = {isa = PBXBuildFile; fileRef = AA234ACC79743DA797601AA6 /* jcarith.c */; }; + 3E6AA08E72A030D39D867D4B /* ScintillaWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */; }; + 1CD4F67F48CF3A5FA477D86E /* datavcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */; }; + 8F372080E11E382EA0B5ED0F /* rowheightcache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */; }; + 63F895D6F5643E4B9E666B79 /* creddlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */; }; + FE5285579C7F39C48FC66B10 /* hash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 888BD97139C936679691FF34 /* hash.cpp */; }; + 980ED1DA2F96361985952254 /* webrequest_urlsession.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */; }; + 2989056891153968B372EA14 /* pngwutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 45D7558DF5E03A2EB41883F0 /* pngwutil.c */; }; + 6A10511265493FA2BB79CE4D /* propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC93D1DE277395592610085 /* propdlg.cpp */; }; 86BE5213D3F131D8A6862679 /* hid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 160EB9744CB63A0B81DC651F /* hid.cpp */; }; - 47C31B7492F33C3EBE53262A /* settings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6831AA74AB5B38D5AA6946D7 /* settings.mm */; }; - 97BAFEAD53E238B6881178DD /* evtloopcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 640783FBACA43206B782C77B /* evtloopcmn.cpp */; }; - E80BEED62EBF34F09B3F401F /* LexMagik.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 45860601270D318D93BEE1F3 /* LexMagik.cxx */; }; - D7F14BDFFB7F369B842AFC13 /* pcre2_config.c in Sources */ = {isa = PBXBuildFile; fileRef = FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */; }; - C3C19BD343B235F9909D4959 /* xh_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C55AF552EE6931E8BFF7281B /* xh_aui.cpp */; }; - C43A9650A9DC3372AB8F5F78 /* jidctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */; }; - 51437DC2AD7B3BEB9A53CE1A /* cmdline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE1C531185131A89EFF7FAF /* cmdline.cpp */; }; - 37DD17F479A1371ABF3589B9 /* xh_wizrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */; }; - FF7DB2884F6E3C5DB4BDF61D /* fswatcher_kqueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */; }; - 23A7AF68A03E380785EE7C24 /* object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1731D6708BFE3DE7B101CE74 /* object.cpp */; }; - 1DBDF75500D73A3098015E7F /* cfstring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */; }; - BAFF04F1680F32DA988EB03D /* stockitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B180290089B139F18B0C7BBA /* stockitem.cpp */; }; - C1CDD035AA393ACC9E202C03 /* minifram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693F731B7D1730A79485F9EC /* minifram.cpp */; }; - DF3B927516FB365E865A9780 /* LexerModule.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */; }; - 07EC76232BB3343FA5CB90B0 /* LexAVE.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */; }; - 2C53221A318E37529E6460EB /* tif_fax3sm.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */; }; - DB3C3AA956A03FB492480266 /* treectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */; }; - 0ADC8DBEE80D36B0BB9B058A /* LexASY.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A82C367B86F83981803D55DB /* LexASY.cxx */; }; - 2D4D105CA9BE3FA6995A5FFF /* tif_dumpmode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */; }; - B84642DA949638A189032CE6 /* http.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F84F0DB790A23D92A193D2B4 /* http.cpp */; }; - AC6AC589EFB233C7B65A3224 /* overlaycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 303ACF199BE431BD891C9301 /* overlaycmn.cpp */; }; - 6F0605F3A4E83BF0BF4C8B7E /* cmdproc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */; }; - DB9565CC4EAE3BCB9F490620 /* xmltok.c in Sources */ = {isa = PBXBuildFile; fileRef = 8685B8ED68F23DB0B770FD74 /* xmltok.c */; }; - FADD46CB89B135D1AF1D5F8A /* richtextstyledlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */; }; - F5806029B1BA3924A8FDDBC1 /* busyinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F94CF171F4532B89FECF475 /* busyinfo.cpp */; }; - 324B2BAC54553D45B3C56BFD /* LexOScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */; }; - A3A898DA3114311EB7F02227 /* sckstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D784A32C094730FEAA391A9B /* sckstrm.cpp */; }; - 729091CC33C73C989B4E0719 /* timerimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0401B7302088357BB6B7F16F /* timerimpl.cpp */; }; - ED8D23D79FF33ED380FE09EB /* scrlwing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */; }; - CEBAAB0C77983358A601BFFE /* jdmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = ED19EF377E653F71B1876259 /* jdmaster.c */; }; - 27B5431DC79733CD8D403E88 /* pcre2_context.c in Sources */ = {isa = PBXBuildFile; fileRef = 3026D20A03E53F1DB40FB35A /* pcre2_context.c */; }; - 1DF3A4F85FCB3BA79A552F3D /* menuitem_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */; }; - 2E4747E0736B30569ACD5422 /* textbuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 701B84EE7C043B539FF5195A /* textbuf.cpp */; }; - 2C95DFA8EE463487956B4EB4 /* infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */; }; - C8F1FB8C029031A5909DBC56 /* KeyMap.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */; }; - 91BDA5B04CF33C9AB7358B8A /* timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69F098E47EBF34368ABAE7ED /* timer.cpp */; }; - EBF2D44758003221A22202BC /* colourcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D61240ABD70328BA5789663 /* colourcmn.cpp */; }; - 7C52E7CC12463941B0E4D402 /* statbmpcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */; }; - AC91349D7F0E37739B1F5165 /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEF6B3FB66243812969E5BD1 /* palette.cpp */; }; - 7D615329368D32709CEF4B58 /* headerctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7273A7E255323EB3B391D997 /* headerctrlg.cpp */; }; + A3586433C4B1398FB1C361D6 /* m_image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 548906E4E72935E48CE4AF87 /* m_image.cpp */; }; E17048DEEF1138318314F1D0 /* pcre2_valid_utf.c in Sources */ = {isa = PBXBuildFile; fileRef = FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */; }; - 22EC132AEF863BFBAA6EDEC3 /* LexPowerPro.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */; }; - 95AD56D602CF3C5085602AF8 /* geometry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC0A61629E635FAB4E09505 /* geometry.cpp */; }; - 6C7C1CC506CB329FB2D086A9 /* LexBasic.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B6AADC1056E03A3B80C20C5B /* LexBasic.cxx */; }; - 56E1ED31F7CE38978F4A7CA0 /* LexProps.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DE0102314288305D830B9EFE /* LexProps.cxx */; }; - 3357BD0518F538E9A949F886 /* xh_tree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */; }; - 84B3625464F732C3A79E1314 /* xh_bmpbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */; }; - 1937FBA0A0DD32A8A743CFE1 /* valtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8701E1CF2B352B945C17E5 /* valtext.cpp */; }; - 31380AD4F5BD38A6B9212FE0 /* LexR.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7255468B6D5F3D8697994A53 /* LexR.cxx */; }; - 68C300D096BF39239876D043 /* utils_base.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2ED0C0702D2734D9B08FC31D /* utils_base.mm */; }; - EB52C6A915943813932944FF /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04B /* control.cpp */; }; - D3FB75C8E3A73AE38EE8A6F6 /* selectdispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */; }; - 9744994E8A813AA6938A7CE2 /* textcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */; }; - 296692A7A3783E3A83D005C6 /* brush.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 302A13BC64C238A297F4399F /* brush.cpp */; }; - A4DEBFA074C93388A1BBCB40 /* pcre2_substitute.c in Sources */ = {isa = PBXBuildFile; fileRef = FAC42945539F362D91D6F559 /* pcre2_substitute.c */; }; - 6AC347D2DCC730149A0A83D8 /* button_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF4F4F5211933057824B5621 /* button_osx.cpp */; }; - D5C304182151365FA9FF8A3D /* xh_bttn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */; }; - 7D0E549020D33ED39751DFC8 /* LexTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */; }; - 10B5C2A72C713A678458CD9D /* pcre2_ord2utf.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */; }; - E2A73751CECF32A68FFAEE82 /* panelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E9B2C076673C87B4218A01 /* panelcmn.cpp */; }; - 46A4CCF128FC3EB092074DC5 /* property.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E1F571B01F34D4AB70CA18 /* property.cpp */; }; - E1F7C51F411B3AF39476E488 /* fdrepdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F094B0B07DF33BCA6077BC0 /* fdrepdlg.cpp */; }; - 056E30EA43753A7CB1AF8C9E /* strvararg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EEAD9C3E180305D8899441E /* strvararg.cpp */; }; - F6288F388B8C33FD85E9A155 /* LexerNoExceptions.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */; }; - 7B642B17F5D23F4F8ED38BB4 /* graphcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BB59DD194923D6399087A75 /* graphcmn.cpp */; }; - B5C7FD8C27F43F3289A77FC9 /* utilsunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */; }; - 73AA68AB9F1236ED9F1FBB2E /* metafile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2BB2949CC0B387AB6879539 /* metafile.cpp */; }; - AF1E3338E892336E924AF631 /* pickerbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */; }; - 1CD4F67F48CF3A5FA477D86E /* datavcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */; }; - 2A79B68D20FE3C9B98A15534 /* menu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D799486AD7F336BB1F33DDC /* menu.mm */; }; - 2F7328AC75393951B08F75F1 /* pcre2_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 25E03E349FC13E4A9428B94E /* pcre2_error.c */; }; - 8AB7191F7CB838FC8337C48D /* xh_statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FADE850169F7347F83FE1499 /* xh_statbar.cpp */; }; - 9455B49669853E71BD4FD965 /* richtextformatdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */; }; - D66F55C93D1130F488970C05 /* pcre2_match_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */; }; - B60AD651E0523DB7B31E4106 /* LexillaAccess.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8052B1625907355894CCF263 /* LexillaAccess.cxx */; }; - DF8124E5E17D386A84CEEA27 /* LexLisp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 40586C8986443431A64EB066 /* LexLisp.cxx */; }; - 86B0D280A43C308CAC14BE24 /* CaseFolder.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F52DCBC0442233738B39138E /* CaseFolder.cxx */; }; - 1E2AB43075973AE59A8D89C1 /* fontdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */; }; - BD53E095EC1136EF853A47D8 /* m_layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5EE0B8985443BDCB36F781F /* m_layout.cpp */; }; - 570FA90F526E3F25A8E8FCF2 /* tif_read.c in Sources */ = {isa = PBXBuildFile; fileRef = 64B25B87203E3464BCDD277D /* tif_read.c */; }; - 8FC1C07FEE793897A1E96D23 /* statbmpg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA2119A7C67D37B290C17989 /* statbmpg.cpp */; }; - 7E6C627A325F32FFB2EF9B9E /* caret.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A82EDCFFBAC30098B238957 /* caret.cpp */; }; + 815AE3FED68330F4933AA16F /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = C94DC3402FAE3C4FA776DEEA /* window.mm */; }; + 88A43B1C5A7438838DE97B94 /* tif_luv.c in Sources */ = {isa = PBXBuildFile; fileRef = 66FDA882451239EA8DF2E0B5 /* tif_luv.c */; }; + D72D99FC424337CF9EDC2042 /* props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C20E46A504113C899B9DD9B7 /* props.cpp */; }; + B59FC7345C383D9099391AC3 /* mimecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */; }; + 1142E2D85FD93E9AB5D8A55A /* pcre2_script_run.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F4CDF9048EC36788619769D /* pcre2_script_run.c */; }; + C8F1FB8C029031A5909DBC56 /* KeyMap.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */; }; + F43DAE2E829A3A7493531381 /* richtextimagedlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */; }; + 23479484EC143D34871550C1 /* textmeasurecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */; }; + E39021D3CDCD33BAA646B006 /* sckaddr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8238DA30FF3FB984511250 /* sckaddr.cpp */; }; + BB6FE851028C3DE7A070C213 /* convauto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20B922D61CDB3CCEB59A5194 /* convauto.cpp */; }; 4D0BA8B9F72C3C31BC170CE2 /* progdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */; }; - 68AC8860B0943C1FAF76D96B /* list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 552757A901E732CAA8E3F16D /* list.cpp */; }; - F38202271C6131908C358DEC /* mstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC3D1E222FD93A69B1D1366E /* mstream.cpp */; }; - E7AF3BF2B3473AD9BE66D1A1 /* xh_clrpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */; }; - 23E9AF567E873B948EFEA180 /* gauge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 98A7F0605AAC3D28A8C9F253 /* gauge.mm */; }; - 6B9EEA3CF2E536E3B1ADAC42 /* manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBED392D081335FA80523244 /* manager.cpp */; }; + 7EB83F6375BF3E73ABE56C40 /* jcarith.c in Sources */ = {isa = PBXBuildFile; fileRef = AA234ACC79743DA797601AA6 /* jcarith.c */; }; + 00F1531404F832C6AE0748F2 /* spinbutt_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */; }; + 3B7E035ECF3D3FFB9827AC1C /* xh_dlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06B4A895955B32258DCD62BF /* xh_dlg.cpp */; }; + 7C52E7CC12463941B0E4D402 /* statbmpcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */; }; + 6978D7A20DA93A329DDD1383 /* socket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40CE02524DD4385AB2C3DF95 /* socket.cpp */; }; + 96927C5A21FD3ACF936CDF6C /* renderg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49CABA38E78D34DFA260AA06 /* renderg.cpp */; }; + 00E12455C98032E18378EE5E /* pcre2_newline.c in Sources */ = {isa = PBXBuildFile; fileRef = A208BFC0C8C43847A9620ADA /* pcre2_newline.c */; }; + 36B0B923B836358D9DB0AE10 /* xh_panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */; }; + E7140F3AB94D3FDFA86D8C06 /* url.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49612306912038DDBCABB4DE /* url.cpp */; }; + D997FFC948B73FDA892DB531 /* jdsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCF47A161B3E08B19BFE14 /* jdsample.c */; }; + 30AEDF41EC5C374DBF96EFFB /* slider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B862D1027C4367BBF44420F /* slider.mm */; }; + 2DF74933A90E34129F1BEF72 /* dnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA72410F615B3A78A6340532 /* dnd_osx.cpp */; }; + 81B742D64BEB373DB705947A /* m_list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4028ABB08C63AB59F5F240B /* m_list.cpp */; }; + E882402BEE0330A080A6516F /* strconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FEB8204E530329FA085E5B8 /* strconv.cpp */; }; + AAC2CB4D851230008AE4ABA1 /* dcscreen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */; }; + 0E8A0B8FA40E365690C20230 /* gzlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7395814D42CC38F6B8CD81B4 /* gzlib.c */; }; + ABCD15C4AB37396EA17B7B28 /* translation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AC666417602346EA583709E /* translation.cpp */; }; + 9058997222493A7A859A4D4C /* richtextxml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C69E48C06BD23C178F650E42 /* richtextxml.cpp */; }; + 7C87CC7641033D91823ED688 /* helpfrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */; }; + 75DCE6FF00E93C5D93970842 /* arttango.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9988CBB0772A3539970162FA /* arttango.cpp */; }; + 319EA32592DA3C74B86DDDFF /* wxcrt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FC98E2305230E2990471E3 /* wxcrt.cpp */; }; 4D9368BD07F131C493232E2D /* LexIndent.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41AE72D4E8FF307F86A02F5F /* LexIndent.cxx */; }; - 39FB197CF9EB3D76BE0723CF /* LexBash.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 78D7866F95C73A28BB540606 /* LexBash.cxx */; }; - A52A7D2FEB1434E29C64582C /* RESearch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E145FC31ED523B4AA5080A61 /* RESearch.cxx */; }; - 13854E7822783719A2530792 /* jddctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5BBC1E494D33D028CA547FF /* jddctmgr.c */; }; - 60706F8836A130A2AF282FE1 /* fontutilcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E00E14795F23A8392713A26 /* fontutilcmn.cpp */; }; - 6FA47EAACE613B039B6EC261 /* containr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3645350F572364BABF50238 /* containr.cpp */; }; - 1E4832B42B95308299B767B9 /* jdmerge.c in Sources */ = {isa = PBXBuildFile; fileRef = 0890779C662C35889A8C6C2E /* jdmerge.c */; }; - BF068F3C06473D8CBC55D507 /* PositionCache.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BCD873D873A53BBF955D8A4E /* PositionCache.cxx */; }; - 2386B575BC3931D2AF86CB33 /* fontdlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38CEA4A3579331EF808B8363 /* fontdlgosx.mm */; }; - 805CCAE64D023561AD334B53 /* popupwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 530DC2E26BF2313E8702AD43 /* popupwin.cpp */; }; - 2F50DBC14FE538A49823925A /* calctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 496674699F173A5385EAFF07 /* calctrlg.cpp */; }; - 7181709A030D3749AB355B74 /* xh_radbx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F43AF44465B335479752116D /* xh_radbx.cpp */; }; - 47F4FC8717AF3A848812DFCC /* xh_radbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */; }; - EAA469E1A0CC33E4A21A3F7A /* gaugecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */; }; - 5F57C4908E5038D19D68ED7A /* gallery.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */; }; - 7DEC57D6CE8232A09EF74219 /* PropSetSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */; }; - A80D00249A693F43A9CBE777 /* rgncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63867276260C3F4A980E83D8 /* rgncmn.cpp */; }; + D6B2A64A78AF3F2983B441A8 /* ownerdrwcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */; }; + D13596A4E3CD31DE810061A1 /* imagjpeg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6876262846EA3569B36D92E9 /* imagjpeg.cpp */; }; + 31FEAB56919D372993CAD89C /* pngrio.c in Sources */ = {isa = PBXBuildFile; fileRef = A06AB1974DB93EE2999EC75C /* pngrio.c */; }; + 7F62946D497A32CE857F65C9 /* pcre2_maketables.c in Sources */ = {isa = PBXBuildFile; fileRef = D016F584D14C31E192DB3179 /* pcre2_maketables.c */; }; + 72AD4417FF7C3094BB1FF62C /* xh_grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93B77251C0E0382D9A8E113D /* xh_grid.cpp */; }; + 94E510619F433AE3AC884755 /* xh_bmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */; }; + 2A7640E4210334AC93366900 /* winpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FCA75FE592C3469AE351FBF /* winpars.cpp */; }; + 9065A4BE3D0433B88CF45571 /* richtextbuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */; }; + 2FE10EA678C73523836FCC1C /* richtooltipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */; }; + AEEE6BC41B6531898A61CB16 /* LexHTML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D87406BCF3E833369E12D89A /* LexHTML.cxx */; }; + 62331487C17B32E081B8FEA7 /* LexLaTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */; }; + CFA91122523B31B9A07A3826 /* pngmem.c in Sources */ = {isa = PBXBuildFile; fileRef = C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */; }; + DE43350F6C9D3148A64F0AF9 /* art_internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C4649974D8B3A109D1BF145 /* art_internal.cpp */; }; + CA85901B9E2538CFB7E44216 /* process.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B35DA585CFDD32468868E892 /* process.cpp */; }; 2F7F5B9BBCD83D90B237A1A0 /* markupparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA7F7633279936EFA0B9C5CF /* markupparser.cpp */; }; - 8C6E2BD9C31A3AE18AD17D44 /* pcre2_match.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */; }; - B189DB62AE9F30A1B613756B /* bmpcboxg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */; }; - F2F2963D8ECC32D39FDBF101 /* tif_write.c in Sources */ = {isa = PBXBuildFile; fileRef = E9B992CB6C28339FB0CA5E27 /* tif_write.c */; }; - 182DFDBB58653FD9863D4176 /* dcprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238741BDA2C73E56899CCB04 /* dcprint.cpp */; }; - 205520440CD13C0AB9E89159 /* anidecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE959EC7BFDD3A628E856404 /* anidecod.cpp */; }; - E6D18B2EDE353F678830859F /* odcombocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F23140777B733679D2FAAFC /* odcombocmn.cpp */; }; - F70156C3E68B38FCB72FE253 /* dirdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */; }; - C8C68927DB243AEAB51E11F2 /* pngwio.c in Sources */ = {isa = PBXBuildFile; fileRef = AF9EE701DD653E2299293E5F /* pngwio.c */; }; - 9EC837DA722736119D49868A /* pngpread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CAA325362C73AC8BE20FAA7 /* pngpread.c */; }; - D72D99FC424337CF9EDC2042 /* props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C20E46A504113C899B9DD9B7 /* props.cpp */; }; - 8F372080E11E382EA0B5ED0F /* rowheightcache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */; }; - 9FBC642677C63D01AA2511BC /* evtloop_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */; }; - B1775EF7C72233408044034B /* radiobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 773D91F8280434519BD167EA /* radiobox_osx.cpp */; }; - A569A33A2097316D8110C2C1 /* toolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */; }; - E741CDA71895344C974D8F50 /* AutoComplete.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */; }; - 42260A6F1853361083803B0C /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CB467F9898C3952A68D988B /* zutil.c */; }; - 44C6F11C7D1C399F99CF6BD4 /* xh_auitoolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */; }; - E7921B0472B63E4091F4F517 /* xh_collpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */; }; - 912C69ADB1673ACEB0E6CF08 /* tif_strip.c in Sources */ = {isa = PBXBuildFile; fileRef = B83EDE2D1731311ABDE62F9F /* tif_strip.c */; }; - 4442EA28B0B3373B9A2D0862 /* collheaderctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */; }; + FB09720D13673A7B81BCB645 /* xh_datectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C63C964DAFAD311694367C94 /* xh_datectrl.cpp */; }; EB206A0264AD3CAA9F68B8FC /* pcre2_convert.c in Sources */ = {isa = PBXBuildFile; fileRef = BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */; }; - FE2DBCCC1D0B36A3BE4493C0 /* fs_arc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88F2BA2F0598342186A484B5 /* fs_arc.cpp */; }; - 159E4248CB1333AD841D9F03 /* LexYAML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9CC7C6FFD67233788EEDFC5E /* LexYAML.cxx */; }; - 6C822F7F313734DCB51F44B9 /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81A30C745CA73E30B788B408 /* image.cpp */; }; - 8AA341CCFB8E3F6AB3523595 /* splash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F8836E29C5A370E80CE070E /* splash.cpp */; }; - F34D240EB4513FE996179182 /* xh_mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */; }; - D6B73239BF0E32288161679C /* platinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97FFB03FF6793506B246BAC6 /* platinfo.cpp */; }; + ACD644CFA85A3B70A3E3B118 /* jcparam.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F41EDEB298538CC86FF6DC1 /* jcparam.c */; }; + 675B4E6CBA8632E89B4AC26D /* textctrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4E16323A43E36DC8024EDF1 /* textctrl.mm */; }; + 311840186794346AAAA42091 /* jutils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */; }; + 6B9EEA3CF2E536E3B1ADAC42 /* manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBED392D081335FA80523244 /* manager.cpp */; }; + EAA469E1A0CC33E4A21A3F7A /* gaugecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */; }; + 1DF3A4F85FCB3BA79A552F3D /* menuitem_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */; }; + A93D0E6F0871368EA8FC9FF9 /* fswatchercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */; }; + 66584BC871303041BA622DE0 /* m_fonts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1F3C70512D93501B0478F3E /* m_fonts.cpp */; }; + F22C401903993639AE05A295 /* xh_stbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 147800BBCB80346798B35D75 /* xh_stbox.cpp */; }; + CF3082BA1ED232F4B904BD14 /* stdpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */; }; + 0B4AF44DC0C439AD83CDC37E /* Indicator.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4FDE5A962FA234FA83A605AD /* Indicator.cxx */; }; + 6C46AF0370793AA0B74A5A4A /* tabmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */; }; + 6A081BF19747385CB4C1877F /* radiobut_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */; }; + 5C3B0ED2EA973DFDBFBCC692 /* richtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */; }; + 3CDE2B6BF88D326189F069BD /* accelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A436B55DC44E3827A757A6D8 /* accelcmn.cpp */; }; + 2A79B68D20FE3C9B98A15534 /* menu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D799486AD7F336BB1F33DDC /* menu.mm */; }; + 0C485288EA86379D9FD66536 /* cshelp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67DCEEB6861731319C30817F /* cshelp.cpp */; }; + 42260A6F1853361083803B0C /* zutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CB467F9898C3952A68D988B /* zutil.c */; }; + A0BA01A85C303C78A3130711 /* art_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */; }; + EEB0B28903693C7E9D07192F /* glcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E08A51FA8D8A361681B07295 /* glcmn.cpp */; }; + DC5F82733F733D98B39DE74D /* LexDMIS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 910D00F1C9143C6D85C24E7C /* LexDMIS.cxx */; }; + 50D7E093424138C88BB50D27 /* jcsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 53D06E47477B3E32BB6B915E /* jcsample.c */; }; + 23965E313EDC3BBE9B2FA1C5 /* imagpng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24396D584D053948A3FF0DCD /* imagpng.cpp */; }; + 9CA687845B3F30CCA44A89D0 /* choicbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */; }; + E82CB89681FF3747B6A94427 /* anybutton_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */; }; + BBAABF3C693E37D3B0FF2502 /* colrdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */; }; + 60706F8836A130A2AF282FE1 /* fontutilcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E00E14795F23A8392713A26 /* fontutilcmn.cpp */; }; + BF068F3C06473D8CBC55D507 /* PositionCache.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BCD873D873A53BBF955D8A4E /* PositionCache.cxx */; }; + A36B5107860E32659194073F /* LexPython.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CC2713393AB132AA8E337AE1 /* LexPython.cxx */; }; + DAAFBED07FF8365B96D20B99 /* unichar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */; }; + 49260580A7F23B569A827D3F /* filefn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58421C141C9E31C6A7A3C183 /* filefn.cpp */; }; + 6BF19C7CA9E93D989C210FE3 /* dseldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1197B997B1D139C5AE4D198A /* dseldlg.cpp */; }; + CE17002B5B7E375582747639 /* xh_choic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */; }; + 8E674574343A3C009B1BCD00 /* tif_codec.c in Sources */ = {isa = PBXBuildFile; fileRef = 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */; }; + CD241361D4693785A0B8939D /* StyleContext.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */; }; + F72020415D713C1BA41C17CF /* richmsgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */; }; + 5303FA25D0773FAEB963D8E3 /* scrolbar.mm in Sources */ = {isa = PBXBuildFile; fileRef = CC2E24773D853A77B9FEFA4C /* scrolbar.mm */; }; C2D45B334BE03F6C941CA041 /* utilsexc_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95E2B80B2D7033808504DA8D /* utilsexc_cf.cpp */; }; - 0A406D2D1ADA343891E3664C /* powercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */; }; - D3EC9191D94837CABFF05DC4 /* LexNim.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B1AA9AF75D233FFC9FC90E7C /* LexNim.cxx */; }; - 88E56F89A0DA3AD386F05FD2 /* pcre2_pattern_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */; }; - 94E510619F433AE3AC884755 /* xh_bmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */; }; - FD3B31CE1E7832218B5D9A15 /* LexPO.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3430B6483E35C3A201BF44 /* LexPO.cxx */; }; - 1569BB4728693B6285623A23 /* pngerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A0650754DC2358CA5933B28 /* pngerror.c */; }; - CFF73578F04D357E83D1D830 /* lboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */; }; - FF50EC0EC5F23DF890C6E95F /* colour.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D1F14339D1C331087650931 /* colour.cpp */; }; - 4C9BA36123E43589956864C6 /* Style.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C28429A964C337A192D76CC8 /* Style.cxx */; }; - 49FE0228D8FD3F7AB64A4432 /* bmpbuttn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */; }; - 3C665EA42ECC3E5990BA347B /* EditView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 430739CB8B95336ABB372EC7 /* EditView.cxx */; }; - 7C87CC7641033D91823ED688 /* helpfrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */; }; - 3ACCC2EB8E973C11835EB597 /* bmpbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */; }; - 6F8129E317EE3486A89D8548 /* LexSpecman.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */; }; - 9A83D365AD1F37FA9C7030C2 /* matrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF330EAACFA53877BE289896 /* matrix.cpp */; }; - E0E40333B61C33B58787078E /* LexMarkdown.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */; }; - E46BEC5C8D643BD099AF1D56 /* LexSTTXT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 50859F0155753FDCB8C5222A /* LexSTTXT.cxx */; }; + A139B846584436BCBEBAE3BF /* grid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76337016F2CA3C85831702E6 /* grid.cpp */; }; + 49C873EE448C3CD9A32012CD /* spinctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */; }; + 7CC211E10D853B958250A4CE /* LexModula.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */; }; + 6FA47EAACE613B039B6EC261 /* containr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3645350F572364BABF50238 /* containr.cpp */; }; 8FDC800D873F30E282691832 /* pngrtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 87799D3168B43EB7B5686826 /* pngrtran.c */; }; - 539B586AEAD630A79FC12ECF /* sstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46EC1508C063C8395CE7A95 /* sstream.cpp */; }; - 00E2F82590B33BDCA1F6D0C4 /* xh_htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */; }; - 0B98B6721DEE37A1ADEA382B /* quantize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B890199A37723EFD86C0ADA5 /* quantize.cpp */; }; - 61C3F7D495FB3E8BA402E4F8 /* jdmarker.c in Sources */ = {isa = PBXBuildFile; fileRef = 20E4A10BCD773C84AEC481A1 /* jdmarker.c */; }; - D542C7819D593112AE5F7C3D /* combocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */; }; - 91364FDD73053139BBAA313B /* Accessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D2DE67C976CF3004A8FE883A /* Accessor.cxx */; }; - CFDBB80A4C9A3BA092273936 /* animatecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */; }; - B37802B0A90133C68EF93DDA /* LexInno.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */; }; - D948CC99521633338B24E2F5 /* LexHollywood.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */; }; - 0C7E2D5C22A232368F862A60 /* longlong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D7AF345E563587941BD868 /* longlong.cpp */; }; - CB46C7E531903700ADFB11C8 /* tif_jbig.c in Sources */ = {isa = PBXBuildFile; fileRef = F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */; }; - 1B06622C8D8731FC832199E2 /* init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB82939EDC593F9CA95C3098 /* init.cpp */; }; - 760C729E41D93CC1AA2B4E0D /* hyperlinkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */; }; - B5470121BB4B35DE9C4836DA /* jdcoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = F1A6F3936A0D31CBB58082BA /* jdcoefct.c */; }; - 42ED9BAFD6E936849F1D36CB /* xtixml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4048A3523EC03409BD899BEF /* xtixml.cpp */; }; - 7FC3D17B3C853FE58841002D /* timercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7195E665E0F233839B967FC9 /* timercmn.cpp */; }; - 85F9828B80B03178A274BD17 /* selstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ED2105A5A033E3384EBC4ED /* selstore.cpp */; }; - DF861EBD9C483E79ADF98602 /* CharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */; }; - 9E37D29DCF7A3945A0EECB39 /* pcre2_serialize.c in Sources */ = {isa = PBXBuildFile; fileRef = BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */; }; - FD1F6CD8286D3D428FD52A28 /* filepickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B580FD04D0D83601826FD5EE /* filepickerg.cpp */; }; - B8FEEC2C94183AB69C963177 /* headercolcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */; }; + 7A7439BE66AA3771B4A89048 /* regex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB46BC22F6B23909A938C561 /* regex.cpp */; }; + 8FB5FBC5730C33F1A3D85D9F /* LexD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */; }; + C32EF2EC1A103BC3A6254321 /* xh_spin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950D51915EF83B57B5E8306F /* xh_spin.cpp */; }; 3D424F4B33653A00AE9B623A /* m_tables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 082CA018FB883999839C1DCE /* m_tables.cpp */; }; - 9110ACFC3CFB3C7994E907B0 /* imagiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A745D1821A32D591D76650 /* imagiff.cpp */; }; - 36EB5D19429D3BD1A01001D5 /* framemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26632A254717372BAA4D514D /* framemanager.cpp */; }; - B0E94A59C83637C09FAAE71C /* app.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 757B31FCCA1F381C95B30DF8 /* app.cpp */; }; - 27E2EABB117334CD89CFD2A4 /* mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B568A7364ECA30288820CCE7 /* mdi.cpp */; }; - FCE5B139CBE73FCB804EF7DD /* jcomapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EB76F786D7F3FF286948D22 /* jcomapi.c */; }; - A3321FE2A87D3BD69E0BB009 /* notebook_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5248A45AB113341EAC361910 /* notebook_osx.cpp */; }; - 0C2CBD7246993527A829BD94 /* LexDataflex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */; }; - 98F52D5224B438DFA8887E06 /* timectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741578B590AF3F2CABE615EB /* timectrlg.cpp */; }; - 8B38C6C416BA3A51B37F60C4 /* statlinecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */; }; - 1EA81A0E8E5A3B38B4D80337 /* srchcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF103B09F02315282EC8F44 /* srchcmn.cpp */; }; - BB6FE851028C3DE7A070C213 /* convauto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20B922D61CDB3CCEB59A5194 /* convauto.cpp */; }; - 2B13BFC894C63373B7ACFA3D /* xh_hyperlink.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */; }; - 17F0494F87533196904F5313 /* xh_toolbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */; }; - 830A61EA04FD367C9EB6A757 /* fswatcher_fsevents.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */; }; - E0FAB345D2933D42B62917A3 /* bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36296C259D023EAAA240FC79 /* bannerwindow.cpp */; }; - AEEE6BC41B6531898A61CB16 /* LexHTML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D87406BCF3E833369E12D89A /* LexHTML.cxx */; }; - 2FA1A8FE3644325ABAD273A4 /* fmapbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832BBBFE664736D5978420C6 /* fmapbase.cpp */; }; - E882402BEE0330A080A6516F /* strconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FEB8204E530329FA085E5B8 /* strconv.cpp */; }; - 135DFCE48FC03D8294D01A89 /* xmlrsall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */; }; - 0D79F1B4EF44393AA324213F /* LexPLM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */; }; - 6C80B6049A523836BCD20BCA /* WordList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0E7BF9256DF533EBAE2B945E /* WordList.cxx */; }; - 908957F65B7E36F8BF3858DD /* PlatWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47FF6D792CA234C395692118 /* PlatWX.cpp */; }; - 7EF89F935314301381802FAB /* filectrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2334539088B036BEAB230D1C /* filectrlg.cpp */; }; - 0E024D145DDD38ACAE68F462 /* toplevel_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */; }; - 46395873DB1C3B7FA81DE5F8 /* LexerBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */; }; - F4C0CEADEDC23610BF6983D6 /* artmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0665A40F3FC3F218074C63C /* artmac.cpp */; }; - F747991E5C973F9B8C9D800A /* fontcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */; }; - 5F6B4F226B473AACB7AC8DF5 /* xh_slidr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */; }; - 5C44446AB150378696CD6B3C /* bmpcboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */; }; - 7F77E347E1243D77A666FB43 /* clipbrd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */; }; - B01C4EF49CF9390DA93A3502 /* jidctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C131F7BF8A83960ACB26242 /* jidctflt.c */; }; - F7D10B6E0CBA32EFAF79C77C /* xh_dirpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */; }; - 815AE3FED68330F4933AA16F /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = C94DC3402FAE3C4FA776DEEA /* window.mm */; }; + 0E60E17BA4B23347A4F20160 /* gdicmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998D611109EC33A9A6A11C5A /* gdicmn.cpp */; }; + AC6AC589EFB233C7B65A3224 /* overlaycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 303ACF199BE431BD891C9301 /* overlaycmn.cpp */; }; + 60296753A32B39EB8BD0CB44 /* pcre2_study.c in Sources */ = {isa = PBXBuildFile; fileRef = 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */; }; + 4AEC67BF65B039D99F421666 /* statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C87B071E3593A889704F512 /* statbar.cpp */; }; + 205520440CD13C0AB9E89159 /* anidecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE959EC7BFDD3A628E856404 /* anidecod.cpp */; }; + 319FB8E64CE731D6A58AD301 /* clntdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C904B4BA8273355869812B2 /* clntdata.cpp */; }; + 9E37D29DCF7A3945A0EECB39 /* pcre2_serialize.c in Sources */ = {isa = PBXBuildFile; fileRef = BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */; }; + 27759C2FBB0E35FDA847B2B5 /* LexForth.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B181F564935730E89AB00D92 /* LexForth.cxx */; }; + 1E4832B42B95308299B767B9 /* jdmerge.c in Sources */ = {isa = PBXBuildFile; fileRef = 0890779C662C35889A8C6C2E /* jdmerge.c */; }; + 5417332FE2DB3CD3A647B15D /* cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF1F491B8A8376E8E2E8182 /* cursor.cpp */; }; + 84997126352137E798CD258A /* spinctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59572A234F0636D78BFD9F6B /* spinctlg.cpp */; }; + 45AB45C6B24A3983B22E56A5 /* dataobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 271B4B77622B3411A7BF6634 /* dataobj.cpp */; }; + CAF5C5BB129431B596C4C6C1 /* LexTAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 38891BF8F51E398F9082903F /* LexTAL.cxx */; }; + 7181709A030D3749AB355B74 /* xh_radbx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F43AF44465B335479752116D /* xh_radbx.cpp */; }; + 45FE206BBAD13DDCA1EA41CF /* treebase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BA6ADD758693BD180D3275B /* treebase.cpp */; }; + 9564A6968D66325DAEADEBA3 /* dcgraph.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */; }; + 0ADC8DBEE80D36B0BB9B058A /* LexASY.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A82C367B86F83981803D55DB /* LexASY.cxx */; }; + C92005CB86C6361BBB9D7C67 /* LexBibTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0851C46057CE3C37991B9E34 /* LexBibTeX.cxx */; }; + F6A1AC5CF84E32C19F91A614 /* statbrma.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1F2E9C9052D3E53BBD17DE3 /* statbrma.cpp */; }; + 59BFB8C8310E37B39AF8B0D4 /* any.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4867546E8B8D3C8683A23ED5 /* any.cpp */; }; + B0FD1B96EAE635AFBFCF2C91 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C045 /* secretstore.cpp */; }; + BF8C33B7CB3A3ECE814A95FB /* tokenzr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */; }; + 07158EBC05A637ECA9DC7B4F /* utilscocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */; }; + 39D6435B10073B85A499AFD8 /* dcbufcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBC5A5797B0D369291A76D6E /* dcbufcmn.cpp */; }; + 87C67583D36C3465ACD64103 /* vlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA90128E29A03CCCA30F4D35 /* vlbox.cpp */; }; + 51F44CB1D9AD3CBDB52EE93D /* LexDiff.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */; }; 0FBF7C9EDFB53D8DA0991B55 /* xh_notbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87662D69F0432FC96701280 /* xh_notbk.cpp */; }; - 65514CD6A9F23ED98436AC02 /* ftp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB4781DF8C432C688F30CDD /* ftp.cpp */; }; - 91BC7802C15337CDA84C3742 /* statline_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */; }; - 2FE10EA678C73523836FCC1C /* richtooltipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */; }; - A2473402D8B83628B1F66749 /* wxprintf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 607EF0043E723B7B9BE101EA /* wxprintf.cpp */; }; - 3D762A0BBF1B39B88A769632 /* helpwnd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */; }; - 3C36437B2E933F83984D431E /* imagtiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */; }; - 86AED49CEAFC3637B1F10537 /* dialog_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */; }; - 3813146434693234965C4F31 /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D6B0D32537D35069C7E053F /* inftrees.c */; }; + 1937FBA0A0DD32A8A743CFE1 /* valtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE8701E1CF2B352B945C17E5 /* valtext.cpp */; }; + 68C300D096BF39239876D043 /* utils_base.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2ED0C0702D2734D9B08FC31D /* utils_base.mm */; }; + E7F35B834A163C67B65176C6 /* tif_dirwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */; }; + E92EB502F79638B0BE569EF4 /* CallTip.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */; }; + 2CAD4DF9505F36E4A2EAD53D /* helpdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C466F32CCBD13DBC87285B3D /* helpdata.cpp */; }; + 68AC8860B0943C1FAF76D96B /* list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 552757A901E732CAA8E3F16D /* list.cpp */; }; + DB3C3AA956A03FB492480266 /* treectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */; }; + BAAB6B1D80A33843A8436B10 /* appunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */; }; + F7D10B6E0CBA32EFAF79C77C /* xh_dirpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */; }; + 87AA9C5D887B3C31A2AFB49D /* htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD5F11A3646F397BA62EB037 /* htmllbox.cpp */; }; + B6C364CB4AE33708A862B4B4 /* srchctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D46A36564C78312CAC538E93 /* srchctlg.cpp */; }; + 512AB7B82D57387EBB7BEE27 /* LexFSharp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F8AD617806563DE394C15922 /* LexFSharp.cxx */; }; + 1FB1622D59593932B25C55BA /* LexPowerShell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */; }; + E05B06A7FEEE32D5AD87EA4F /* xh_editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05310A868F0B35999C568681 /* xh_editlbox.cpp */; }; + D5A25AC579F436509805335A /* appbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95A156A823B536DE8476E4F9 /* appbase.cpp */; }; + 567A32722BA33AEE9FF93D7C /* fs_inet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7581D7140293BAE88E43DBE /* fs_inet.cpp */; }; + 67A0583ADD8C35B8B9BA3D12 /* checkbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 81708CFA21A03013ACB8DDD7 /* checkbox.mm */; }; + 539B586AEAD630A79FC12ECF /* sstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46EC1508C063C8395CE7A95 /* sstream.cpp */; }; + 2EECB3C2F9523D0B95847A7F /* accel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C78A1539462370CAA429508 /* accel.cpp */; }; + A9864F0104FA344BBE79D3BC /* rendcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96CED508FA3C3B6B9265099E /* rendcmn.cpp */; }; + FBA19C939E1E33EDB05043FE /* cairo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */; }; + C05BDB0B5F5A33A9A57FF012 /* m_links.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 080597FC0436378E96EDA94B /* m_links.cpp */; }; + 2FA1A8FE3644325ABAD273A4 /* fmapbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832BBBFE664736D5978420C6 /* fmapbase.cpp */; }; + D7F14BDFFB7F369B842AFC13 /* pcre2_config.c in Sources */ = {isa = PBXBuildFile; fileRef = FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */; }; D9EE059D3C3C3C13AE4419F1 /* stattextcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54BD19211DBD388AA0DEC7A1 /* stattextcmn.cpp */; }; - F22C401903993639AE05A295 /* xh_stbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 147800BBCB80346798B35D75 /* xh_stbox.cpp */; }; - 3C394FBD47B6310C80577E3B /* LexMMIXAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */; }; - AAABEE399008310A8BC9BE43 /* imagtga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7029BB5751398AA02D8C24 /* imagtga.cpp */; }; - 60296753A32B39EB8BD0CB44 /* pcre2_study.c in Sources */ = {isa = PBXBuildFile; fileRef = 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */; }; - 46327A3C356D3570B27C6701 /* Lexilla.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */; }; - 09A792A5129E3FE1BF077641 /* tif_jpeg_12.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */; }; + A1A7B833061C35B4AABD093C /* preferencesg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */; }; + DC6B669C9A78398F914AEE53 /* fontutil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FF661188B563D27A11F5716 /* fontutil.cpp */; }; + AF1875145B2537298E4A28D8 /* pcre2_xclass.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */; }; + 3D3EA1BAAD1833B1B48E9C86 /* xh_stbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */; }; + F501AB044AAC39DCB8C0B3E1 /* editors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C7F740A55E39FD890B3C7F /* editors.cpp */; }; + 912C69ADB1673ACEB0E6CF08 /* tif_strip.c in Sources */ = {isa = PBXBuildFile; fileRef = B83EDE2D1731311ABDE62F9F /* tif_strip.c */; }; + 62757F24C4EE3B84B6AE3F14 /* textdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D529E2668C23D94A7706C8A /* textdlgg.cpp */; }; + 73AA68AB9F1236ED9F1FBB2E /* metafile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2BB2949CC0B387AB6879539 /* metafile.cpp */; }; + 48A1F28E04603A68A1E70318 /* jidctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = A0DCC5EF59143640BE13AD73 /* jidctfst.c */; }; + 8F949B9010863F66A58FFEF1 /* xh_activityindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */; }; + 692FCCABFB963696AFC1E122 /* gdiobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */; }; + D54D3CA9E73336A08DB20705 /* LexBaan.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */; }; + 3C36437B2E933F83984D431E /* imagtiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */; }; + 2E059BFE8E3B3D9299D55969 /* textmeasure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B31409EC6532FC83B0B957 /* textmeasure.cpp */; }; + 335DD610974A33D4B6581E2A /* colourdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */; }; + 81244C52741332A8B92E5976 /* LexRaku.cxx in Sources */ = {isa = PBXBuildFile; fileRef = ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */; }; 9D4B67A357D23B5283CA8D98 /* clrpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB8A747FB60239B9AB710264 /* clrpickercmn.cpp */; }; - 6A10511265493FA2BB79CE4D /* propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BC93D1DE277395592610085 /* propdlg.cpp */; }; - 758629DA468A3EF7B1C15241 /* gifdecod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */; }; - 70F898F8B129380BBECAC559 /* richtexthtml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */; }; - CE2C937117FE3AB599DD30B9 /* sound_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9B2316B32653DA0939A372D /* sound_osx.cpp */; }; - B6891F848CA0325EAB6D1373 /* textentry_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777385D10CCC350C90F02824 /* textentry_osx.cpp */; }; - 3ED6F4B64C283232A79423CF /* dircmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */; }; - FDDCADE58FA2313986025D77 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F190B80DD28031A98E5BCA67 /* Foundation.framework */; }; - 61A2B54FD2E33C759CF5A5E8 /* pngrutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 358D0A3AC73F322EA732D020 /* pngrutil.c */; }; - EE6474BBB4AF34D093E2451D /* MarginView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F951601E73683F27AD8CA99D /* MarginView.cxx */; }; - 7BD3887F603E3704969A54E1 /* pcre2_chartables.c in Sources */ = {isa = PBXBuildFile; fileRef = 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */; }; - A39B0D7EB43137F7BA50A35C /* xh_simplebook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */; }; - AC0B0C52922B30188AE95E94 /* tabart.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51054B41BFD83E97BAF76D07 /* tabart.cpp */; }; - 76D1A1A49CC831FFB9EBB1F5 /* LexOpal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */; }; - 7A79D9AC608E3B8287229174 /* tif_warning.c in Sources */ = {isa = PBXBuildFile; fileRef = C83C97A1FCC5345896C9D7DE /* tif_warning.c */; }; + 2480859662ED399799E120A5 /* pen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA819575B5136B09FA8FEB1 /* pen.cpp */; }; + 64DD406C453D39FEBBE66ED1 /* tif_pixarlog.c in Sources */ = {isa = PBXBuildFile; fileRef = 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */; }; + 2047544E505C3BA38F0144E6 /* pcre2_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = B60497805D37375EBFCF3D98 /* pcre2_tables.c */; }; + EDCA35F1555F3509895CCA69 /* textctrl_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */; }; + 9B6A35E706543CDAA6A5014A /* LexGui4Cli.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */; }; + 11DD420E32FB3EFB9DA0AB5B /* jccolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EFF4707641D3F20AB602ED6 /* jccolor.c */; }; + C259D01CC62533D296EF023A /* scrolbarcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */; }; + 7C5552FA058034238F485900 /* dbgrptg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 182C8AD4F822375495795B43 /* dbgrptg.cpp */; }; + 552708E6296D33EBB5F6A493 /* tif_swab.c in Sources */ = {isa = PBXBuildFile; fileRef = AAC12B4456E13F57BEA25A5E /* tif_swab.c */; }; + 502D7B786EAE383B9546F31F /* LexRust.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 24BD2EF635673E819B8406CB /* LexRust.cxx */; }; + B01C4EF49CF9390DA93A3502 /* jidctflt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C131F7BF8A83960ACB26242 /* jidctflt.c */; }; + A3321FE2A87D3BD69E0BB009 /* notebook_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5248A45AB113341EAC361910 /* notebook_osx.cpp */; }; + 5A459FC1180130C5B705AEDA /* xh_ribbon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */; }; + CA155860CE9A3A8189C3A4C2 /* zipstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */; }; + DF3B927516FB365E865A9780 /* LexerModule.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */; }; + E63364B7E727383BA8E2B7EC /* datstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81B3DFBB73573FFDBD320334 /* datstrm.cpp */; }; + D9DCBE799DB634C2A73FD6BD /* statboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73954EB5397301F87881646 /* statboxcmn.cpp */; }; + EB52C6A915943813932944FF /* control.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12363D1F50FE301DAEE7F04B /* control.cpp */; }; + D070C3BE95483FE38BABA1BE /* region.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00DA3D3EEF5E305CA73A1871 /* region.cpp */; }; 249C9177B1A33EFEAB30F93F /* tipwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */; }; - AC07BA4EA5403443914DFDB1 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7013DB195D023C31ADE68546 /* crc32.c */; }; - EC43AFB3670A3D459D9B388D /* LexMPT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FE3B47058A723243A285594D /* LexMPT.cxx */; }; - 64A716F87A5136F9A790EC5A /* webview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DA80913C0E33144A42BD30F /* webview.cpp */; }; - 15735ED6556130F6A14F0BCD /* ScintillaBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */; }; - 070797A894A03196B7BEC661 /* xh_bookctrlbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */; }; - 0654BCC3F0763C50A7949504 /* LexAPDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */; }; - 99E7A46106C03484BA70D29E /* tif_unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D2F8259CC99380CB8217DEF /* tif_unix.c */; }; - 6F472413FFA03B53B395BB74 /* LexCLW.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7EE2459D69BA35838C274488 /* LexCLW.cxx */; }; - 097BC5E023C33C1DA05606AF /* Selection.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2AF7739C389536F79DAA31E5 /* Selection.cxx */; }; - 51F44CB1D9AD3CBDB52EE93D /* LexDiff.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */; }; - F07D84D124F23E7FA11CF148 /* extended.c in Sources */ = {isa = PBXBuildFile; fileRef = 033B94A9AC8A3370A794503F /* extended.c */; }; - AD07124BBA613B47829F0692 /* sockosx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4969528429903F15882F5391 /* sockosx.cpp */; }; - BE3ED6EF34303867B8C8E923 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = D4C4495603293C07A3B09D54 /* compress.c */; }; - CA5BD8ABDBA13641BBE7CD66 /* jccoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = E89AC104BF4F33A083F8B382 /* jccoefct.c */; }; - D9496139621533328AE727B6 /* pngget.c in Sources */ = {isa = PBXBuildFile; fileRef = 91300EB871CC39ECBC430D48 /* pngget.c */; }; - 595DCB164D55342EB86604EC /* hashmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6636144CDE83E8E85270FAF /* hashmap.cpp */; }; - 6978D7A20DA93A329DDD1383 /* socket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40CE02524DD4385AB2C3DF95 /* socket.cpp */; }; - 371809DA4AD1382F8B532878 /* fontenum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36E1DBA275AD325DB759C180 /* fontenum.cpp */; }; - 0E8A0B8FA40E365690C20230 /* gzlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 7395814D42CC38F6B8CD81B4 /* gzlib.c */; }; - B6C364CB4AE33708A862B4B4 /* srchctlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D46A36564C78312CAC538E93 /* srchctlg.cpp */; }; - 01D4C5F2147F3942A7CE91AA /* icon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5DAF1F49F0F3F41A427A21D /* icon.cpp */; }; - F0D892C2618130FEAD46BB86 /* panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00969CBE3B8F32C78C195619 /* panel.cpp */; }; - FDE14459359334DE9FB03ED5 /* xh_scrol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66411D54BAD338498AC59401 /* xh_scrol.cpp */; }; + 0C2073A011EA36B8AD906DA3 /* LexCIL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7F18C26877336DBE638D75 /* LexCIL.cxx */; }; + FF7DB2884F6E3C5DB4BDF61D /* fswatcher_kqueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */; }; + 1EE845DDFDDE36CA8A218205 /* tif_close.c in Sources */ = {isa = PBXBuildFile; fileRef = F82278F9AF0432529891E6D7 /* tif_close.c */; }; + F2F2963D8ECC32D39FDBF101 /* tif_write.c in Sources */ = {isa = PBXBuildFile; fileRef = E9B992CB6C28339FB0CA5E27 /* tif_write.c */; }; + FEA741A9B6663A4C929893C2 /* aboutdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */; }; + 1CBF34ACA39330028A5EA9AC /* xmlreshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */; }; + 97C551F8AEF133D680D1FD36 /* LexProgress.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */; }; + 56E1ED31F7CE38978F4A7CA0 /* LexProps.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DE0102314288305D830B9EFE /* LexProps.cxx */; }; + 46395873DB1C3B7FA81DE5F8 /* LexerBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */; }; + E3A4615870B139D29FE727C1 /* menucmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F175D6E8E5723FC797701275 /* menucmn.cpp */; }; + D5C304182151365FA9FF8A3D /* xh_bttn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */; }; + 4788F736CD9C324E8A3DFA74 /* LexEScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 58EFF24DE2E737CA8A164F5C /* LexEScript.cxx */; }; 020BBB417207393F8C60EFB6 /* LexFortran.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86A0C3603C8A343AAFBD2CE0 /* LexFortran.cxx */; }; - 36B0B923B836358D9DB0AE10 /* xh_panel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */; }; + DD1B139EA5AD3F6DB92C0FA8 /* EditModel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E685D81FB9FF3081B6C5C321 /* EditModel.cxx */; }; + F5B0B26BD0803719A3FCB4D7 /* adler32.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E45F6DF601A34BCB3CC0206 /* adler32.c */; }; + 9F608A33D52D327FAA295624 /* sckfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56653FACC7D13804A70556AD /* sckfile.cpp */; }; + F6B85CD918E93923BE631B95 /* fs_filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */; }; + A1AF8FF873D6383996995ECF /* statusbr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 071FEABEA61E3B559A47A7DB /* statusbr.cpp */; }; + 8DE45CEAF2DD3C22AA019F74 /* deflate.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CF73F49AEC238C99CE89845 /* deflate.c */; }; + 70F898F8B129380BBECAC559 /* richtexthtml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */; }; + E6D18B2EDE353F678830859F /* odcombocmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F23140777B733679D2FAAFC /* odcombocmn.cpp */; }; + EC43AFB3670A3D459D9B388D /* LexMPT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FE3B47058A723243A285594D /* LexMPT.cxx */; }; + F46777ABE0743B04A1E1F0A4 /* spinbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */; }; + A336FD218BE63B19991CA513 /* ipcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C090A76B6F23E6481A27282 /* ipcbase.cpp */; }; + 50E89226E8D7390D9D21C809 /* debugrpt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */; }; EC3D181D65F33E09A675FFF2 /* addremovectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 964578C24B9F390AAD08576E /* addremovectrl.cpp */; }; - 1C544DADDA6F3D62A5E25E93 /* LexerSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CF502E0E4D853CBBBEC885EF /* LexerSimple.cxx */; }; - 22AE900003F73134BBEE8BB6 /* dirctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */; }; - 0743AE8613F535A0ABB79315 /* intl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC8BB1AABB3D393EBA527060 /* intl.cpp */; }; - 0B4AF44DC0C439AD83CDC37E /* Indicator.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4FDE5A962FA234FA83A605AD /* Indicator.cxx */; }; - 1E17F95DD433379E8C18298C /* odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */; }; - 03BF1610E2FC3BD5ACB754F0 /* bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */; }; - 1D7442C82B343F50A83B25B0 /* CharClassify.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */; }; - 47EBBB18BDB539C2A948C711 /* chm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E24C6F2A04E30EB95598305 /* chm.cpp */; }; - B559E894684A38238CAAA115 /* dirctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E110907DDC13305E88B90086 /* dirctrlcmn.cpp */; }; - F6A1AC5CF84E32C19F91A614 /* statbrma.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1F2E9C9052D3E53BBD17DE3 /* statbrma.cpp */; }; - 0C3F48DBD05E3566A4CA6D44 /* LexAsm.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A65399C8A6D636139E362119 /* LexAsm.cxx */; }; - 700BBDECBE313E108BA99ABD /* toplvcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 861438BD294335D4B859EA71 /* toplvcmn.cpp */; }; - FD3CC5F0AA41384B9388A1E0 /* htmlfilt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C6C4F5468743265A02D656C /* htmlfilt.cpp */; }; - C5E5AB869065307F83E27DD1 /* htmlpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */; }; + 8966F77CC97B3ED780C8F137 /* xh_bmpcbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */; }; + C67EAE20657E36839BF86690 /* richtooltipg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */; }; + A1A7D793B034398B8696EF33 /* utils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 789F45D14FF23E248FCFB5FA /* utils.mm */; }; + ED8D23D79FF33ED380FE09EB /* scrlwing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */; }; + 069D53F2DFBF370A8CC99630 /* LexCSS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */; }; + BAA75384DA82370298672333 /* helpctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E433D1700631A8907B8227 /* helpctrl.cpp */; }; + 5519BA1F2463308FAC4A0C9F /* LexAVS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 57E4784E521339BEB971D81D /* LexAVS.cxx */; }; + 37715483D08335B790FFE058 /* filectrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */; }; + 65514CD6A9F23ED98436AC02 /* ftp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB4781DF8C432C688F30CDD /* ftp.cpp */; }; + 3554C88010CE3D2A8970A135 /* sashwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */; }; + 09A792A5129E3FE1BF077641 /* tif_jpeg_12.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */; }; + 94B1C88076793400810FAC30 /* png.c in Sources */ = {isa = PBXBuildFile; fileRef = AF26BAB1F4733114926F1724 /* png.c */; }; + 8D6B0D48EA843E48AB0FE43D /* LexErrorList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2851EAAEE9B73FE8981912C9 /* LexErrorList.cxx */; }; + CBBD7B32DB7B3E24AE745D78 /* epolldispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */; }; BA9F0BBD57F63FD29E484FD3 /* LexScriptol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F1B41B0F10C3DA38188C239 /* LexScriptol.cxx */; }; - F84D59648206349A9768157C /* msgdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */; }; - 82FA4AA043213728AC266700 /* wizard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */; }; - 9881E3FB23ED3283B6CC71A2 /* filepickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */; }; - 98AD7D0478BA36249B03C623 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B9586328A1F3C4BA0390AA5 /* time.cpp */; }; + 087FF6DE223A32509692F39B /* txtstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */; }; + DA71FBB9EFB2350ABB3CEC80 /* stdpaths.mm in Sources */ = {isa = PBXBuildFile; fileRef = 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */; }; + 59F995B6E6EE3CA5A4487844 /* glcanvas.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35007225BB683683AA7C5E48 /* glcanvas.mm */; }; + E3B3E4F75D503DB89B5C622D /* stc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B9C41A4D12345AAA764CAD /* stc.cpp */; }; + E53AFF04877D34C386D77380 /* wfstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C37866F41B0C31E295AA7FA6 /* wfstream.cpp */; }; + 2F35A207C3993DE08E4FE0B0 /* timerunx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */; }; + 383A6993E90936D39A5F12BD /* headerctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */; }; + FFF5BFBE600E35FAB7EA522C /* fileback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC12D557950A3B0D89D9F2F3 /* fileback.cpp */; }; + 55D893FDD00633FEA82ABD81 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */; }; + BF2585CFA6853023975F1E78 /* iconbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */; }; + 47C31B7492F33C3EBE53262A /* settings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6831AA74AB5B38D5AA6946D7 /* settings.mm */; }; + F6288F388B8C33FD85E9A155 /* LexerNoExceptions.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */; }; + 22AE900003F73134BBEE8BB6 /* dirctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */; }; + 324B2BAC54553D45B3C56BFD /* LexOScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */; }; + 2386B575BC3931D2AF86CB33 /* fontdlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38CEA4A3579331EF808B8363 /* fontdlgosx.mm */; }; + B0FD1B96EAE635AFBFCF2C92 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C044 /* secretstore.cpp */; }; + 6D723C987BFB39B7B887DCB1 /* Editor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DA5E95D498C53A808A8E2EEB /* Editor.cxx */; }; + BE3ED6EF34303867B8C8E923 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = D4C4495603293C07A3B09D54 /* compress.c */; }; + F016C51053373E658ED4C9A9 /* helpext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF376BC55EA73F5FB7328142 /* helpext.cpp */; }; + 7569F0BC3C603EB19168088F /* collpaneg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84758329F2163F00A9C005DF /* collpaneg.cpp */; }; + DEB35F871F8E3B90AD207AEE /* printps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF76670146413EEFA005206A /* printps.cpp */; }; + 07412469921A3E488A2F9BA6 /* checklst_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */; }; + A3A898DA3114311EB7F02227 /* sckstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D784A32C094730FEAA391A9B /* sckstrm.cpp */; }; + 2E8440A2BDD53BE7B01547C2 /* uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4E1DC1869C6327C80D2F5F4 /* uri.cpp */; }; 31DD19A942283FA8810B6382 /* numformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BD8DAB407D231EFA5B2CAE5 /* numformatter.cpp */; }; - 1DD1888315513C24BF9C31B4 /* LexSAS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E1B538562B93D148F54645B /* LexSAS.cxx */; }; - AF1875145B2537298E4A28D8 /* pcre2_xclass.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */; }; - C0CDA289E9EC3E20BE70B2E6 /* choiccmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24930711031D35288D28B04B /* choiccmn.cpp */; }; - 26E4813A97DE323E88119163 /* xh_choicbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */; }; - 9058997222493A7A859A4D4C /* richtextxml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C69E48C06BD23C178F650E42 /* richtextxml.cpp */; }; - 164010B26D363F5FA09785B6 /* listctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1B1FBB2BCC43BA7A45E9438 /* listctrlcmn.cpp */; }; - 7A84B9471A3238B4B66B1776 /* nbkbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B901252876603DCEA4C66D89 /* nbkbase.cpp */; }; - C425A172B0AB3EBD9AC9A590 /* ustring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B63EBEE1A04537E7887E9FD0 /* ustring.cpp */; }; - D51B3389209E370489078891 /* tif_dirread.c in Sources */ = {isa = PBXBuildFile; fileRef = F6EA240B3DB93D398A990FAD /* tif_dirread.c */; }; - 3B8A54D5E5A53607A6F7979A /* arrstr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A57CF60203F53459A03951A9 /* arrstr.cpp */; }; - D8ADDD24BEAC3D94B3388D3E /* LexCOBOL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */; }; - 4C31B77B28343F20B4973366 /* LexJulia.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */; }; - 779D3480141B3683A6D132BE /* tif_lzw.c in Sources */ = {isa = PBXBuildFile; fileRef = 346C68F0CCD23823B78267F0 /* tif_lzw.c */; }; - 05814571E7A83F5DBFB6E4C4 /* msgout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E968913A9A593B258BD8EACB /* msgout.cpp */; }; - 1A4F9F18BBEB3515AC7C7CC6 /* LexMetapost.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */; }; - 311840186794346AAAA42091 /* jutils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */; }; - 80665EEAE8613DF8A93A7984 /* utilscmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4188821BBA833CCAA678B234 /* utilscmn.cpp */; }; + DC928C38CA8331F18FF00BCB /* tif_lzma.c in Sources */ = {isa = PBXBuildFile; fileRef = 3088384F07C63A5DB3581656 /* tif_lzma.c */; }; + DF861EBD9C483E79ADF98602 /* CharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */; }; + A92439BAFD3A30A29DD93131 /* apptraits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A23A8BC7373D4BBD72851D /* apptraits.cpp */; }; + 7B372FEA276438C186F7E340 /* RunStyles.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */; }; + DB9565CC4EAE3BCB9F490620 /* xmltok.c in Sources */ = {isa = PBXBuildFile; fileRef = 8685B8ED68F23DB0B770FD74 /* xmltok.c */; }; + 9FD99E06F6613A1A958FAF6B /* jdmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */; }; + 49BEDFBC3661339D90EF6935 /* LexTCL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */; }; + 7B4DA2F5F25B3E188CBAFE38 /* hyperlnkcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */; }; + 522E6CF2A62F34259BCE2DE2 /* tif_flush.c in Sources */ = {isa = PBXBuildFile; fileRef = 305614D19CF23CB2B14A5B2E /* tif_flush.c */; }; + 955D2199F1893D37BA2D7478 /* laywin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3784C240C2F330683494926 /* laywin.cpp */; }; + C2E37E798F743A4199C8658E /* fddlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */; }; + CE2C937117FE3AB599DD30B9 /* sound_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9B2316B32653DA0939A372D /* sound_osx.cpp */; }; + 0FFFFA2F762B3160955D1D88 /* gauge_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC28591B403B32B7AFCC079D /* gauge_osx.cpp */; }; + 4279D39CAAF834F6A5B99196 /* persist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D9626646773CED82449D5D /* persist.cpp */; }; + 26BB10834DA1388881BDD1EC /* propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98B72B3A0A73044B85AED60 /* propgrid.cpp */; }; + 0F8C79010EF0316AA1B7392D /* LexTACL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E5C91072D533919A78D8ED2 /* LexTACL.cxx */; }; + 760C729E41D93CC1AA2B4E0D /* hyperlinkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */; }; + 9E0B67E34B683412978BA82D /* filtall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */; }; + E2A73751CECF32A68FFAEE82 /* panelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70E9B2C076673C87B4218A01 /* panelcmn.cpp */; }; + 64A716F87A5136F9A790EC5A /* webview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DA80913C0E33144A42BD30F /* webview.cpp */; }; AE660214E0CB375FBA508A36 /* uilocale.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1B794996B953D00AC7BC2AE /* uilocale.mm */; }; - 9678C2B19D293818AA8E9E0D /* LexSpice.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4592464D4868329897F3864D /* LexSpice.cxx */; }; - 49C873EE448C3CD9A32012CD /* spinctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */; }; - 3554C88010CE3D2A8970A135 /* sashwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */; }; - CAF5C5BB129431B596C4C6C1 /* LexTAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 38891BF8F51E398F9082903F /* LexTAL.cxx */; }; + 159E4248CB1333AD841D9F03 /* LexYAML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9CC7C6FFD67233788EEDFC5E /* LexYAML.cxx */; }; + 66FD099CE5A338C18329FC36 /* LexAbaqus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CD72950967F33809931D4968 /* LexAbaqus.cxx */; }; + CB46C7E531903700ADFB11C8 /* tif_jbig.c in Sources */ = {isa = PBXBuildFile; fileRef = F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */; }; + B6BC23F4F3E43315BD4C7CF8 /* mediactrl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */; }; + EBA0986930DA3B59B2FB4F1E /* htmltag.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCCFF49F92B4323D9181CEDA /* htmltag.cpp */; }; + 0836590D35FE37988DE70442 /* combobox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */; }; + EE6474BBB4AF34D093E2451D /* MarginView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F951601E73683F27AD8CA99D /* MarginView.cxx */; }; + C34B8675439F39B4845FFC50 /* xh_listb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */; }; + CB1F37993ECB3B73A51B42FD /* LexMySQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2F3EE2E9EE05311497826962 /* LexMySQL.cxx */; }; + 7C20B79175D33852A2E9DE83 /* LexRuby.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8734C52C7559310784396455 /* LexRuby.cxx */; }; + 9836B3D336963795928FE5A1 /* m_dflist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52FE1599218730CC99A3F801 /* m_dflist.cpp */; }; + A283187810EB32DAA173BD33 /* artstd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24E82A05E9A9323287CDB15B /* artstd.cpp */; }; + EDD92822EBD93E86AE5A2ED0 /* slidercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8072CA67D19346ABF4D465F /* slidercmn.cpp */; }; + 27B5431DC79733CD8D403E88 /* pcre2_context.c in Sources */ = {isa = PBXBuildFile; fileRef = 3026D20A03E53F1DB40FB35A /* pcre2_context.c */; }; + BB12132A86E2350AA47414CC /* arm_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 933D7637CAA43F6C99814BC5 /* arm_init.c */; }; + BDB7B2AD26CB356B8BEAAECD /* jchuff.c in Sources */ = {isa = PBXBuildFile; fileRef = DC0FFDC7A6163F2DA73B84EB /* jchuff.c */; }; + 9A178ED42D96329D8CBF9B89 /* tif_predict.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */; }; + 0742292656623EC481B34369 /* paper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87D973CA8D673267BD0844D3 /* paper.cpp */; }; + 64F11C549E3035DF85691060 /* tif_ojpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */; }; + 6F8129E317EE3486A89D8548 /* LexSpecman.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */; }; + A52A7D2FEB1434E29C64582C /* RESearch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E145FC31ED523B4AA5080A61 /* RESearch.cxx */; }; + 9455B49669853E71BD4FD965 /* richtextformatdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */; }; + 3141FEDED0943BD6A2EF858F /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA93D41B11683E758D456531 /* log.cpp */; }; + FEB073547F3F3AC19D31F698 /* tif_tile.c in Sources */ = {isa = PBXBuildFile; fileRef = BD88495AF72531A28D2201D0 /* tif_tile.c */; }; + 4269B85FDC5639BEB76A8AEB /* nonownedwnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */; }; + 750C716389AD3ADBABC9D689 /* statbmp_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */; }; + DDC71B80D562303690FDBE4C /* appcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F01DDE448E4C3983ACCE67FD /* appcmn.cpp */; }; + 0EB6AB38A68D3845AC384A23 /* xh_text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */; }; + 2B13BFC894C63373B7ACFA3D /* xh_hyperlink.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */; }; + BDAB44F5D017395D9D3A1F23 /* frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3019BA65DD73F30A865365F /* frame.cpp */; }; + E5D698D2606A304DA743AF92 /* grideditors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66426B63AA3E3A279936C034 /* grideditors.cpp */; }; + 47EBBB18BDB539C2A948C711 /* chm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E24C6F2A04E30EB95598305 /* chm.cpp */; }; + 88E56F89A0DA3AD386F05FD2 /* pcre2_pattern_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */; }; + 5FE969523BDB3353AEF96810 /* xh_filepicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */; }; + 2D4D105CA9BE3FA6995A5FFF /* tif_dumpmode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */; }; + D5AABE973F3A351EB1C1A5A6 /* fontmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0817D6A1AF83608B050EBC3 /* fontmap.cpp */; }; 6AA0EE765330326380989FD1 /* stopwatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */; }; - 3C0EB1DDA5243E31B2D92CE2 /* jquant2.c in Sources */ = {isa = PBXBuildFile; fileRef = 02D9332D5C5632E981936E29 /* jquant2.c */; }; - BEAC2449AFA7304989BA301E /* fontpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */; }; - D18E2985C48733B2B7B3D442 /* evtloopunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */; }; - 060E095718B03EF98C754799 /* treelist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5190E3E110443FD29F2474FC /* treelist.cpp */; }; - F5FF98C231B33E3EB7902C64 /* colordlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = DAAED71A534135A9A61612A6 /* colordlgosx.mm */; }; - 5E80C103F0853788A2B43E5D /* LexX12.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 17A8A93EF3C03546BE19F43B /* LexX12.cxx */; }; - F5DF7AF0FA9E371BB71EF798 /* xh_listbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */; }; - 32FECED7A7633C4D8C1BFBB3 /* toolbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24DF23D67E693D999B875101 /* toolbkg.cpp */; }; - A0BA01A85C303C78A3130711 /* art_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */; }; - 18A318847EAC37F2B915F081 /* jmemmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */; }; - AE84BC9A1CCA3ADA9C483950 /* xmlrole.c in Sources */ = {isa = PBXBuildFile; fileRef = 59C6B9849FF6325E890942EF /* xmlrole.c */; }; - E62F8E49FD5035D8BC71BB49 /* LexGAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */; }; - BAA75384DA82370298672333 /* helpctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E433D1700631A8907B8227 /* helpctrl.cpp */; }; - DC5F82733F733D98B39DE74D /* LexDMIS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 910D00F1C9143C6D85C24E7C /* LexDMIS.cxx */; }; - 2315C8692C443ED1AE431728 /* tif_extension.c in Sources */ = {isa = PBXBuildFile; fileRef = AF7CE00168AB33C994374ABA /* tif_extension.c */; }; - 4279D39CAAF834F6A5B99196 /* persist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22D9626646773CED82449D5D /* persist.cpp */; }; - 1EDED99760B23A1999E75C12 /* imaglist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */; }; - EE0EA850822E35F596B5EBBA /* artprov.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29387393C07C39DB8FF1663B /* artprov.cpp */; }; - 8F949B9010863F66A58FFEF1 /* xh_activityindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */; }; - 9C6E9E4BA54733EF9F87E4B7 /* uncompr.c in Sources */ = {isa = PBXBuildFile; fileRef = 513033E36E643593AC305B3D /* uncompr.c */; }; - C987310872D1396BAF716E5A /* webrequest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA9E372A64B3B808A64B178 /* webrequest.cpp */; }; - DFEB8DA3D42734949CB1E1AA /* clipcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 239D386E9D7D39C5A1E859C6 /* clipcmn.cpp */; }; - 1AB50C98FF473B33A3CA4D39 /* xh_cmdlinkbn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */; }; - D4EC9DB5F8DF319EA0FD26A4 /* LexVB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8F633793051F371F94C27530 /* LexVB.cxx */; }; - 3694B007E88A3D8C8CB952F0 /* LexRegistry.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A737317EDE0F3921B1412966 /* LexRegistry.cxx */; }; - 7625D908B2CD34C78243BA8F /* settcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABE3DC4AA47D39ACA83F27C0 /* settcmn.cpp */; }; - E92EB502F79638B0BE569EF4 /* CallTip.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */; }; + B559E894684A38238CAAA115 /* dirctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E110907DDC13305E88B90086 /* dirctrlcmn.cpp */; }; + F910C74E48823E0BA7F7885D /* graphicc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BACAA6CE4A0934459F26B27C /* graphicc.cpp */; }; + D4C87E227A28391891D89088 /* filename.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */; }; + 371809DA4AD1382F8B532878 /* fontenum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36E1DBA275AD325DB759C180 /* fontenum.cpp */; }; + 4E712589FAA837F589B72F4C /* LexMaxima.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */; }; + 2020EE3C45743B53BE8C7F38 /* LexCoffeeScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */; }; + 95826E8528CC32D8934C36EC /* xh_frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */; }; + 834F2ADD0520313FBAC4F927 /* LexCsound.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */; }; + 6F472413FFA03B53B395BB74 /* LexCLW.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7EE2459D69BA35838C274488 /* LexCLW.cxx */; }; + C2DEE063B5E032C1BD2B5026 /* xmlparse.c in Sources */ = {isa = PBXBuildFile; fileRef = A92B6033D8233DB1821F193B /* xmlparse.c */; }; + 98AD7D0478BA36249B03C623 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B9586328A1F3C4BA0390AA5 /* time.cpp */; }; + FD3B31CE1E7832218B5D9A15 /* LexPO.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC3430B6483E35C3A201BF44 /* LexPO.cxx */; }; + B37802B0A90133C68EF93DDA /* LexInno.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */; }; + 65FCDBFFF3F138A3ABBAA650 /* xh_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */; }; + B1E30CF6CFA932F5A3DBA94F /* docview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB634FD597793A74B3B3AA7F /* docview.cpp */; }; + 8FC1C07FEE793897A1E96D23 /* statbmpg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA2119A7C67D37B290C17989 /* statbmpg.cpp */; }; + 45D88A74B3EE3837B9F79595 /* LexFlagship.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */; }; + 1CC5AEC6C08E3600801CDADA /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 95B4EDF38F8A3E5EBAFF560F /* trees.c */; }; + DB244DC0A09C379AAA63C0A4 /* bmpbndl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */; }; + 9110ACFC3CFB3C7994E907B0 /* imagiff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A745D1821A32D591D76650 /* imagiff.cpp */; }; + 22EC132AEF863BFBAA6EDEC3 /* LexPowerPro.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */; }; 57AE7FCF768F3965BD39B47A /* m_span.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 727F25F832AD32D4B12D8E39 /* m_span.cpp */; }; - 42AC484FDD7D3E948CEA801C /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = B5370A676AAC32419D7FDD87 /* inflate.c */; }; - 93E04642049537EB8A37BA26 /* htmlwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */; }; - 9C1F073349FD393E9220C0D3 /* combog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBD7B44E33373BCCB60FC11F /* combog.cpp */; }; - D9DCBE799DB634C2A73FD6BD /* statboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73954EB5397301F87881646 /* statboxcmn.cpp */; }; - 66FD099CE5A338C18329FC36 /* LexAbaqus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CD72950967F33809931D4968 /* LexAbaqus.cxx */; }; - 63F895D6F5643E4B9E666B79 /* creddlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */; }; - 7569F0BC3C603EB19168088F /* collpaneg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84758329F2163F00A9C005DF /* collpaneg.cpp */; }; - DC6B669C9A78398F914AEE53 /* fontutil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FF661188B563D27A11F5716 /* fontutil.cpp */; }; - 849B89D1F6AB3DDEAA2D53AD /* xh_styledtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */; }; - 66584BC871303041BA622DE0 /* m_fonts.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1F3C70512D93501B0478F3E /* m_fonts.cpp */; }; + 056CA84179433AA48D55DA65 /* bar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FDDE855D9F83E4891362EB4 /* bar.cpp */; }; + FDDCADE58FA2313986025D77 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F190B80DD28031A98E5BCA67 /* Foundation.framework */; }; + CCFD3144A22C3A87B67D88AB /* LexRebol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0D9828C9BD9633C1A8F4E0CD /* LexRebol.cxx */; }; + 3C394FBD47B6310C80577E3B /* LexMMIXAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */; }; + 7D615329368D32709CEF4B58 /* headerctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7273A7E255323EB3B391D997 /* headerctrlg.cpp */; }; + 87092C0C817D343DAB77E23E /* xh_scwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */; }; + F55F3887CDE633D7877C607B /* LexSmalltalk.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */; }; + 1A4F9F18BBEB3515AC7C7CC6 /* LexMetapost.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */; }; + A3C4D47A84E8362295867525 /* LexPOV.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8EECA8EB93BF3C7A9CC827AD /* LexPOV.cxx */; }; + EAE02BA934B43EEE92C496C7 /* dcpsg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEA0945B20913754A54D0FD9 /* dcpsg.cpp */; }; + 131B879180AE3FB481F81CC7 /* fs_mem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A305CEC03B3085B159B617 /* fs_mem.cpp */; }; BE99A85EE76236CC8C719A64 /* xh_gauge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */; }; - ACD644CFA85A3B70A3E3B118 /* jcparam.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F41EDEB298538CC86FF6DC1 /* jcparam.c */; }; - 187F921A95DA3594B0AD980D /* gridsel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26381308E32A3A179E7A9B40 /* gridsel.cpp */; }; - BF9B151DC0543E37878F8B9A /* stattextg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DE635F30F3935099AF1486C /* stattextg.cpp */; }; - A2769D1659AE3CA3B58C2CAE /* wincmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */; }; - 3CDE2B6BF88D326189F069BD /* accelcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A436B55DC44E3827A757A6D8 /* accelcmn.cpp */; }; + 6944AC98F6F83E3D983DABD3 /* tif_getimage.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */; }; + 10B5C2A72C713A678458CD9D /* pcre2_ord2utf.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */; }; + 99E7A46106C03484BA70D29E /* tif_unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D2F8259CC99380CB8217DEF /* tif_unix.c */; }; + 28ADE8D385A53445A5451F23 /* jdhuff.c in Sources */ = {isa = PBXBuildFile; fileRef = 72869747E68E37998CB0A07E /* jdhuff.c */; }; + 652CFDD9A1C1366E99B5D6BC /* socketiohandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */; }; + F5D2146C94E733FAAB6D286A /* threadpsx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB466912FDA23F8B87A00A3C /* threadpsx.cpp */; }; 4E2737AC738431EB9898B8B6 /* gzwrite.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */; }; - F2813BF297C73A3ABD02EC98 /* glcanvas_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */; }; - 96B507455762391688B5E500 /* xh_listc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */; }; - 0E92CEF677AA32C9A8CDA0A7 /* checkbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */; }; - 6C1171E3FB7137CCB9E3F536 /* tif_zstd.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B98123FD57731139044B064 /* tif_zstd.c */; }; - CF3082BA1ED232F4B904BD14 /* stdpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */; }; - F43DAE2E829A3A7493531381 /* richtextimagedlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */; }; - C2DEE063B5E032C1BD2B5026 /* xmlparse.c in Sources */ = {isa = PBXBuildFile; fileRef = A92B6033D8233DB1821F193B /* xmlparse.c */; }; - 796311E398FF313C84218824 /* uiactioncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87BF60D0D4A33E2AD2E1E25 /* uiactioncmn.cpp */; }; - A1A7D793B034398B8696EF33 /* utils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 789F45D14FF23E248FCFB5FA /* utils.mm */; }; - CE17002B5B7E375582747639 /* xh_choic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */; }; - 6944AC98F6F83E3D983DABD3 /* tif_getimage.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */; }; - 427E6AF88CF73D799206E37D /* checkboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FC2F076657431458896115A /* checkboxcmn.cpp */; }; + F5FF98C231B33E3EB7902C64 /* colordlgosx.mm in Sources */ = {isa = PBXBuildFile; fileRef = DAAED71A534135A9A61612A6 /* colordlgosx.mm */; }; + D6B73239BF0E32288161679C /* platinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97FFB03FF6793506B246BAC6 /* platinfo.cpp */; }; + 31380AD4F5BD38A6B9212FE0 /* LexR.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7255468B6D5F3D8697994A53 /* LexR.cxx */; }; + 026F90F7492C316A94128916 /* logg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C64705CE9398316D87BAB4DC /* logg.cpp */; }; + 779D3480141B3683A6D132BE /* tif_lzw.c in Sources */ = {isa = PBXBuildFile; fileRef = 346C68F0CCD23823B78267F0 /* tif_lzw.c */; }; + 98DF13E96160304EBB905E73 /* jcmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = 810EB7316DF3344197C78EC0 /* jcmainct.c */; }; + 05814571E7A83F5DBFB6E4C4 /* msgout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E968913A9A593B258BD8EACB /* msgout.cpp */; }; + FCE5B139CBE73FCB804EF7DD /* jcomapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EB76F786D7F3FF286948D22 /* jcomapi.c */; }; + 7A79D9AC608E3B8287229174 /* tif_warning.c in Sources */ = {isa = PBXBuildFile; fileRef = C83C97A1FCC5345896C9D7DE /* tif_warning.c */; }; + 63F2517EC6B2334CA825A6F9 /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEB08798C70E33DDB360E563 /* layout.cpp */; }; EA02FA6D3B003F8F8A2963C6 /* toolbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */; }; - 8620088DDD233B139B250DD4 /* filter_sse2_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */; }; - 1BCC944F5E0936F5830F03E8 /* windowid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B9B85572D0312BBF2878DB /* windowid.cpp */; }; - 4B88254FF9963833A276A64C /* snglinst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */; }; - 37749AC3468836FC857BD0D5 /* checklstcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */; }; - 2DBF5F96CCC63F7481C26A43 /* webview_webkit.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FEECFD764E037288CE94FEB /* webview_webkit.mm */; }; - 438EAEA4B30C325C827F6197 /* xh_fontpicker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */; }; - 834F2ADD0520313FBAC4F927 /* LexCsound.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */; }; - 774EB9F3F7E93A379E1F7551 /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C4762898E5330C28651EE73 /* graphics.cpp */; }; - 8A4046BD38873D9CAC9C2B59 /* filesys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F263022F3FEA3F75895B644D /* filesys.cpp */; }; - 28ADE8D385A53445A5451F23 /* jdhuff.c in Sources */ = {isa = PBXBuildFile; fileRef = 72869747E68E37998CB0A07E /* jdhuff.c */; }; - 8FB5FBC5730C33F1A3D85D9F /* LexD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */; }; - 056CA84179433AA48D55DA65 /* bar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FDDE855D9F83E4891362EB4 /* bar.cpp */; }; - 064908348009398C8EA8497C /* fontpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */; }; - 0730A107A2B935A9923C8EF2 /* filehistorycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7B3307E56B332769901E99F /* filehistorycmn.cpp */; }; - DC928C38CA8331F18FF00BCB /* tif_lzma.c in Sources */ = {isa = PBXBuildFile; fileRef = 3088384F07C63A5DB3581656 /* tif_lzma.c */; }; - A874AF0B203D3DC99C27469A /* LexNimrod.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */; }; - 6BC8B3EDB3AE3EF4BACFC08A /* ContractionState.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5219A792C6A736F193D4A82F /* ContractionState.cxx */; }; - 8093A858CA9E3E9EA2D2185F /* jdarith.c in Sources */ = {isa = PBXBuildFile; fileRef = FA9DD56E399533A5BE7AAD16 /* jdarith.c */; }; - 0FFFFA2F762B3160955D1D88 /* gauge_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC28591B403B32B7AFCC079D /* gauge_osx.cpp */; }; - 901F659891613419B8643952 /* calctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */; }; - 36DB80FD5B153E9099DB6912 /* imaggif.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */; }; - 702616D38A5B345D9CC87114 /* xh_bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3116006345D833509865FF7F /* xh_bannerwindow.cpp */; }; - 5A459FC1180130C5B705AEDA /* xh_ribbon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */; }; - 31FEAB56919D372993CAD89C /* pngrio.c in Sources */ = {isa = PBXBuildFile; fileRef = A06AB1974DB93EE2999EC75C /* pngrio.c */; }; - F1E4D7CA634E33808AE3B522 /* fontenumcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 373242CD08F330208A7CF438 /* fontenumcmn.cpp */; }; - 171F09F8DD553FA5B4B3FAE2 /* modalhook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E7C516E2453A269280A404 /* modalhook.cpp */; }; - F6B85CD918E93923BE631B95 /* fs_filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */; }; - 62331487C17B32E081B8FEA7 /* LexLaTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */; }; + 27E2EABB117334CD89CFD2A4 /* mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B568A7364ECA30288820CCE7 /* mdi.cpp */; }; + 46E331300D8F349DB36AB50A /* imagpnm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC12B97F233B3B9494DA217F /* imagpnm.cpp */; }; + 0718E7524134312090541D6E /* LexPascal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */; }; + 51D133EC44F830588FEEAEC0 /* LexHaskell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */; }; + A2769D1659AE3CA3B58C2CAE /* wincmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */; }; + 61A2B54FD2E33C759CF5A5E8 /* pngrutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 358D0A3AC73F322EA732D020 /* pngrutil.c */; }; + 5B5B8DF915D438AA9FCEB39E /* imagall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FFDFB4D208F37569AC548B0 /* imagall.cpp */; }; + D9496139621533328AE727B6 /* pngget.c in Sources */ = {isa = PBXBuildFile; fileRef = 91300EB871CC39ECBC430D48 /* pngget.c */; }; + DC7D78BABF823480B56528AC /* xh_propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D73962222F573116BE63576C /* xh_propgrid.cpp */; }; + 9FBC642677C63D01AA2511BC /* evtloop_cf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */; }; + 2FAE979E6FE23D088C768B7D /* gridcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */; }; + E515EAE375AE390688CBF8D3 /* pngtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B32A13D5B3336098B1B9765 /* pngtrans.c */; }; + 9CC92BB4B0E233A0A7F81279 /* LexVisualProlog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */; }; + 3E99016BDE043A08B4D6B3CE /* htmprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 194ADD28300E329E80F7892E /* htmprint.cpp */; }; + 0743AE8613F535A0ABB79315 /* intl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC8BB1AABB3D393EBA527060 /* intl.cpp */; }; + A39B0D7EB43137F7BA50A35C /* xh_simplebook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */; }; + 3D22FC202D903007AEE3D164 /* fdiounix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */; }; + 6C1171E3FB7137CCB9E3F536 /* tif_zstd.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B98123FD57731139044B064 /* tif_zstd.c */; }; + 0BB3BF0909A134BA93CF5620 /* xh_richtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */; }; + 4CF9BA40653C3153805D88AB /* arcfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C513377E9E303F778BA9D7ED /* arcfind.cpp */; }; + D13AE659C3AC37B68D39B2C9 /* LexLout.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B14D6E7E15FD3C869E341198 /* LexLout.cxx */; }; + F9C5EAC42CCF3267B4100BAE /* wakeuppipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */; }; + 96B507455762391688B5E500 /* xh_listc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */; }; + 0FDDE8E193743F3A8CBDC67C /* richtextprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */; }; + 3ED6F4B64C283232A79423CF /* dircmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */; }; + D36E76A4CAF5352D9397E1FF /* fdiodispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */; }; + B6891F848CA0325EAB6D1373 /* textentry_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777385D10CCC350C90F02824 /* textentry_osx.cpp */; }; + 1D7442C82B343F50A83B25B0 /* CharClassify.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */; }; + 7DEC57D6CE8232A09EF74219 /* PropSetSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */; }; + A9A5973552EE30838306D15C /* tif_packbits.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CE73979D0933A43830307E4 /* tif_packbits.c */; }; + 12B1DEF410AB34999AB210DB /* LexBatch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 853C2741D98438DA90B87D90 /* LexBatch.cxx */; }; + 923F4797A73A3BDD87BBD1E1 /* LineMarker.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AF3DF03795153E039B8F1F87 /* LineMarker.cxx */; }; + 6E68759BC2E63CA59C12FDC0 /* popupcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D922063B2F2536629EEEAAF0 /* popupcmn.cpp */; }; + 0C2CBD7246993527A829BD94 /* LexDataflex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */; }; + 02E8F1195B653D26AAA89462 /* listbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */; }; + 5E80C103F0853788A2B43E5D /* LexX12.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 17A8A93EF3C03546BE19F43B /* LexX12.cxx */; }; + 67EBCE5FA5FF36349ADF0916 /* jdapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */; }; + 3ACCC2EB8E973C11835EB597 /* bmpbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */; }; + BEAC2449AFA7304989BA301E /* fontpickerg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */; }; + 0A406D2D1ADA343891E3664C /* powercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */; }; + 5557AA36FBCC3ED9A5F5751A /* editlbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D90D14874FD38079835AF0B /* editlbox.cpp */; }; + D17E3053DA0D3F7EA4D0951B /* helpdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81821049E39B32C6ABCF6820 /* helpdlg.cpp */; }; + 7FC3D17B3C853FE58841002D /* timercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7195E665E0F233839B967FC9 /* timercmn.cpp */; }; + 2C95DFA8EE463487956B4EB4 /* infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */; }; + CEE0D7A7D5D8323B9957A780 /* notifmsgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */; }; + FD3CC5F0AA41384B9388A1E0 /* htmlfilt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C6C4F5468743265A02D656C /* htmlfilt.cpp */; }; + E104017EE1A4357DAF84E1E6 /* auibook.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A298576700C33F018616E7BD /* auibook.cpp */; }; + DFEB01E7B97A3515B785DCA9 /* pcre2_string_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */; }; + B0C44C3054CB3E0590DDCBDA /* LexJSON.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */; }; + 77BC918AF05C30E8A0BD27F8 /* tipdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */; }; + 32988828498D32B2B3F8A982 /* bmpsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741E9B48274638CD9DD73698 /* bmpsvg.cpp */; }; BCDAE378D03E37F5994FB9C5 /* XPM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C25521AF59B9324EB2809C73 /* XPM.cxx */; }; - 81244C52741332A8B92E5976 /* LexRaku.cxx in Sources */ = {isa = PBXBuildFile; fileRef = ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */; }; + BCD81FD3D1EC305F801E1C1B /* sckipc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */; }; + 2F7328AC75393951B08F75F1 /* pcre2_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 25E03E349FC13E4A9428B94E /* pcre2_error.c */; }; + 0730A107A2B935A9923C8EF2 /* filehistorycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7B3307E56B332769901E99F /* filehistorycmn.cpp */; }; + 91364FDD73053139BBAA313B /* Accessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D2DE67C976CF3004A8FE883A /* Accessor.cxx */; }; + B198DA8239E9358A9D56B988 /* menu_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66C21CA37BF63893887FD91B /* menu_osx.cpp */; }; + 4657E7382E9E3EDC8DE2401E /* mimetype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C97C1F26B5A38C49543060C /* mimetype.cpp */; }; + BEA90F2C6BB93143958F899A /* propgridiface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */; }; + 699D88EE2DAA3594B6606890 /* ViewStyle.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C133B838193A35ABBB803151 /* ViewStyle.cxx */; }; + 0C7E2D5C22A232368F862A60 /* longlong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72D7AF345E563587941BD868 /* longlong.cpp */; }; + A8476B3CE46B3FD4A2832F00 /* LexNull.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */; }; + B181806CC34839E791E54BF0 /* xh_tglbtn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */; }; + 5792675690843C6AA4125A72 /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77F5E7BCD9B2307D8DBCC052 /* font.cpp */; }; + 5ED54DFAE28533108C08DF2A /* pcre2_extuni.c in Sources */ = {isa = PBXBuildFile; fileRef = F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */; }; + BAFF04F1680F32DA988EB03D /* stockitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B180290089B139F18B0C7BBA /* stockitem.cpp */; }; + 5F57C4908E5038D19D68ED7A /* gallery.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */; }; + 6D073876E1753549B5EEFDDA /* tif_compress.c in Sources */ = {isa = PBXBuildFile; fileRef = CA0D5D47D62A3148BA51B31B /* tif_compress.c */; }; + 2E930206397C3EDCBD8206FC /* gridctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */; }; + A569A33A2097316D8110C2C1 /* toolbar_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */; }; + E62F8E49FD5035D8BC71BB49 /* LexGAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */; }; + FEF99FF6C38D3B488396B142 /* ffile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */; }; + D54A162E557834A48F4646A9 /* advprops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 326723AEB79A305F90D6B41D /* advprops.cpp */; }; + 46327A3C356D3570B27C6701 /* Lexilla.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */; }; + 86B0D280A43C308CAC14BE24 /* CaseFolder.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F52DCBC0442233738B39138E /* CaseFolder.cxx */; }; + 427E6AF88CF73D799206E37D /* checkboxcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FC2F076657431458896115A /* checkboxcmn.cpp */; }; + 13854E7822783719A2530792 /* jddctmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = A5BBC1E494D33D028CA547FF /* jddctmgr.c */; }; + B5470121BB4B35DE9C4836DA /* jdcoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = F1A6F3936A0D31CBB58082BA /* jdcoefct.c */; }; + 6C3A459236F736B8A14A13AC /* dialog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83B878A16ABC396E8C03A15E /* dialog.mm */; }; + 17F0494F87533196904F5313 /* xh_toolbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */; }; + 346D274E17673A01B0177D5B /* sockunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7661E9E09A397790ED9545 /* sockunix.cpp */; }; A486A28E216D320AB57452D3 /* lzmastream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */; }; - 213CE0DD5B2335D0AD53B54A /* gzclose.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A24E9101688368296C21EBE /* gzclose.c */; }; - AA54EDC7C94730D1A31F059E /* LexCharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */; }; - 59BFB8C8310E37B39AF8B0D4 /* any.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4867546E8B8D3C8683A23ED5 /* any.cpp */; }; - 2989056891153968B372EA14 /* pngwutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 45D7558DF5E03A2EB41883F0 /* pngwutil.c */; }; + DF8124E5E17D386A84CEEA27 /* LexLisp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 40586C8986443431A64EB066 /* LexLisp.cxx */; }; + 807450BB072C3C0D9C52A3B6 /* LexGDScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E29A8279BAEE303B95C9D3C6 /* LexGDScript.cxx */; }; + 830A61EA04FD367C9EB6A757 /* fswatcher_fsevents.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */; }; + 849B89D1F6AB3DDEAA2D53AD /* xh_styledtextctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */; }; + 064908348009398C8EA8497C /* fontpickercmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */; }; + B791BD05072B3B909A7093C2 /* dcsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */; }; + CB2E99E8FB7D3269A333A55E /* window_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26D7C4995D7A35A1854B533F /* window_osx.cpp */; }; + F24F637D59F637CA9A7E23C9 /* xh_filectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */; }; + 6C822F7F313734DCB51F44B9 /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81A30C745CA73E30B788B408 /* image.cpp */; }; + 3694B007E88A3D8C8CB952F0 /* LexRegistry.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A737317EDE0F3921B1412966 /* LexRegistry.cxx */; }; + CFDBB80A4C9A3BA092273936 /* animatecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */; }; + 4DA9DE940E043C58BEACBB56 /* UniqueString.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */; }; + EA10DA3199813E90B39C70D3 /* xh_infobar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45C65E309F3A39598C043657 /* xh_infobar.cpp */; }; + 0C3F48DBD05E3566A4CA6D44 /* LexAsm.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A65399C8A6D636139E362119 /* LexAsm.cxx */; }; + 9519D59421513FF28FF717B6 /* regiong.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE538F33A1423FC2AC9E45F3 /* regiong.cpp */; }; + B8A98F209934399DA45C2386 /* fs_data.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */; }; + 36EB5D19429D3BD1A01001D5 /* framemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26632A254717372BAA4D514D /* framemanager.cpp */; }; + 908957F65B7E36F8BF3858DD /* PlatWX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47FF6D792CA234C395692118 /* PlatWX.cpp */; }; + F5DF7AF0FA9E371BB71EF798 /* xh_listbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */; }; + 7BD3887F603E3704969A54E1 /* pcre2_chartables.c in Sources */ = {isa = PBXBuildFile; fileRef = 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */; }; + 89046455F49D3D75A21C9DB8 /* imagfill.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 137E01C362E134449BF966ED /* imagfill.cpp */; }; + AC07BA4EA5403443914DFDB1 /* crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7013DB195D023C31ADE68546 /* crc32.c */; }; + 0B792C3F31713850818EEFEA /* LexDMAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AC62806DE67F33E18C386D4F /* LexDMAP.cxx */; }; + A2473402D8B83628B1F66749 /* wxprintf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 607EF0043E723B7B9BE101EA /* wxprintf.cpp */; }; + 0B98B6721DEE37A1ADEA382B /* quantize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B890199A37723EFD86C0ADA5 /* quantize.cpp */; }; + 187F921A95DA3594B0AD980D /* gridsel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26381308E32A3A179E7A9B40 /* gridsel.cpp */; }; + F38202271C6131908C358DEC /* mstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC3D1E222FD93A69B1D1366E /* mstream.cpp */; }; + 97F60B2A9CE93BC8949A8CCD /* LexCrontab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */; }; + 1D726139C977341A97D0C931 /* datetimefmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 864438709B363773B8C3382D /* datetimefmt.cpp */; }; + 9A63148F193E33B5964DD029 /* uilocale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */; }; + B60AD651E0523DB7B31E4106 /* LexillaAccess.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 8052B1625907355894CCF263 /* LexillaAccess.cxx */; }; + 1C52CB9487DF3AB9AF243B47 /* prntbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 242BF97B558634A79322052C /* prntbase.cpp */; }; + AAABEE399008310A8BC9BE43 /* imagtga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7029BB5751398AA02D8C24 /* imagtga.cpp */; }; + CEBAAB0C77983358A601BFFE /* jdmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = ED19EF377E653F71B1876259 /* jdmaster.c */; }; + E46BEC5C8D643BD099AF1D56 /* LexSTTXT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 50859F0155753FDCB8C5222A /* LexSTTXT.cxx */; }; + C3C19BD343B235F9909D4959 /* xh_aui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C55AF552EE6931E8BFF7281B /* xh_aui.cpp */; }; 774A89998E09308CBFB03EE0 /* imagxpm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C85865D28DC31649440A921 /* imagxpm.cpp */; }; - 32988828498D32B2B3F8A982 /* bmpsvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 741E9B48274638CD9DD73698 /* bmpsvg.cpp */; }; - A8476B3CE46B3FD4A2832F00 /* LexNull.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */; }; - 86787E4138CC334BB74EC7B4 /* palette_neon_intrinsics.c in Sources */ = {isa = PBXBuildFile; fileRef = FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */; }; - 3141FEDED0943BD6A2EF858F /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA93D41B11683E758D456531 /* log.cpp */; }; - 353B584AD0C03919A57A3048 /* affinematrix2d.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD09A813E10A31C19554B425 /* affinematrix2d.cpp */; }; - 2480859662ED399799E120A5 /* pen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA819575B5136B09FA8FEB1 /* pen.cpp */; }; - 6E2C2E8AA1713ADE9C338379 /* tif_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 726C0457DF1232C793918DC1 /* tif_zip.c */; }; - 9836B3D336963795928FE5A1 /* m_dflist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52FE1599218730CC99A3F801 /* m_dflist.cpp */; }; - A36B5107860E32659194073F /* LexPython.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CC2713393AB132AA8E337AE1 /* LexPython.cxx */; }; - F569D7A3F0E038E9B4CC2A76 /* xh_comboctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */; }; - 7B4DA2F5F25B3E188CBAFE38 /* hyperlnkcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */; }; - 20BEEFFA08F3396791596870 /* dlunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA2D9F325F833C408657E7B7 /* dlunix.cpp */; }; + F07D84D124F23E7FA11CF148 /* extended.c in Sources */ = {isa = PBXBuildFile; fileRef = 033B94A9AC8A3370A794503F /* extended.c */; }; + 745C39E90E8C3C08A887B51C /* msgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */; }; + FE2DBCCC1D0B36A3BE4493C0 /* fs_arc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88F2BA2F0598342186A484B5 /* fs_arc.cpp */; }; + 221DC4F6678A3EC5ACDDEA4F /* statbox_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */; }; + 82FA4AA043213728AC266700 /* wizard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */; }; + 25656617A56D342AA3D1BFE2 /* ctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */; }; + FECC98B53C0F3106AB04E69E /* tif_fax3.c in Sources */ = {isa = PBXBuildFile; fileRef = 30FD1048328234E59D319863 /* tif_fax3.c */; }; + F0B3F484C38C3BA0B9927CD9 /* docmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */; }; + 52C0984A2A4F31BC885519B0 /* xtistrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */; }; + 215958201947310B88BBEDB3 /* statbmp.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD6B26B5A6A733A89EF5AB9C /* statbmp.mm */; }; + 0813551C951A3AD1A5EF01B2 /* imagbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84098A475939BB9EE87E70 /* imagbmp.cpp */; }; + 4B88254FF9963833A276A64C /* snglinst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */; }; + BA57708D2D563967A0D1F003 /* LexTxt2tags.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */; }; + D3FB75C8E3A73AE38EE8A6F6 /* selectdispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */; }; + A9B91FC69E473BE18895ABAB /* InList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCBD877191233EE9984112D2 /* InList.cxx */; }; + 26E4813A97DE323E88119163 /* xh_choicbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */; }; + 1749412E53B9311DABA71DDC /* bmpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */; }; + E7921B0472B63E4091F4F517 /* xh_collpane.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */; }; + 32FECED7A7633C4D8C1BFBB3 /* toolbkg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24DF23D67E693D999B875101 /* toolbkg.cpp */; }; + 595DCB164D55342EB86604EC /* hashmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6636144CDE83E8E85270FAF /* hashmap.cpp */; }; + E8EE34F0A78C31B489B19FEE /* LexMSSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1C71BF55495034FFBE653C80 /* LexMSSQL.cxx */; }; + 8AB7191F7CB838FC8337C48D /* xh_statbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FADE850169F7347F83FE1499 /* xh_statbar.cpp */; }; + 9678C2B19D293818AA8E9E0D /* LexSpice.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4592464D4868329897F3864D /* LexSpice.cxx */; }; + 4442EA28B0B3373B9A2D0862 /* collheaderctrlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */; }; + 2C53221A318E37529E6460EB /* tif_fax3sm.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */; }; + 9C1F073349FD393E9220C0D3 /* combog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBD7B44E33373BCCB60FC11F /* combog.cpp */; }; + 702616D38A5B345D9CC87114 /* xh_bannerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3116006345D833509865FF7F /* xh_bannerwindow.cpp */; }; 88E1AE56FD393C8BA5CF8545 /* stringops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F1E724EA70AB35DDB130F84F /* stringops.cpp */; }; - 23965E313EDC3BBE9B2FA1C5 /* imagpng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24396D584D053948A3FF0DCD /* imagpng.cpp */; }; - 9B6A35E706543CDAA6A5014A /* LexGui4Cli.cxx in Sources */ = {isa = PBXBuildFile; fileRef = FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */; }; - 567A32722BA33AEE9FF93D7C /* fs_inet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7581D7140293BAE88E43DBE /* fs_inet.cpp */; }; - 96927C5A21FD3ACF936CDF6C /* renderg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49CABA38E78D34DFA260AA06 /* renderg.cpp */; }; + C987310872D1396BAF716E5A /* webrequest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EA9E372A64B3B808A64B178 /* webrequest.cpp */; }; + 4CB3626391CE34D4B1F71AA0 /* jdatasrc.c in Sources */ = {isa = PBXBuildFile; fileRef = DECAF5DD80383A2CA76EB383 /* jdatasrc.c */; }; + 76A83A293C9F33BCB7DFDE26 /* jdatadst.c in Sources */ = {isa = PBXBuildFile; fileRef = 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */; }; + BF1760458996391E8EB42949 /* ctrlsub.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */; }; + 7A84B9471A3238B4B66B1776 /* nbkbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B901252876603DCEA4C66D89 /* nbkbase.cpp */; }; + 700BBDECBE313E108BA99ABD /* toplvcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 861438BD294335D4B859EA71 /* toplvcmn.cpp */; }; + D948CC99521633338B24E2F5 /* LexHollywood.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */; }; + FE5B7C7A84B83C17A38E8403 /* LexSML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */; }; + 6F0605F3A4E83BF0BF4C8B7E /* cmdproc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */; }; + BD49EC50CB363642BDBF25C8 /* mousemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D037EA567C253DEEA17E822B /* mousemanager.cpp */; }; + 570FA90F526E3F25A8E8FCF2 /* tif_read.c in Sources */ = {isa = PBXBuildFile; fileRef = 64B25B87203E3464BCDD277D /* tif_read.c */; }; + 4CFB7E6E5BD53E2BB39BEF63 /* m_style.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EB95BCFA255323183A996C9 /* m_style.cpp */; }; + AE84BC9A1CCA3ADA9C483950 /* xmlrole.c in Sources */ = {isa = PBXBuildFile; fileRef = 59C6B9849FF6325E890942EF /* xmlrole.c */; }; + 8A4046BD38873D9CAC9C2B59 /* filesys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F263022F3FEA3F75895B644D /* filesys.cpp */; }; + 32486A808EBC3E088598D51C /* jcprepct.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FE0455EBDC63D82B2D88587 /* jcprepct.c */; }; + 8B87FEC23DB834EDBFB6EA32 /* pcre2_ucd.c in Sources */ = {isa = PBXBuildFile; fileRef = 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */; }; + 07C769F64665317BA3E1AC90 /* tif_jpeg.c in Sources */ = {isa = PBXBuildFile; fileRef = 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */; }; + CA5BD8ABDBA13641BBE7CD66 /* jccoefct.c in Sources */ = {isa = PBXBuildFile; fileRef = E89AC104BF4F33A083F8B382 /* jccoefct.c */; }; + 07EC76232BB3343FA5CB90B0 /* LexAVE.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */; }; + AD07124BBA613B47829F0692 /* sockosx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4969528429903F15882F5391 /* sockosx.cpp */; }; + 4E396D8D2E9138D797F320C6 /* tif_aux.c in Sources */ = {isa = PBXBuildFile; fileRef = D0CDADAF2D893E32A38351E4 /* tif_aux.c */; }; + 90BC965B1A1F35A3B2C9D1C9 /* Decoration.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BF1C44D726E63B18A98006EC /* Decoration.cxx */; }; + 0FA6E1E47F123FF4A902E4D2 /* xh_odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0080254545B9383ABDF2045C /* xh_odcombo.cpp */; }; + 16021CFD78623B8CBD08FC1F /* LexVHDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */; }; + 22C76BF2C3E331CD87657E6E /* LexNsis.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1BC0322549563787A21CE8F1 /* LexNsis.cxx */; }; + 2DBF5F96CCC63F7481C26A43 /* webview_webkit.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FEECFD764E037288CE94FEB /* webview_webkit.mm */; }; + 7ECC6EE6D5273F75BB6B7B74 /* tif_dirinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 032A38738B58394E8617617B /* tif_dirinfo.c */; }; + 135DFCE48FC03D8294D01A89 /* xmlrsall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */; }; + 3813146434693234965C4F31 /* inftrees.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D6B0D32537D35069C7E053F /* inftrees.c */; }; + 21F74D4D4D84375AB155FD5B /* stattext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95186FEF3DEF39D8B1157BD5 /* stattext.mm */; }; + 6463C9BE78C0394CB7B451FA /* pcre2_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = BDADEB1DA6433E52972C8934 /* pcre2_compile.c */; }; + 4B996B4C54163D7091427DB5 /* gzread.c in Sources */ = {isa = PBXBuildFile; fileRef = BAD4614CABC934D6AFF8D9CD /* gzread.c */; }; + 33ED014A7FF7398794E6E4CF /* xh_split.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */; }; DA0FA502405A37B2A5698D20 /* config.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FE0B33481283D3493613B0F /* config.cpp */; }; - BCD81FD3D1EC305F801E1C1B /* sckipc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */; }; - 1D726139C977341A97D0C931 /* datetimefmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 864438709B363773B8C3382D /* datetimefmt.cpp */; }; - 5792675690843C6AA4125A72 /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77F5E7BCD9B2307D8DBCC052 /* font.cpp */; }; - 65FCDBFFF3F138A3ABBAA650 /* xh_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */; }; - 97C551F8AEF133D680D1FD36 /* LexProgress.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */; }; - 692FCCABFB963696AFC1E122 /* gdiobj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */; }; - 0A2A4D2DC8F63FE1AC0BFAAF /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2024D29170D3B50A4DFDE11 /* base64.cpp */; }; - 2D60F289103837EA8925E3F1 /* dcbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1EE17722EA937E88A7F0C01 /* dcbase.cpp */; }; - A92439BAFD3A30A29DD93131 /* apptraits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A23A8BC7373D4BBD72851D /* apptraits.cpp */; }; - EAE02BA934B43EEE92C496C7 /* dcpsg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEA0945B20913754A54D0FD9 /* dcpsg.cpp */; }; - 2E8440A2BDD53BE7B01547C2 /* uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4E1DC1869C6327C80D2F5F4 /* uri.cpp */; }; - F5D0BCF1A6C839E5829199E2 /* sizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */; }; - CEC6430AEB6E3200BFA75D07 /* jfdctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */; }; - 67EBCE5FA5FF36349ADF0916 /* jdapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */; }; - 6292B023DBF4337A91404AD0 /* preferencescmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A046179831F63824A67B509B /* preferencescmn.cpp */; }; - CA155860CE9A3A8189C3A4C2 /* zipstrm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */; }; - 27E73CA5C35A30CE89946ECA /* slider_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D215A0D67563350CB4EECB06 /* slider_osx.cpp */; }; - 604ABF86317C3D4F899DBF37 /* richtextsymboldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */; }; - C5A8DF376BB13A2A8290C2E5 /* xh_unkwn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */; }; - 895E7FE46F733C75AE8847E3 /* DBCS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = CDF592CBE5193497A26EF978 /* DBCS.cxx */; }; - 07412469921A3E488A2F9BA6 /* checklst_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */; }; - 7C5552FA058034238F485900 /* dbgrptg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 182C8AD4F822375495795B43 /* dbgrptg.cpp */; }; - 4666CDC48BA9301EA283BFFF /* choice_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */; }; - 028257C52CAE3038AA862C35 /* stdstream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE16011AD6323AAC8616F973 /* stdstream.cpp */; }; - B640A8A74D973A8FBEF63916 /* LexConf.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 04082EC1C91334379425802D /* LexConf.cxx */; }; - E515EAE375AE390688CBF8D3 /* pngtrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B32A13D5B3336098B1B9765 /* pngtrans.c */; }; - 5B5B8DF915D438AA9FCEB39E /* imagall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FFDFB4D208F37569AC548B0 /* imagall.cpp */; }; - 7C9EAFF4A0223EE597E0E39E /* xh_srchctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */; }; - 83616D33080E3F0F9FA5FBB4 /* xh_html.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 889FFA9573A835F280A21CB4 /* xh_html.cpp */; }; - D17E3053DA0D3F7EA4D0951B /* helpdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81821049E39B32C6ABCF6820 /* helpdlg.cpp */; }; - F72020415D713C1BA41C17CF /* richmsgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */; }; - 16021CFD78623B8CBD08FC1F /* LexVHDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */; }; - 71CCB06E790C3C54BFF1199D /* LexSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */; }; - 2020EE3C45743B53BE8C7F38 /* LexCoffeeScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */; }; - 39CC380F801F3EE984523275 /* auibar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A4437E9697300390FDE14E /* auibar.cpp */; }; - 383A6993E90936D39A5F12BD /* headerctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */; }; + AB58406CEBA13BC4A2A83B66 /* printmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */; }; + 46CE8B53D2663927AAE5DF9D /* xh_treebk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */; }; + 3357BD0518F538E9A949F886 /* xh_tree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */; }; + 127E255EE601383A9E0EF7EA /* menuitem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61548D0FE1353D7C846DD721 /* menuitem.mm */; }; 697FC496816F33568E1FB5A5 /* LexTCMD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1CABAEA3B48333CB88B40F08 /* LexTCMD.cxx */; }; - 9CC92BB4B0E233A0A7F81279 /* LexVisualProlog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */; }; - 55D893FDD00633FEA82ABD81 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */; }; - 4CFB7E6E5BD53E2BB39BEF63 /* m_style.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EB95BCFA255323183A996C9 /* m_style.cpp */; }; - 1E166FC1A7B3371FB038B172 /* fldlgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */; }; - 283C3ABE42433244983C27C1 /* stattext_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CF5C09D9A1230EEB42713E1 /* stattext_osx.cpp */; }; - 45FE206BBAD13DDCA1EA41CF /* treebase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BA6ADD758693BD180D3275B /* treebase.cpp */; }; - 955D2199F1893D37BA2D7478 /* laywin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3784C240C2F330683494926 /* laywin.cpp */; }; - 9B3F9D04FB533D99B58BD519 /* jfdctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */; }; - EBA0986930DA3B59B2FB4F1E /* htmltag.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCCFF49F92B4323D9181CEDA /* htmltag.cpp */; }; - F016C51053373E658ED4C9A9 /* helpext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF376BC55EA73F5FB7328142 /* helpext.cpp */; }; - A9B91FC69E473BE18895ABAB /* InList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCBD877191233EE9984112D2 /* InList.cxx */; }; - 523FB2A8435A3324A8E1B370 /* PerLine.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9389DAF8B91030B7AAB029FF /* PerLine.cxx */; }; - 0BB3BF0909A134BA93CF5620 /* xh_richtext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */; }; - 2563C775427E3D68BD384F2F /* richtextstyles.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D30617843F33310089C1F77A /* richtextstyles.cpp */; }; - 894D43C8F224394FB3171F26 /* jcapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */; }; - B0FD1B96EAE635AFBFCF2C92 /* secretstore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BE1FB352696346BB642C045 /* secretstore.cpp */; }; - 11DD420E32FB3EFB9DA0AB5B /* jccolor.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EFF4707641D3F20AB602ED6 /* jccolor.c */; }; - BF3D600A93403C589B65C5BF /* xh_stlin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F555177554E398286DBC6FB /* xh_stlin.cpp */; }; - 45D88A74B3EE3837B9F79595 /* LexFlagship.cxx in Sources */ = {isa = PBXBuildFile; fileRef = F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */; }; - 0813551C951A3AD1A5EF01B2 /* imagbmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84098A475939BB9EE87E70 /* imagbmp.cpp */; }; - 800CFCEDBB7938338C65EEAC /* notifmsgcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B233180893DB3328AF4847DA /* notifmsgcmn.cpp */; }; - 27759C2FBB0E35FDA847B2B5 /* LexForth.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B181F564935730E89AB00D92 /* LexForth.cxx */; }; - FD38B04026F930CC80BC9480 /* m_pre.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61658C3EABB4341AA38C691E /* m_pre.cpp */; }; - 48A1F28E04603A68A1E70318 /* jidctfst.c in Sources */ = {isa = PBXBuildFile; fileRef = A0DCC5EF59143640BE13AD73 /* jidctfst.c */; }; - AAC2AC9C49F1366D8BD20F5E /* LexECL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 1AD9605C9385374C87FAC9BC /* LexECL.cxx */; }; - 0C485288EA86379D9FD66536 /* cshelp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67DCEEB6861731319C30817F /* cshelp.cpp */; }; - A283187810EB32DAA173BD33 /* artstd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24E82A05E9A9323287CDB15B /* artstd.cpp */; }; - 242E1D1A9BF331BA918134EC /* pngwtran.c in Sources */ = {isa = PBXBuildFile; fileRef = 0964797530CF3FE7B8DB6242 /* pngwtran.c */; }; - 3DA70DE666D838A59642A4E6 /* LexAsciidoc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */; }; - 980ED1DA2F96361985952254 /* webrequest_urlsession.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */; }; - 2102C23970FB3F22AB46A59A /* LexTADS3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A284E855892F3A9E9E19E854 /* LexTADS3.cxx */; }; - DDC71B80D562303690FDBE4C /* appcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F01DDE448E4C3983ACCE67FD /* appcmn.cpp */; }; + CDC0FF253B503BA19693D68D /* xh_propdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */; }; + 309C0A78D45C3AB7B8778B59 /* pngset.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E463A493FD930DE80E58608 /* pngset.c */; }; + DE26572475EE336B8EEA5D92 /* jerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 108517BCD39230E7A89BC943 /* jerror.c */; }; + 527054445A0D3A00A5C2EC44 /* tif_thunder.c in Sources */ = {isa = PBXBuildFile; fileRef = 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */; }; + 4666CDC48BA9301EA283BFFF /* choice_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */; }; + C2CF6B59914A3183ADE84028 /* tif_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 48F1439BF6C3361296F05A33 /* tif_error.c */; }; + 9A83D365AD1F37FA9C7030C2 /* matrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF330EAACFA53877BE289896 /* matrix.cpp */; }; + F80C2290D67B345F9CF60085 /* dpycmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A37E3D1FB4FB31AFAE88665A /* dpycmn.cpp */; }; CCE4ECA9CE883B008065C6FB /* jctrans.c in Sources */ = {isa = PBXBuildFile; fileRef = 725574EF98C4301989181CBF /* jctrans.c */; }; + 26649553E4763EE6BA268B7D /* xh_gdctl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */; }; + 00E2F82590B33BDCA1F6D0C4 /* xh_htmllbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */; }; + A191AA29BDF83BB090A9DF4F /* LexCharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */; }; + 1E2AB43075973AE59A8D89C1 /* fontdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */; }; + 246B4FF96BA135258FE45F4F /* encconv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */; }; + 9B8E5690A6103FC1BDC6C47E /* pngread.c in Sources */ = {isa = PBXBuildFile; fileRef = 29D6506AEA5A323B8735F126 /* pngread.c */; }; + 4958BD2E717A3F03AB030188 /* tbarbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3F32C01D122301AB00D06A5 /* tbarbase.cpp */; }; + 682403FBBD4E3D5E88159501 /* CellBuffer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */; }; + 15735ED6556130F6A14F0BCD /* ScintillaBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */; }; + 743BB23211B336A6A0F26E57 /* jcapistd.c in Sources */ = {isa = PBXBuildFile; fileRef = F83172EE2DAE352FB969D4F2 /* jcapistd.c */; }; + 62F1DC80D631335B892610A8 /* splitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C125FA3837C631A9BE0ED5E7 /* splitter.cpp */; }; + 42ED9BAFD6E936849F1D36CB /* xtixml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4048A3523EC03409BD899BEF /* xtixml.cpp */; }; + CA4DCD57060B38CC8B2283D7 /* filtfind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */; }; + 056E30EA43753A7CB1AF8C9E /* strvararg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EEAD9C3E180305D8899441E /* strvararg.cpp */; }; + 444D3B969B4336E8AD5CCFBF /* LexStata.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B61D36546E97371FAC5D4565 /* LexStata.cxx */; }; + FD38B04026F930CC80BC9480 /* m_pre.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61658C3EABB4341AA38C691E /* m_pre.cpp */; }; + F84D59648206349A9768157C /* msgdlg.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */; }; + 8B38C6C416BA3A51B37F60C4 /* statlinecmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */; }; + 4657479AF35533AEB7876676 /* helpbase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB30516233A39BE809405AA /* helpbase.cpp */; }; + 14C024EB327435A2A571DA2C /* LexKix.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B303230368143F37B2409DE6 /* LexKix.cxx */; }; + C0CDA289E9EC3E20BE70B2E6 /* choiccmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24930711031D35288D28B04B /* choiccmn.cpp */; }; + AE5286C71D1130EAA368A1C4 /* radiobtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 724927B0045F3CC0884878BB /* radiobtncmn.cpp */; }; + 213CE0DD5B2335D0AD53B54A /* gzclose.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A24E9101688368296C21EBE /* gzclose.c */; }; + 4DA209AEF4AD32AAB97F9718 /* htmlcell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68E5188DB6003C35A8C7754D /* htmlcell.cpp */; }; 10743B74A58231639C6BF610 /* inffast.c in Sources */ = {isa = PBXBuildFile; fileRef = 400275BE019D3E5BA47988BE /* inffast.c */; }; - BFD3BFBDC8DA3B1EAD141F96 /* LexErlang.cxx in Sources */ = {isa = PBXBuildFile; fileRef = A1276C0E5D48337489DEE8DF /* LexErlang.cxx */; }; - 7A7439BE66AA3771B4A89048 /* regex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB46BC22F6B23909A938C561 /* regex.cpp */; }; - FE9A662A1F9B34D099C45C1D /* xh_cald.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 093B5233861B3F9B8C85762B /* xh_cald.cpp */; }; - C32EF2EC1A103BC3A6254321 /* xh_spin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950D51915EF83B57B5E8306F /* xh_spin.cpp */; }; - 7ECC6EE6D5273F75BB6B7B74 /* tif_dirinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 032A38738B58394E8617617B /* tif_dirinfo.c */; }; - 1142E2D85FD93E9AB5D8A55A /* pcre2_script_run.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F4CDF9048EC36788619769D /* pcre2_script_run.c */; }; - 745C39E90E8C3C08A887B51C /* msgdlgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */; }; - 9FA6C4275F0D3E1A884ED561 /* pcre2_auto_possess.c in Sources */ = {isa = PBXBuildFile; fileRef = C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */; }; - C92005CB86C6361BBB9D7C67 /* LexBibTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 0851C46057CE3C37991B9E34 /* LexBibTeX.cxx */; }; - CB078622E90F33BE9D131132 /* buttonbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5612DBC4125B379DA2B28824 /* buttonbar.cpp */; }; - 403FBA20CEFE3EAFB4E6B905 /* dir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7332A03D93D3DABB050615D /* dir.cpp */; }; - D997FFC948B73FDA892DB531 /* jdsample.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FFCF47A161B3E08B19BFE14 /* jdsample.c */; }; - 07158EBC05A637ECA9DC7B4F /* utilscocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */; }; - 9FD99E06F6613A1A958FAF6B /* jdmainct.c in Sources */ = {isa = PBXBuildFile; fileRef = B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */; }; - 88A43B1C5A7438838DE97B94 /* tif_luv.c in Sources */ = {isa = PBXBuildFile; fileRef = 66FDA882451239EA8DF2E0B5 /* tif_luv.c */; }; - EEB0B28903693C7E9D07192F /* glcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E08A51FA8D8A361681B07295 /* glcmn.cpp */; }; - F46777ABE0743B04A1E1F0A4 /* spinbtncmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */; }; - 6C46AF0370793AA0B74A5A4A /* tabmdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */; }; - 2EECB3C2F9523D0B95847A7F /* accel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C78A1539462370CAA429508 /* accel.cpp */; }; + BF9B151DC0543E37878F8B9A /* stattextg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DE635F30F3935099AF1486C /* stattextg.cpp */; }; + 83616D33080E3F0F9FA5FBB4 /* xh_html.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 889FFA9573A835F280A21CB4 /* xh_html.cpp */; }; + 76D1A1A49CC831FFB9EBB1F5 /* LexOpal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */; }; 793F542F20AB31F6AF736795 /* tif_open.c in Sources */ = {isa = PBXBuildFile; fileRef = 1731A6096BFC3A468AB4755A /* tif_open.c */; }; - 048986FB629E313EA670CD0C /* webviewfshandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */; }; - E3136EF5DD843ACE886E2868 /* tif_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = E79B2D1F630036129B9677A7 /* tif_dir.c */; }; - 89046455F49D3D75A21C9DB8 /* imagfill.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 137E01C362E134449BF966ED /* imagfill.cpp */; }; - 2DF74933A90E34129F1BEF72 /* dnd_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA72410F615B3A78A6340532 /* dnd_osx.cpp */; }; - 4DD98A9436C83CF3B9425A78 /* sysopt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */; }; - 1A70DDEDF9E13FF4BDA390E9 /* bmpbndl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */; }; - BB12132A86E2350AA47414CC /* arm_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 933D7637CAA43F6C99814BC5 /* arm_init.c */; }; - AE95E3BDEDB7358DBE9E7E5A /* webview_chromium.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2718D06670953933B897B0D8 /* webview_chromium.cpp */; }; - 346D274E17673A01B0177D5B /* sockunix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7661E9E09A397790ED9545 /* sockunix.cpp */; }; - 3C5E1A45A57B3169A4C073D9 /* LexVerilog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */; }; - D6B2A64A78AF3F2983B441A8 /* ownerdrwcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */; }; - 923F4797A73A3BDD87BBD1E1 /* LineMarker.cxx in Sources */ = {isa = PBXBuildFile; fileRef = AF3DF03795153E039B8F1F87 /* LineMarker.cxx */; }; + 8AA341CCFB8E3F6AB3523595 /* splash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F8836E29C5A370E80CE070E /* splash.cpp */; }; + 86003C8EB906304F9025F788 /* jcinit.c in Sources */ = {isa = PBXBuildFile; fileRef = AA6C6739C3BD3EFA9CF71102 /* jcinit.c */; }; + 1E17F95DD433379E8C18298C /* odcombo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */; }; + 8B60964DA1DF3F3DB40BE123 /* datavgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F3D473DC5123EDAB767045C /* datavgen.cpp */; }; + 9EC837DA722736119D49868A /* pngpread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CAA325362C73AC8BE20FAA7 /* pngpread.c */; }; + 604ABF86317C3D4F899DBF37 /* richtextsymboldlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */; }; + B640A8A74D973A8FBEF63916 /* LexConf.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 04082EC1C91334379425802D /* LexConf.cxx */; }; + 71CCB06E790C3C54BFF1199D /* LexSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */; }; + 0E23F212CBDD33848DEBCA6E /* webview_chromium.mm in Sources */ = {isa = PBXBuildFile; fileRef = CBA9036479943A4990CEB3AC /* webview_chromium.mm */; }; + 5F78DB0417BF3CE1B4E35C7F /* stackwalk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA2520F427493A22A70A5C09 /* stackwalk.cpp */; }; + 3C665EA42ECC3E5990BA347B /* EditView.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 430739CB8B95336ABB372EC7 /* EditView.cxx */; }; + FF50EC0EC5F23DF890C6E95F /* colour.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D1F14339D1C331087650931 /* colour.cpp */; }; + 296692A7A3783E3A83D005C6 /* brush.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 302A13BC64C238A297F4399F /* brush.cpp */; }; + D83B32B788EC310D919E0DF7 /* imagpcx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */; }; + 4301AFBA0A193A7EB392EB92 /* LexMake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 3D5F00FC91343C35AF99F708 /* LexMake.cxx */; }; + B4425B59CC27389CA9FF81D1 /* datectlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE856D950B8C369EB0FE13BA /* datectlg.cpp */; }; + 4040AE89BF9F34668091064A /* dragimgg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A67053D16D63C588E555C84 /* dragimgg.cpp */; }; + 5F2C2A46781739D897CF293D /* xh_chckl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */; }; + DEC5F4B34BC037169D3E5F2A /* mediactrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */; }; + 6138BCBC8E4438FA91E0EF9F /* xh_chckb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */; }; + 664A54F914443110B7BB6928 /* tglbtn_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */; }; + A0FCE3CF565C3F84B63712AC /* LexCPP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9EF09C7CC5413CC6A5E7B21B /* LexCPP.cxx */; }; + E80BEED62EBF34F09B3F401F /* LexMagik.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 45860601270D318D93BEE1F3 /* LexMagik.cxx */; }; + 894D43C8F224394FB3171F26 /* jcapimin.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */; }; + 164010B26D363F5FA09785B6 /* listctrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1B1FBB2BCC43BA7A45E9438 /* listctrlcmn.cpp */; }; + 4C9BA36123E43589956864C6 /* Style.cxx in Sources */ = {isa = PBXBuildFile; fileRef = C28429A964C337A192D76CC8 /* Style.cxx */; }; 052331773CF6362C9A6CF38E /* utils_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EED7C691150139EFA35E8EBD /* utils_osx.cpp */; }; - 12B1DEF410AB34999AB210DB /* LexBatch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 853C2741D98438DA90B87D90 /* LexBatch.cxx */; }; - 90BC965B1A1F35A3B2C9D1C9 /* Decoration.cxx in Sources */ = {isa = PBXBuildFile; fileRef = BF1C44D726E63B18A98006EC /* Decoration.cxx */; }; - 00F1531404F832C6AE0748F2 /* spinbutt_osx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */; }; - 61FD5E0E28F732E8AB1729F8 /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6AB648BC5173104A96CAE66 /* xml.cpp */; }; + 14D6D5F8F5ED3C71936DD2AF /* button.mm in Sources */ = {isa = PBXBuildFile; fileRef = C06FED83BF933DF98C2466AE /* button.mm */; }; + A465A43B756630F1944B5A56 /* vscroll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1629FA905F903324AA5BE72C /* vscroll.cpp */; }; + 1DD1888315513C24BF9C31B4 /* LexSAS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 9E1B538562B93D148F54645B /* LexSAS.cxx */; }; + C43A9650A9DC3372AB8F5F78 /* jidctint.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */; }; + 18A318847EAC37F2B915F081 /* jmemmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */; }; + 8093A858CA9E3E9EA2D2185F /* jdarith.c in Sources */ = {isa = PBXBuildFile; fileRef = FA9DD56E399533A5BE7AAD16 /* jdarith.c */; }; + 89200B144075388BA69A07E2 /* xh_timectrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25A81E9028793C109D868068 /* xh_timectrl.cpp */; }; + 44C6F11C7D1C399F99CF6BD4 /* xh_auitoolb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */; }; C6DF6F29407B34F29ED1B66D /* jcmaster.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E3043D7BE9C33B59E900CCE /* jcmaster.c */; }; - 58AABAD40AA236438347DDDE /* evtloop.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D2549709E0133C9A267E3A5 /* evtloop.mm */; }; - C5419BC04D6234B5A8307B81 /* xti.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25C86D3D4839343BA1D8BDEE /* xti.cpp */; }; - 32486A808EBC3E088598D51C /* jcprepct.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FE0455EBDC63D82B2D88587 /* jcprepct.c */; }; - 309C0A78D45C3AB7B8778B59 /* pngset.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E463A493FD930DE80E58608 /* pngset.c */; }; - 6463C9BE78C0394CB7B451FA /* pcre2_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = BDADEB1DA6433E52972C8934 /* pcre2_compile.c */; }; - 76A83A293C9F33BCB7DFDE26 /* jdatadst.c in Sources */ = {isa = PBXBuildFile; fileRef = 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */; }; - 0EB6AB38A68D3845AC384A23 /* xh_text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */; }; - AB58406CEBA13BC4A2A83B66 /* printmac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */; }; - E3B3E4F75D503DB89B5C622D /* stc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0B9C41A4D12345AAA764CAD /* stc.cpp */; }; - 15D65A523EB23EC385C05E0B /* jquant1.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */; }; - BFD4B8871B3934048B631419 /* languageinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67D76B026121359F9B22F8B0 /* languageinfo.cpp */; }; - 1CC5AEC6C08E3600801CDADA /* trees.c in Sources */ = {isa = PBXBuildFile; fileRef = 95B4EDF38F8A3E5EBAFF560F /* trees.c */; }; - 94B1C88076793400810FAC30 /* png.c in Sources */ = {isa = PBXBuildFile; fileRef = AF26BAB1F4733114926F1724 /* png.c */; }; - 37715483D08335B790FFE058 /* filectrlcmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */; }; - 26BB10834DA1388881BDD1EC /* propgrid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98B72B3A0A73044B85AED60 /* propgrid.cpp */; }; + C1CDD035AA393ACC9E202C03 /* minifram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693F731B7D1730A79485F9EC /* minifram.cpp */; }; + 2315C8692C443ED1AE431728 /* tif_extension.c in Sources */ = {isa = PBXBuildFile; fileRef = AF7CE00168AB33C994374ABA /* tif_extension.c */; }; + F34D240EB4513FE996179182 /* xh_mdi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */; }; + D8ADDD24BEAC3D94B3388D3E /* LexCOBOL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */; }; + 1BCC944F5E0936F5830F03E8 /* windowid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9B9B85572D0312BBF2878DB /* windowid.cpp */; }; + 096BA201623034AD97218368 /* tif_version.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E6F40F4740C3ED29D83E107 /* tif_version.c */; }; + D66F5D4D204B3B789C7F76B9 /* fontdlg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18044326B5B13A98A49732DD /* fontdlg.cpp */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ - 853C2741D98438DA90B87D90 /* LexBatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBatch.cxx; path = ../../src/stc/lexilla/lexers/LexBatch.cxx; sourceTree = SOURCE_ROOT; }; - FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextctrl.cpp; path = ../../src/richtext/richtextctrl.cpp; sourceTree = SOURCE_ROOT; }; - 83B878A16ABC396E8C03A15E /* dialog.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = dialog.mm; path = ../../src/osx/iphone/dialog.mm; sourceTree = SOURCE_ROOT; }; - 4FE0B33481283D3493613B0F /* config.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = config.cpp; path = ../../src/common/config.cpp; sourceTree = SOURCE_ROOT; }; - B883F991159731DCB2717A21 /* CharacterSet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterSet.cxx; path = ../../src/stc/scintilla/src/CharacterSet.cxx; sourceTree = SOURCE_ROOT; }; - B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmainct.c; path = ../../src/jpeg/jdmainct.c; sourceTree = SOURCE_ROOT; }; - E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_frame.cpp; path = ../../src/xrc/xh_frame.cpp; sourceTree = SOURCE_ROOT; }; - A046179831F63824A67B509B /* preferencescmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preferencescmn.cpp; path = ../../src/common/preferencescmn.cpp; sourceTree = SOURCE_ROOT; }; - 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jpeg.c; path = ../../src/tiff/libtiff/tif_jpeg.c; sourceTree = SOURCE_ROOT; }; - 49CABA38E78D34DFA260AA06 /* renderg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = renderg.cpp; path = ../../src/generic/renderg.cpp; sourceTree = SOURCE_ROOT; }; + 552757A901E732CAA8E3F16D /* list.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = list.cpp; path = ../../src/common/list.cpp; sourceTree = SOURCE_ROOT; }; + 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexInno.cxx; path = ../../src/stc/lexilla/lexers/LexInno.cxx; sourceTree = SOURCE_ROOT; }; + F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbmp_osx.cpp; path = ../../src/osx/statbmp_osx.cpp; sourceTree = SOURCE_ROOT; }; + 95A156A823B536DE8476E4F9 /* appbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbase.cpp; path = ../../src/common/appbase.cpp; sourceTree = SOURCE_ROOT; }; 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = styleparams.cpp; path = ../../src/html/styleparams.cpp; sourceTree = SOURCE_ROOT; }; - EEA0945B20913754A54D0FD9 /* dcpsg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcpsg.cpp; path = ../../src/generic/dcpsg.cpp; sourceTree = SOURCE_ROOT; }; - A5EE0B8985443BDCB36F781F /* m_layout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_layout.cpp; path = ../../src/html/m_layout.cpp; sourceTree = SOURCE_ROOT; }; - 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fdiodispatcher.cpp; path = ../../src/common/fdiodispatcher.cpp; sourceTree = SOURCE_ROOT; }; - 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gaugecmn.cpp; path = ../../src/common/gaugecmn.cpp; sourceTree = SOURCE_ROOT; }; - 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RunStyles.cxx; path = ../../src/stc/scintilla/src/RunStyles.cxx; sourceTree = SOURCE_ROOT; }; - 20B922D61CDB3CCEB59A5194 /* convauto.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = convauto.cpp; path = ../../src/common/convauto.cpp; sourceTree = SOURCE_ROOT; }; - 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCsound.cxx; path = ../../src/stc/lexilla/lexers/LexCsound.cxx; sourceTree = SOURCE_ROOT; }; - 77F5E7BCD9B2307D8DBCC052 /* font.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = font.cpp; path = ../../src/osx/carbon/font.cpp; sourceTree = SOURCE_ROOT; }; - D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_cmdlinkbn.cpp; path = ../../src/xrc/xh_cmdlinkbn.cpp; sourceTree = SOURCE_ROOT; }; - 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_text.cpp; path = ../../src/xrc/xh_text.cpp; sourceTree = SOURCE_ROOT; }; - 6A82EDCFFBAC30098B238957 /* caret.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = caret.cpp; path = ../../src/generic/caret.cpp; sourceTree = SOURCE_ROOT; }; - B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appunix.cpp; path = ../../src/unix/appunix.cpp; sourceTree = SOURCE_ROOT; }; - 305614D19CF23CB2B14A5B2E /* tif_flush.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_flush.c; path = ../../src/tiff/libtiff/tif_flush.c; sourceTree = SOURCE_ROOT; }; - A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animatecmn.cpp; path = ../../src/common/animatecmn.cpp; sourceTree = SOURCE_ROOT; }; - C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_auto_possess.c; path = ../../3rdparty/pcre/src/pcre2_auto_possess.c; sourceTree = SOURCE_ROOT; }; - B901252876603DCEA4C66D89 /* nbkbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nbkbase.cpp; path = ../../src/common/nbkbase.cpp; sourceTree = SOURCE_ROOT; }; - 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckipc.cpp; path = ../../src/common/sckipc.cpp; sourceTree = SOURCE_ROOT; }; + CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_choicbk.cpp; path = ../../src/xrc/xh_choicbk.cpp; sourceTree = SOURCE_ROOT; }; + A57CF60203F53459A03951A9 /* arrstr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arrstr.cpp; path = ../../src/common/arrstr.cpp; sourceTree = SOURCE_ROOT; }; + C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediactrlcmn.cpp; path = ../../src/common/mediactrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tipdlg.cpp; path = ../../src/generic/tipdlg.cpp; sourceTree = SOURCE_ROOT; }; + A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_styledtextctrl.cpp; path = ../../src/xrc/xh_styledtextctrl.cpp; sourceTree = SOURCE_ROOT; }; + 0E45F6DF601A34BCB3CC0206 /* adler32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = adler32.c; path = ../../src/zlib/adler32.c; sourceTree = SOURCE_ROOT; }; + 52FE1599218730CC99A3F801 /* m_dflist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_dflist.cpp; path = ../../src/html/m_dflist.cpp; sourceTree = SOURCE_ROOT; }; + BCD873D873A53BBF955D8A4E /* PositionCache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PositionCache.cxx; path = ../../src/stc/scintilla/src/PositionCache.cxx; sourceTree = SOURCE_ROOT; }; + 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDataflex.cxx; path = ../../src/stc/lexilla/lexers/LexDataflex.cxx; sourceTree = SOURCE_ROOT; }; + 8EB76F786D7F3FF286948D22 /* jcomapi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcomapi.c; path = ../../src/jpeg/jcomapi.c; sourceTree = SOURCE_ROOT; }; + 573D0D15EE9E3E629D61EA65 /* jaricom.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jaricom.c; path = ../../src/jpeg/jaricom.c; sourceTree = SOURCE_ROOT; }; + 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_thunder.c; path = ../../src/tiff/libtiff/tif_thunder.c; sourceTree = SOURCE_ROOT; }; DC3430B6483E35C3A201BF44 /* LexPO.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPO.cxx; path = ../../src/stc/lexilla/lexers/LexPO.cxx; sourceTree = SOURCE_ROOT; }; - 8F633793051F371F94C27530 /* LexVB.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVB.cxx; path = ../../src/stc/lexilla/lexers/LexVB.cxx; sourceTree = SOURCE_ROOT; }; - 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdiobj.cpp; path = ../../src/osx/carbon/gdiobj.cpp; sourceTree = SOURCE_ROOT; }; - 95B4EDF38F8A3E5EBAFF560F /* trees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = trees.c; path = ../../src/zlib/trees.c; sourceTree = SOURCE_ROOT; }; - 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = snglinst.cpp; path = ../../src/unix/snglinst.cpp; sourceTree = SOURCE_ROOT; }; - 0DA80913C0E33144A42BD30F /* webview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webview.cpp; path = ../../src/common/webview.cpp; sourceTree = SOURCE_ROOT; }; - 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpcboxg.cpp; path = ../../src/generic/bmpcboxg.cpp; sourceTree = SOURCE_ROOT; }; - FD6B26B5A6A733A89EF5AB9C /* statbmp.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = statbmp.mm; path = ../../src/osx/iphone/statbmp.mm; sourceTree = SOURCE_ROOT; }; - 86A0C3603C8A343AAFBD2CE0 /* LexFortran.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFortran.cxx; path = ../../src/stc/lexilla/lexers/LexFortran.cxx; sourceTree = SOURCE_ROOT; }; - C37866F41B0C31E295AA7FA6 /* wfstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wfstream.cpp; path = ../../src/common/wfstream.cpp; sourceTree = SOURCE_ROOT; }; - 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datavcmn.cpp; path = ../../src/common/datavcmn.cpp; sourceTree = SOURCE_ROOT; }; + 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtexthtml.cpp; path = ../../src/richtext/richtexthtml.cpp; sourceTree = SOURCE_ROOT; }; + 1A0650754DC2358CA5933B28 /* pngerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngerror.c; path = ../../src/png/pngerror.c; sourceTree = SOURCE_ROOT; }; + 87799D3168B43EB7B5686826 /* pngrtran.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrtran.c; path = ../../src/png/pngrtran.c; sourceTree = SOURCE_ROOT; }; + EDB48813110636DBA045BF3A /* LexPS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPS.cxx; path = ../../src/stc/lexilla/lexers/LexPS.cxx; sourceTree = SOURCE_ROOT; }; + 182C8AD4F822375495795B43 /* dbgrptg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbgrptg.cpp; path = ../../src/generic/dbgrptg.cpp; sourceTree = SOURCE_ROOT; }; + A1276C0E5D48337489DEE8DF /* LexErlang.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexErlang.cxx; path = ../../src/stc/lexilla/lexers/LexErlang.cxx; sourceTree = SOURCE_ROOT; }; + FCCFF49F92B4323D9181CEDA /* htmltag.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmltag.cpp; path = ../../src/html/htmltag.cpp; sourceTree = SOURCE_ROOT; }; + 5248A45AB113341EAC361910 /* notebook_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notebook_osx.cpp; path = ../../src/osx/notebook_osx.cpp; sourceTree = SOURCE_ROOT; }; + E145FC31ED523B4AA5080A61 /* RESearch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RESearch.cxx; path = ../../src/stc/scintilla/src/RESearch.cxx; sourceTree = SOURCE_ROOT; }; + B901252876603DCEA4C66D89 /* nbkbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nbkbase.cpp; path = ../../src/common/nbkbase.cpp; sourceTree = SOURCE_ROOT; }; + E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richmsgdlgg.cpp; path = ../../src/generic/richmsgdlgg.cpp; sourceTree = SOURCE_ROOT; }; + DC9153A350893820B942D37E /* LexMatlab.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMatlab.cxx; path = ../../src/stc/lexilla/lexers/LexMatlab.cxx; sourceTree = SOURCE_ROOT; }; + 47FF6D792CA234C395692118 /* PlatWX.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PlatWX.cpp; path = ../../src/stc/PlatWX.cpp; sourceTree = SOURCE_ROOT; }; + 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = StyleContext.cxx; path = ../../src/stc/lexilla/lexlib/StyleContext.cxx; sourceTree = SOURCE_ROOT; }; + 0D9828C9BD9633C1A8F4E0CD /* LexRebol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRebol.cxx; path = ../../src/stc/lexilla/lexers/LexRebol.cxx; sourceTree = SOURCE_ROOT; }; 1C71BF55495034FFBE653C80 /* LexMSSQL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMSSQL.cxx; path = ../../src/stc/lexilla/lexers/LexMSSQL.cxx; sourceTree = SOURCE_ROOT; }; - 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jpeg_12.c; path = ../../src/tiff/libtiff/tif_jpeg_12.c; sourceTree = SOURCE_ROOT; }; - 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemmgr.c; path = ../../src/jpeg/jmemmgr.c; sourceTree = SOURCE_ROOT; }; - 9051902662BE38B3912B34EA /* dlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlgcmn.cpp; path = ../../src/common/dlgcmn.cpp; sourceTree = SOURCE_ROOT; }; - C06FED83BF933DF98C2466AE /* button.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = button.mm; path = ../../src/osx/iphone/button.mm; sourceTree = SOURCE_ROOT; }; + AE856D950B8C369EB0FE13BA /* datectlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datectlg.cpp; path = ../../src/generic/datectlg.cpp; sourceTree = SOURCE_ROOT; }; + 5BE1FB352696346BB642C044 /* secretstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = secretstore.cpp; path = ../../src/common/secretstore.cpp; sourceTree = SOURCE_ROOT; }; + 861438BD294335D4B859EA71 /* toplvcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toplvcmn.cpp; path = ../../src/common/toplvcmn.cpp; sourceTree = SOURCE_ROOT; }; + 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPascal.cxx; path = ../../src/stc/lexilla/lexers/LexPascal.cxx; sourceTree = SOURCE_ROOT; }; + B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirwrite.c; path = ../../src/tiff/libtiff/tif_dirwrite.c; sourceTree = SOURCE_ROOT; }; + D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preferencesg.cpp; path = ../../src/generic/preferencesg.cpp; sourceTree = SOURCE_ROOT; }; + 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gbsizer.cpp; path = ../../src/common/gbsizer.cpp; sourceTree = SOURCE_ROOT; }; + 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSML.cxx; path = ../../src/stc/lexilla/lexers/LexSML.cxx; sourceTree = SOURCE_ROOT; }; + 5219A792C6A736F193D4A82F /* ContractionState.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ContractionState.cxx; path = ../../src/stc/scintilla/src/ContractionState.cxx; sourceTree = SOURCE_ROOT; }; + 42E433D1700631A8907B8227 /* helpctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpctrl.cpp; path = ../../src/html/helpctrl.cpp; sourceTree = SOURCE_ROOT; }; + BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_serialize.c; path = ../../3rdparty/pcre/src/pcre2_serialize.c; sourceTree = SOURCE_ROOT; }; + 69F098E47EBF34368ABAE7ED /* timer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cpp; path = ../../src/osx/core/timer.cpp; sourceTree = SOURCE_ROOT; }; + 4FC2F076657431458896115A /* checkboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checkboxcmn.cpp; path = ../../src/common/checkboxcmn.cpp; sourceTree = SOURCE_ROOT; }; + C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AutoComplete.cxx; path = ../../src/stc/scintilla/src/AutoComplete.cxx; sourceTree = SOURCE_ROOT; }; + DC0FFDC7A6163F2DA73B84EB /* jchuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jchuff.c; path = ../../src/jpeg/jchuff.c; sourceTree = SOURCE_ROOT; }; + 77F5E7BCD9B2307D8DBCC052 /* font.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = font.cpp; path = ../../src/osx/carbon/font.cpp; sourceTree = SOURCE_ROOT; }; + 84A7A3B499503ECABC6A838F /* btncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = btncmn.cpp; path = ../../src/common/btncmn.cpp; sourceTree = SOURCE_ROOT; }; + 26632A254717372BAA4D514D /* framemanager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = framemanager.cpp; path = ../../src/aui/framemanager.cpp; sourceTree = SOURCE_ROOT; }; + E9B9B85572D0312BBF2878DB /* windowid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = windowid.cpp; path = ../../src/common/windowid.cpp; sourceTree = SOURCE_ROOT; }; 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collheaderctrlg.cpp; path = ../../src/generic/collheaderctrlg.cpp; sourceTree = SOURCE_ROOT; }; - C69E48C06BD23C178F650E42 /* richtextxml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextxml.cpp; path = ../../src/richtext/richtextxml.cpp; sourceTree = SOURCE_ROOT; }; - 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_match_data.c; path = ../../3rdparty/pcre/src/pcre2_match_data.c; sourceTree = SOURCE_ROOT; }; - F84F0DB790A23D92A193D2B4 /* http.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = http.cpp; path = ../../src/common/http.cpp; sourceTree = SOURCE_ROOT; }; - 832BBBFE664736D5978420C6 /* fmapbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmapbase.cpp; path = ../../src/common/fmapbase.cpp; sourceTree = SOURCE_ROOT; }; - 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpecman.cxx; path = ../../src/stc/lexilla/lexers/LexSpecman.cxx; sourceTree = SOURCE_ROOT; }; - 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = protocol.cpp; path = ../../src/common/protocol.cpp; sourceTree = SOURCE_ROOT; }; - 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_predict.c; path = ../../src/tiff/libtiff/tif_predict.c; sourceTree = SOURCE_ROOT; }; - FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xtistrm.cpp; path = ../../src/common/xtistrm.cpp; sourceTree = SOURCE_ROOT; }; - 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_study.c; path = ../../3rdparty/pcre/src/pcre2_study.c; sourceTree = SOURCE_ROOT; }; - B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCOBOL.cxx; path = ../../src/stc/lexilla/lexers/LexCOBOL.cxx; sourceTree = SOURCE_ROOT; }; - E08A51FA8D8A361681B07295 /* glcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glcmn.cpp; path = ../../src/common/glcmn.cpp; sourceTree = SOURCE_ROOT; }; - 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerPro.cxx; path = ../../src/stc/lexilla/lexers/LexPowerPro.cxx; sourceTree = SOURCE_ROOT; }; - AF26BAB1F4733114926F1724 /* png.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = png.c; path = ../../src/png/png.c; sourceTree = SOURCE_ROOT; }; - 3D5F00FC91343C35AF99F708 /* LexMake.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMake.cxx; path = ../../src/stc/lexilla/lexers/LexMake.cxx; sourceTree = SOURCE_ROOT; }; - F46EC1508C063C8395CE7A95 /* sstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sstream.cpp; path = ../../src/common/sstream.cpp; sourceTree = SOURCE_ROOT; }; - 66411D54BAD338498AC59401 /* xh_scrol.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_scrol.cpp; path = ../../src/xrc/xh_scrol.cpp; sourceTree = SOURCE_ROOT; }; - 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcher_fsevents.cpp; path = ../../src/osx/fswatcher_fsevents.cpp; sourceTree = SOURCE_ROOT; }; - 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_radbt.cpp; path = ../../src/xrc/xh_radbt.cpp; sourceTree = SOURCE_ROOT; }; - 149D299A0EDB3D998118EC93 /* tif_color.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_color.c; path = ../../src/tiff/libtiff/tif_color.c; sourceTree = SOURCE_ROOT; }; - DB170BF78EFE39D692E11985 /* fontdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdlgg.cpp; path = ../../src/generic/fontdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridctrl.cpp; path = ../../src/generic/gridctrl.cpp; sourceTree = SOURCE_ROOT; }; - 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cairo.cpp; path = ../../src/common/cairo.cpp; sourceTree = SOURCE_ROOT; }; - DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socketiohandler.cpp; path = ../../src/common/socketiohandler.cpp; sourceTree = SOURCE_ROOT; }; - 06B4A895955B32258DCD62BF /* xh_dlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_dlg.cpp; path = ../../src/xrc/xh_dlg.cpp; sourceTree = SOURCE_ROOT; }; - C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbtncmn.cpp; path = ../../src/common/spinbtncmn.cpp; sourceTree = SOURCE_ROOT; }; - 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCSS.cxx; path = ../../src/stc/lexilla/lexers/LexCSS.cxx; sourceTree = SOURCE_ROOT; }; + EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filedlgg.cpp; path = ../../src/generic/filedlgg.cpp; sourceTree = SOURCE_ROOT; }; + 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrlwing.cpp; path = ../../src/generic/scrlwing.cpp; sourceTree = SOURCE_ROOT; }; + DAAED71A534135A9A61612A6 /* colordlgosx.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = colordlgosx.mm; path = ../../src/osx/carbon/colordlgosx.mm; sourceTree = SOURCE_ROOT; }; + 66FDA882451239EA8DF2E0B5 /* tif_luv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_luv.c; path = ../../src/tiff/libtiff/tif_luv.c; sourceTree = SOURCE_ROOT; }; + A9C7F740A55E39FD890B3C7F /* editors.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = editors.cpp; path = ../../src/propgrid/editors.cpp; sourceTree = SOURCE_ROOT; }; + 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdlg_osx.cpp; path = ../../src/osx/printdlg_osx.cpp; sourceTree = SOURCE_ROOT; }; + 773D91F8280434519BD167EA /* radiobox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobox_osx.cpp; path = ../../src/osx/radiobox_osx.cpp; sourceTree = SOURCE_ROOT; }; + 7395814D42CC38F6B8CD81B4 /* gzlib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzlib.c; path = ../../src/zlib/gzlib.c; sourceTree = SOURCE_ROOT; }; + F83172EE2DAE352FB969D4F2 /* jcapistd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapistd.c; path = ../../src/jpeg/jcapistd.c; sourceTree = SOURCE_ROOT; }; + 96CED508FA3C3B6B9265099E /* rendcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rendcmn.cpp; path = ../../src/common/rendcmn.cpp; sourceTree = SOURCE_ROOT; }; + 418AD9241B673308BE31DC06 /* xlocale.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xlocale.cpp; path = ../../src/common/xlocale.cpp; sourceTree = SOURCE_ROOT; }; + CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webviewfshandler.cpp; path = ../../src/common/webviewfshandler.cpp; sourceTree = SOURCE_ROOT; }; + 853C2741D98438DA90B87D90 /* LexBatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBatch.cxx; path = ../../src/stc/lexilla/lexers/LexBatch.cxx; sourceTree = SOURCE_ROOT; }; + 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirctrlg.cpp; path = ../../src/generic/dirctrlg.cpp; sourceTree = SOURCE_ROOT; }; + 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_find_bracket.c; path = ../../3rdparty/pcre/src/pcre2_find_bracket.c; sourceTree = SOURCE_ROOT; }; + E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_data.cpp; path = ../../src/common/fs_data.cpp; sourceTree = SOURCE_ROOT; }; + 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ScintillaWX.cpp; path = ../../src/stc/ScintillaWX.cpp; sourceTree = SOURCE_ROOT; }; + 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dumpmode.c; path = ../../src/tiff/libtiff/tif_dumpmode.c; sourceTree = SOURCE_ROOT; }; + E685D81FB9FF3081B6C5C321 /* EditModel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EditModel.cxx; path = ../../src/stc/scintilla/src/EditModel.cxx; sourceTree = SOURCE_ROOT; }; + 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_comboctrl.cpp; path = ../../src/xrc/xh_comboctrl.cpp; sourceTree = SOURCE_ROOT; }; 741E9B48274638CD9DD73698 /* bmpsvg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpsvg.cpp; path = ../../src/generic/bmpsvg.cpp; sourceTree = SOURCE_ROOT; }; - BAD4614CABC934D6AFF8D9CD /* gzread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzread.c; path = ../../src/zlib/gzread.c; sourceTree = SOURCE_ROOT; }; - 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzwrite.c; path = ../../src/zlib/gzwrite.c; sourceTree = SOURCE_ROOT; }; - FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontpickerg.cpp; path = ../../src/generic/fontpickerg.cpp; sourceTree = SOURCE_ROOT; }; - D922063B2F2536629EEEAAF0 /* popupcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupcmn.cpp; path = ../../src/common/popupcmn.cpp; sourceTree = SOURCE_ROOT; }; - A737317EDE0F3921B1412966 /* LexRegistry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRegistry.cxx; path = ../../src/stc/lexilla/lexers/LexRegistry.cxx; sourceTree = SOURCE_ROOT; }; - 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtexthtml.cpp; path = ../../src/richtext/richtexthtml.cpp; sourceTree = SOURCE_ROOT; }; - 1629FA905F903324AA5BE72C /* vscroll.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vscroll.cpp; path = ../../src/generic/vscroll.cpp; sourceTree = SOURCE_ROOT; }; - 5219A792C6A736F193D4A82F /* ContractionState.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ContractionState.cxx; path = ../../src/stc/scintilla/src/ContractionState.cxx; sourceTree = SOURCE_ROOT; }; - 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgridiface.cpp; path = ../../src/propgrid/propgridiface.cpp; sourceTree = SOURCE_ROOT; }; - DF376BC55EA73F5FB7328142 /* helpext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpext.cpp; path = ../../src/generic/helpext.cpp; sourceTree = SOURCE_ROOT; }; - 8052B1625907355894CCF263 /* LexillaAccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexillaAccess.cxx; path = ../../src/stc/lexilla/access/LexillaAccess.cxx; sourceTree = SOURCE_ROOT; }; - BBB30516233A39BE809405AA /* helpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpbase.cpp; path = ../../src/common/helpbase.cpp; sourceTree = SOURCE_ROOT; }; - 40586C8986443431A64EB066 /* LexLisp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLisp.cxx; path = ../../src/stc/lexilla/lexers/LexLisp.cxx; sourceTree = SOURCE_ROOT; }; - 3116006345D833509865FF7F /* xh_bannerwindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bannerwindow.cpp; path = ../../src/xrc/xh_bannerwindow.cpp; sourceTree = SOURCE_ROOT; }; - 5C85865D28DC31649440A921 /* imagxpm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagxpm.cpp; path = ../../src/common/imagxpm.cpp; sourceTree = SOURCE_ROOT; }; - B0665A40F3FC3F218074C63C /* artmac.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artmac.cpp; path = ../../src/osx/artmac.cpp; sourceTree = SOURCE_ROOT; }; - 6BC0A61629E635FAB4E09505 /* geometry.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = geometry.cpp; path = ../../src/common/geometry.cpp; sourceTree = SOURCE_ROOT; }; - 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choicbkg.cpp; path = ../../src/generic/choicbkg.cpp; sourceTree = SOURCE_ROOT; }; - DE16011AD6323AAC8616F973 /* stdstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdstream.cpp; path = ../../src/common/stdstream.cpp; sourceTree = SOURCE_ROOT; }; - AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_clrpicker.cpp; path = ../../src/xrc/xh_clrpicker.cpp; sourceTree = SOURCE_ROOT; }; - 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numdlgg.cpp; path = ../../src/generic/numdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 5F3D473DC5123EDAB767045C /* datavgen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datavgen.cpp; path = ../../src/generic/datavgen.cpp; sourceTree = SOURCE_ROOT; }; - 00DA3D3EEF5E305CA73A1871 /* region.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = region.cpp; path = ../../src/osx/carbon/region.cpp; sourceTree = SOURCE_ROOT; }; - D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Lexilla.cxx; path = ../../src/stc/lexilla/src/Lexilla.cxx; sourceTree = SOURCE_ROOT; }; - BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNimrod.cxx; path = ../../src/stc/lexilla/lexers/LexNimrod.cxx; sourceTree = SOURCE_ROOT; }; - E9B31409EC6532FC83B0B957 /* textmeasure.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textmeasure.cpp; path = ../../src/generic/textmeasure.cpp; sourceTree = SOURCE_ROOT; }; - 994AF74DF2A13FF09A215853 /* intel_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = intel_init.c; path = ../../src/png/intel/intel_init.c; sourceTree = SOURCE_ROOT; }; BEB08798C70E33DDB360E563 /* layout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layout.cpp; path = ../../src/common/layout.cpp; sourceTree = SOURCE_ROOT; }; - ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_hline.cpp; path = ../../src/html/m_hline.cpp; sourceTree = SOURCE_ROOT; }; - 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmndata.cpp; path = ../../src/common/cmndata.cpp; sourceTree = SOURCE_ROOT; }; - CA72410F615B3A78A6340532 /* dnd_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dnd_osx.cpp; path = ../../src/osx/dnd_osx.cpp; sourceTree = SOURCE_ROOT; }; - 59C6B9849FF6325E890942EF /* xmlrole.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = xmlrole.c; path = ../../src/expat/expat/lib/xmlrole.c; sourceTree = SOURCE_ROOT; }; - 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHaskell.cxx; path = ../../src/stc/lexilla/lexers/LexHaskell.cxx; sourceTree = SOURCE_ROOT; }; - 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_simplebook.cpp; path = ../../src/xrc/xh_simplebook.cpp; sourceTree = SOURCE_ROOT; }; - 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapistd.c; path = ../../src/jpeg/jdapistd.c; sourceTree = SOURCE_ROOT; }; - 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dynload.cpp; path = ../../src/common/dynload.cpp; sourceTree = SOURCE_ROOT; }; - 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlpars.cpp; path = ../../src/html/htmlpars.cpp; sourceTree = SOURCE_ROOT; }; - BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textmeasurecmn.cpp; path = ../../src/common/textmeasurecmn.cpp; sourceTree = SOURCE_ROOT; }; - 346C68F0CCD23823B78267F0 /* tif_lzw.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_lzw.c; path = ../../src/tiff/libtiff/tif_lzw.c; sourceTree = SOURCE_ROOT; }; - 66FDA882451239EA8DF2E0B5 /* tif_luv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_luv.c; path = ../../src/tiff/libtiff/tif_luv.c; sourceTree = SOURCE_ROOT; }; - 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PropSetSimple.cxx; path = ../../src/stc/lexilla/lexlib/PropSetSimple.cxx; sourceTree = SOURCE_ROOT; }; - 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pickerbase.cpp; path = ../../src/common/pickerbase.cpp; sourceTree = SOURCE_ROOT; }; - D3F32C01D122301AB00D06A5 /* tbarbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbarbase.cpp; path = ../../src/common/tbarbase.cpp; sourceTree = SOURCE_ROOT; }; - F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_extuni.c; path = ../../3rdparty/pcre/src/pcre2_extuni.c; sourceTree = SOURCE_ROOT; }; - CF502E0E4D853CBBBEC885EF /* LexerSimple.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerSimple.cxx; path = ../../src/stc/lexilla/lexlib/LexerSimple.cxx; sourceTree = SOURCE_ROOT; }; - 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = debugrpt.cpp; path = ../../src/common/debugrpt.cpp; sourceTree = SOURCE_ROOT; }; + B61D36546E97371FAC5D4565 /* LexStata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexStata.cxx; path = ../../src/stc/lexilla/lexers/LexStata.cxx; sourceTree = SOURCE_ROOT; }; + 8555204EBA8930809B732842 /* accesscmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accesscmn.cpp; path = ../../src/common/accesscmn.cpp; sourceTree = SOURCE_ROOT; }; + 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choicbkg.cpp; path = ../../src/generic/choicbkg.cpp; sourceTree = SOURCE_ROOT; }; + F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jbig.c; path = ../../src/tiff/libtiff/tif_jbig.c; sourceTree = SOURCE_ROOT; }; + AA234ACC79743DA797601AA6 /* jcarith.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcarith.c; path = ../../src/jpeg/jcarith.c; sourceTree = SOURCE_ROOT; }; + E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLaTeX.cxx; path = ../../src/stc/lexilla/lexers/LexLaTeX.cxx; sourceTree = SOURCE_ROOT; }; + 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jpeg_12.c; path = ../../src/tiff/libtiff/tif_jpeg_12.c; sourceTree = SOURCE_ROOT; }; + CA0D5D47D62A3148BA51B31B /* tif_compress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_compress.c; path = ../../src/tiff/libtiff/tif_compress.c; sourceTree = SOURCE_ROOT; }; + 8F633793051F371F94C27530 /* LexVB.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVB.cxx; path = ../../src/stc/lexilla/lexers/LexVB.cxx; sourceTree = SOURCE_ROOT; }; + 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prntdlgg.cpp; path = ../../src/generic/prntdlgg.cpp; sourceTree = SOURCE_ROOT; }; + D0CDADAF2D893E32A38351E4 /* tif_aux.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_aux.c; path = ../../src/tiff/libtiff/tif_aux.c; sourceTree = SOURCE_ROOT; }; + 5FFCF47A161B3E08B19BFE14 /* jdsample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdsample.c; path = ../../src/jpeg/jdsample.c; sourceTree = SOURCE_ROOT; }; + F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sysopt.cpp; path = ../../src/common/sysopt.cpp; sourceTree = SOURCE_ROOT; }; + 2AF7739C389536F79DAA31E5 /* Selection.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Selection.cxx; path = ../../src/stc/scintilla/src/Selection.cxx; sourceTree = SOURCE_ROOT; }; + DECAF5DD80383A2CA76EB383 /* jdatasrc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdatasrc.c; path = ../../src/jpeg/jdatasrc.c; sourceTree = SOURCE_ROOT; }; + BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVE.cxx; path = ../../src/stc/lexilla/lexers/LexAVE.cxx; sourceTree = SOURCE_ROOT; }; + B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_toolbk.cpp; path = ../../src/xrc/xh_toolbk.cpp; sourceTree = SOURCE_ROOT; }; + A5EE0B8985443BDCB36F781F /* m_layout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_layout.cpp; path = ../../src/html/m_layout.cpp; sourceTree = SOURCE_ROOT; }; + 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notifmsgg.cpp; path = ../../src/generic/notifmsgg.cpp; sourceTree = SOURCE_ROOT; }; + 888BD97139C936679691FF34 /* hash.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cpp; path = ../../src/common/hash.cpp; sourceTree = SOURCE_ROOT; }; + 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSQL.cxx; path = ../../src/stc/lexilla/lexers/LexSQL.cxx; sourceTree = SOURCE_ROOT; }; + 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobut_osx.cpp; path = ../../src/osx/radiobut_osx.cpp; sourceTree = SOURCE_ROOT; }; + 61658C3EABB4341AA38C691E /* m_pre.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_pre.cpp; path = ../../src/html/m_pre.cpp; sourceTree = SOURCE_ROOT; }; + D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVerilog.cxx; path = ../../src/stc/lexilla/lexers/LexVerilog.cxx; sourceTree = SOURCE_ROOT; }; D4C4495603293C07A3B09D54 /* compress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = compress.c; path = ../../src/zlib/compress.c; sourceTree = SOURCE_ROOT; }; - 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filtall.cpp; path = ../../src/common/filtall.cpp; sourceTree = SOURCE_ROOT; }; - FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_srchctrl.cpp; path = ../../src/xrc/xh_srchctrl.cpp; sourceTree = SOURCE_ROOT; }; - 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsciidoc.cxx; path = ../../src/stc/lexilla/lexers/LexAsciidoc.cxx; sourceTree = SOURCE_ROOT; }; - BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_activityindicator.cpp; path = ../../src/xrc/xh_activityindicator.cpp; sourceTree = SOURCE_ROOT; }; - E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richmsgdlgg.cpp; path = ../../src/generic/richmsgdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpcboxcmn.cpp; path = ../../src/common/bmpcboxcmn.cpp; sourceTree = SOURCE_ROOT; }; - 1197B997B1D139C5AE4D198A /* dseldlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dseldlg.cpp; path = ../../src/common/dseldlg.cpp; sourceTree = SOURCE_ROOT; }; - A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontpickercmn.cpp; path = ../../src/common/fontpickercmn.cpp; sourceTree = SOURCE_ROOT; }; - 552757A901E732CAA8E3F16D /* list.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = list.cpp; path = ../../src/common/list.cpp; sourceTree = SOURCE_ROOT; }; - 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNull.cxx; path = ../../src/stc/lexilla/lexers/LexNull.cxx; sourceTree = SOURCE_ROOT; }; - 96CED508FA3C3B6B9265099E /* rendcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rendcmn.cpp; path = ../../src/common/rendcmn.cpp; sourceTree = SOURCE_ROOT; }; - 5E463A493FD930DE80E58608 /* pngset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngset.c; path = ../../src/png/pngset.c; sourceTree = SOURCE_ROOT; }; - 9988CBB0772A3539970162FA /* arttango.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arttango.cpp; path = ../../src/common/arttango.cpp; sourceTree = SOURCE_ROOT; }; - AB466912FDA23F8B87A00A3C /* threadpsx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = threadpsx.cpp; path = ../../src/unix/threadpsx.cpp; sourceTree = SOURCE_ROOT; }; - 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ScintillaBase.cxx; path = ../../src/stc/scintilla/src/ScintillaBase.cxx; sourceTree = SOURCE_ROOT; }; - 7BA6ADD758693BD180D3275B /* treebase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treebase.cpp; path = ../../src/common/treebase.cpp; sourceTree = SOURCE_ROOT; }; - F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexJSON.cxx; path = ../../src/stc/lexilla/lexers/LexJSON.cxx; sourceTree = SOURCE_ROOT; }; - C133B838193A35ABBB803151 /* ViewStyle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewStyle.cxx; path = ../../src/stc/scintilla/src/ViewStyle.cxx; sourceTree = SOURCE_ROOT; }; - 84758329F2163F00A9C005DF /* collpaneg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collpaneg.cpp; path = ../../src/generic/collpaneg.cpp; sourceTree = SOURCE_ROOT; }; - B180290089B139F18B0C7BBA /* stockitem.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stockitem.cpp; path = ../../src/common/stockitem.cpp; sourceTree = SOURCE_ROOT; }; - 95A156A823B536DE8476E4F9 /* appbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbase.cpp; path = ../../src/common/appbase.cpp; sourceTree = SOURCE_ROOT; }; - 861438BD294335D4B859EA71 /* toplvcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toplvcmn.cpp; path = ../../src/common/toplvcmn.cpp; sourceTree = SOURCE_ROOT; }; - 0E45F6DF601A34BCB3CC0206 /* adler32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = adler32.c; path = ../../src/zlib/adler32.c; sourceTree = SOURCE_ROOT; }; + 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webviewarchivehandler.cpp; path = ../../src/common/webviewarchivehandler.cpp; sourceTree = SOURCE_ROOT; }; + 24E82A05E9A9323287CDB15B /* artstd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artstd.cpp; path = ../../src/common/artstd.cpp; sourceTree = SOURCE_ROOT; }; + C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngmem.c; path = ../../src/png/pngmem.c; sourceTree = SOURCE_ROOT; }; + 5279968877003A8BB8279765 /* webrequest_curl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webrequest_curl.cpp; path = ../../src/common/webrequest_curl.cpp; sourceTree = SOURCE_ROOT; }; + 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCmake.cxx; path = ../../src/stc/lexilla/lexers/LexCmake.cxx; sourceTree = SOURCE_ROOT; }; + D922063B2F2536629EEEAAF0 /* popupcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupcmn.cpp; path = ../../src/common/popupcmn.cpp; sourceTree = SOURCE_ROOT; }; + E89AC104BF4F33A083F8B382 /* jccoefct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccoefct.c; path = ../../src/jpeg/jccoefct.c; sourceTree = SOURCE_ROOT; }; + 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ownerdrwcmn.cpp; path = ../../src/common/ownerdrwcmn.cpp; sourceTree = SOURCE_ROOT; }; + C94DC3402FAE3C4FA776DEEA /* window.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = window.mm; path = ../../src/osx/iphone/window.mm; sourceTree = SOURCE_ROOT; }; + 513033E36E643593AC305B3D /* uncompr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = uncompr.c; path = ../../src/zlib/uncompr.c; sourceTree = SOURCE_ROOT; }; + 36296C259D023EAAA240FC79 /* bannerwindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bannerwindow.cpp; path = ../../src/generic/bannerwindow.cpp; sourceTree = SOURCE_ROOT; }; + DE16011AD6323AAC8616F973 /* stdstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdstream.cpp; path = ../../src/common/stdstream.cpp; sourceTree = SOURCE_ROOT; }; + D0B9C41A4D12345AAA764CAD /* stc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stc.cpp; path = ../../src/stc/stc.cpp; sourceTree = SOURCE_ROOT; }; + 95E2B80B2D7033808504DA8D /* utilsexc_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utilsexc_cf.cpp; path = ../../src/osx/core/utilsexc_cf.cpp; sourceTree = SOURCE_ROOT; }; + 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatchercmn.cpp; path = ../../src/common/fswatchercmn.cpp; sourceTree = SOURCE_ROOT; }; + 1C4762898E5330C28651EE73 /* graphics.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphics.cpp; path = ../../src/osx/carbon/graphics.cpp; sourceTree = SOURCE_ROOT; }; + B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmainct.c; path = ../../src/jpeg/jdmainct.c; sourceTree = SOURCE_ROOT; }; + F951601E73683F27AD8CA99D /* MarginView.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MarginView.cxx; path = ../../src/stc/scintilla/src/MarginView.cxx; sourceTree = SOURCE_ROOT; }; + 4C4649974D8B3A109D1BF145 /* art_internal.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_internal.cpp; path = ../../src/ribbon/art_internal.cpp; sourceTree = SOURCE_ROOT; }; + CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menuitem_osx.cpp; path = ../../src/osx/menuitem_osx.cpp; sourceTree = SOURCE_ROOT; }; DA7F7633279936EFA0B9C5CF /* markupparser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = markupparser.cpp; path = ../../src/common/markupparser.cpp; sourceTree = SOURCE_ROOT; }; - 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_slidr.cpp; path = ../../src/xrc/xh_slidr.cpp; sourceTree = SOURCE_ROOT; }; - D46A36564C78312CAC538E93 /* srchctlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchctlg.cpp; path = ../../src/generic/srchctlg.cpp; sourceTree = SOURCE_ROOT; }; - 5B9586328A1F3C4BA0390AA5 /* time.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = time.cpp; path = ../../src/common/time.cpp; sourceTree = SOURCE_ROOT; }; - 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueString.cxx; path = ../../src/stc/scintilla/src/UniqueString.cxx; sourceTree = SOURCE_ROOT; }; - EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_chckl.cpp; path = ../../src/xrc/xh_chckl.cpp; sourceTree = SOURCE_ROOT; }; - 61548D0FE1353D7C846DD721 /* menuitem.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = menuitem.mm; path = ../../src/osx/iphone/menuitem.mm; sourceTree = SOURCE_ROOT; }; - E145FC31ED523B4AA5080A61 /* RESearch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RESearch.cxx; path = ../../src/stc/scintilla/src/RESearch.cxx; sourceTree = SOURCE_ROOT; }; - 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listbk.cpp; path = ../../src/xrc/xh_listbk.cpp; sourceTree = SOURCE_ROOT; }; - 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checkbox_osx.cpp; path = ../../src/osx/checkbox_osx.cpp; sourceTree = SOURCE_ROOT; }; - 374E341C8703367686DEDE93 /* jmemnobs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemnobs.c; path = ../../src/jpeg/jmemnobs.c; sourceTree = SOURCE_ROOT; }; - CC2E24773D853A77B9FEFA4C /* scrolbar.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = scrolbar.mm; path = ../../src/osx/iphone/scrolbar.mm; sourceTree = SOURCE_ROOT; }; - AF76670146413EEFA005206A /* printps.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printps.cpp; path = ../../src/generic/printps.cpp; sourceTree = SOURCE_ROOT; }; - E4E16323A43E36DC8024EDF1 /* textctrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = textctrl.mm; path = ../../src/osx/iphone/textctrl.mm; sourceTree = SOURCE_ROOT; }; - 5612DBC4125B379DA2B28824 /* buttonbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = buttonbar.cpp; path = ../../src/ribbon/buttonbar.cpp; sourceTree = SOURCE_ROOT; }; - 4B3B8AD0120F3EA6BF5B0AE0 /* LexCaml.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCaml.cxx; path = ../../src/stc/lexilla/lexers/LexCaml.cxx; sourceTree = SOURCE_ROOT; }; - BDADEB1DA6433E52972C8934 /* pcre2_compile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_compile.c; path = ../../3rdparty/pcre/src/pcre2_compile.c; sourceTree = SOURCE_ROOT; }; - 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_mdi.cpp; path = ../../src/xrc/xh_mdi.cpp; sourceTree = SOURCE_ROOT; }; - ED19EF377E653F71B1876259 /* jdmaster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmaster.c; path = ../../src/jpeg/jdmaster.c; sourceTree = SOURCE_ROOT; }; - 24BD2EF635673E819B8406CB /* LexRust.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRust.cxx; path = ../../src/stc/lexilla/lexers/LexRust.cxx; sourceTree = SOURCE_ROOT; }; - DC3D1E222FD93A69B1D1366E /* mstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mstream.cpp; path = ../../src/common/mstream.cpp; sourceTree = SOURCE_ROOT; }; - 59ED0C057D8F388A89DC7177 /* page.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = page.cpp; path = ../../src/ribbon/page.cpp; sourceTree = SOURCE_ROOT; }; - DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iconbndl.cpp; path = ../../src/common/iconbndl.cpp; sourceTree = SOURCE_ROOT; }; - C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCL.cxx; path = ../../src/stc/lexilla/lexers/LexTCL.cxx; sourceTree = SOURCE_ROOT; }; + 950D51915EF83B57B5E8306F /* xh_spin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_spin.cpp; path = ../../src/xrc/xh_spin.cpp; sourceTree = SOURCE_ROOT; }; + F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_collpane.cpp; path = ../../src/xrc/xh_collpane.cpp; sourceTree = SOURCE_ROOT; }; + 38891BF8F51E398F9082903F /* LexTAL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTAL.cxx; path = ../../src/stc/lexilla/lexers/LexTAL.cxx; sourceTree = SOURCE_ROOT; }; + E08A51FA8D8A361681B07295 /* glcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glcmn.cpp; path = ../../src/common/glcmn.cpp; sourceTree = SOURCE_ROOT; }; + A4A745D1821A32D591D76650 /* imagiff.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagiff.cpp; path = ../../src/common/imagiff.cpp; sourceTree = SOURCE_ROOT; }; + DB82939EDC593F9CA95C3098 /* init.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = init.cpp; path = ../../src/common/init.cpp; sourceTree = SOURCE_ROOT; }; + 31F4B9B03D52339B8F82C114 /* variant.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = variant.cpp; path = ../../src/common/variant.cpp; sourceTree = SOURCE_ROOT; }; + F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMetapost.cxx; path = ../../src/stc/lexilla/lexers/LexMetapost.cxx; sourceTree = SOURCE_ROOT; }; 1D799486AD7F336BB1F33DDC /* menu.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = menu.mm; path = ../../src/osx/iphone/menu.mm; sourceTree = SOURCE_ROOT; }; - 5DE635F30F3935099AF1486C /* stattextg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattextg.cpp; path = ../../src/generic/stattextg.cpp; sourceTree = SOURCE_ROOT; }; - 1731D6708BFE3DE7B101CE74 /* object.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = object.cpp; path = ../../src/common/object.cpp; sourceTree = SOURCE_ROOT; }; - C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = encconv.cpp; path = ../../src/common/encconv.cpp; sourceTree = SOURCE_ROOT; }; - 2A67053D16D63C588E555C84 /* dragimgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dragimgg.cpp; path = ../../src/generic/dragimgg.cpp; sourceTree = SOURCE_ROOT; }; - 9FEB8204E530329FA085E5B8 /* strconv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strconv.cpp; path = ../../src/common/strconv.cpp; sourceTree = SOURCE_ROOT; }; - 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVisualProlog.cxx; path = ../../src/stc/lexilla/lexers/LexVisualProlog.cxx; sourceTree = SOURCE_ROOT; }; - 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterCategory.cxx; path = ../../src/stc/scintilla/src/CharacterCategory.cxx; sourceTree = SOURCE_ROOT; }; - 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = infobar.cpp; path = ../../src/generic/infobar.cpp; sourceTree = SOURCE_ROOT; }; - 1C4762898E5330C28651EE73 /* graphics.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphics.cpp; path = ../../src/osx/carbon/graphics.cpp; sourceTree = SOURCE_ROOT; }; - 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notifmsgg.cpp; path = ../../src/generic/notifmsgg.cpp; sourceTree = SOURCE_ROOT; }; - 00969CBE3B8F32C78C195619 /* panel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = panel.cpp; path = ../../src/ribbon/panel.cpp; sourceTree = SOURCE_ROOT; }; - 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerNoExceptions.cxx; path = ../../src/stc/lexilla/lexlib/LexerNoExceptions.cxx; sourceTree = SOURCE_ROOT; }; - A92B6033D8233DB1821F193B /* xmlparse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = xmlparse.c; path = ../../src/expat/expat/lib/xmlparse.c; sourceTree = SOURCE_ROOT; }; - 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpfrm.cpp; path = ../../src/html/helpfrm.cpp; sourceTree = SOURCE_ROOT; }; - 26381308E32A3A179E7A9B40 /* gridsel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridsel.cpp; path = ../../src/generic/gridsel.cpp; sourceTree = SOURCE_ROOT; }; - BACAA6CE4A0934459F26B27C /* graphicc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicc.cpp; path = ../../src/generic/graphicc.cpp; sourceTree = SOURCE_ROOT; }; - 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_propdlg.cpp; path = ../../src/xrc/xh_propdlg.cpp; sourceTree = SOURCE_ROOT; }; - 1AD9605C9385374C87FAC9BC /* LexECL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexECL.cxx; path = ../../src/stc/lexilla/lexers/LexECL.cxx; sourceTree = SOURCE_ROOT; }; - D272910EC35531E5B4D6E05B /* dynlib.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dynlib.cpp; path = ../../src/common/dynlib.cpp; sourceTree = SOURCE_ROOT; }; - 24E82A05E9A9323287CDB15B /* artstd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artstd.cpp; path = ../../src/common/artstd.cpp; sourceTree = SOURCE_ROOT; }; - EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filtfind.cpp; path = ../../src/common/filtfind.cpp; sourceTree = SOURCE_ROOT; }; - 5FF661188B563D27A11F5716 /* fontutil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontutil.cpp; path = ../../src/osx/fontutil.cpp; sourceTree = SOURCE_ROOT; }; - 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHollywood.cxx; path = ../../src/stc/lexilla/lexers/LexHollywood.cxx; sourceTree = SOURCE_ROOT; }; + 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCrontab.cxx; path = ../../src/stc/lexilla/lexers/LexCrontab.cxx; sourceTree = SOURCE_ROOT; }; + 8C78A1539462370CAA429508 /* accel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accel.cpp; path = ../../src/osx/accel.cpp; sourceTree = SOURCE_ROOT; }; + 45C65E309F3A39598C043657 /* xh_infobar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_infobar.cpp; path = ../../src/xrc/xh_infobar.cpp; sourceTree = SOURCE_ROOT; }; + 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontcmn.cpp; path = ../../src/common/fontcmn.cpp; sourceTree = SOURCE_ROOT; }; + 48F1439BF6C3361296F05A33 /* tif_error.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_error.c; path = ../../src/tiff/libtiff/tif_error.c; sourceTree = SOURCE_ROOT; }; + 4CB467F9898C3952A68D988B /* zutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = zutil.c; path = ../../src/zlib/zutil.c; sourceTree = SOURCE_ROOT; }; + 35007225BB683683AA7C5E48 /* glcanvas.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = glcanvas.mm; path = ../../src/osx/iphone/glcanvas.mm; sourceTree = SOURCE_ROOT; }; + 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSmalltalk.cxx; path = ../../src/stc/lexilla/lexers/LexSmalltalk.cxx; sourceTree = SOURCE_ROOT; }; + F01DDE448E4C3983ACCE67FD /* appcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appcmn.cpp; path = ../../src/common/appcmn.cpp; sourceTree = SOURCE_ROOT; }; + 67D76B026121359F9B22F8B0 /* languageinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = languageinfo.cpp; path = ../../src/common/languageinfo.cpp; sourceTree = SOURCE_ROOT; }; + 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapimin.c; path = ../../src/jpeg/jcapimin.c; sourceTree = SOURCE_ROOT; }; + 81A30C745CA73E30B788B408 /* image.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image.cpp; path = ../../src/common/image.cpp; sourceTree = SOURCE_ROOT; }; 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = epolldispatcher.cpp; path = ../../src/unix/epolldispatcher.cpp; sourceTree = SOURCE_ROOT; }; - 664736BDE465350C9C4750E9 /* jcmarker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmarker.c; path = ../../src/jpeg/jcmarker.c; sourceTree = SOURCE_ROOT; }; - AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wincmn.cpp; path = ../../src/common/wincmn.cpp; sourceTree = SOURCE_ROOT; }; - EE959EC7BFDD3A628E856404 /* anidecod.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anidecod.cpp; path = ../../src/common/anidecod.cpp; sourceTree = SOURCE_ROOT; }; - 8EFF4707641D3F20AB602ED6 /* jccolor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccolor.c; path = ../../src/jpeg/jccolor.c; sourceTree = SOURCE_ROOT; }; - BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dialog_osx.cpp; path = ../../src/osx/dialog_osx.cpp; sourceTree = SOURCE_ROOT; }; - E79B2D1F630036129B9677A7 /* tif_dir.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dir.c; path = ../../src/tiff/libtiff/tif_dir.c; sourceTree = SOURCE_ROOT; }; - 42E433D1700631A8907B8227 /* helpctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpctrl.cpp; path = ../../src/html/helpctrl.cpp; sourceTree = SOURCE_ROOT; }; - D7B3307E56B332769901E99F /* filehistorycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filehistorycmn.cpp; path = ../../src/common/filehistorycmn.cpp; sourceTree = SOURCE_ROOT; }; - 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jquant1.c; path = ../../src/jpeg/jquant1.c; sourceTree = SOURCE_ROOT; }; - 70E9B2C076673C87B4218A01 /* panelcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = panelcmn.cpp; path = ../../src/common/panelcmn.cpp; sourceTree = SOURCE_ROOT; }; - 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imaglist.cpp; path = ../../src/generic/imaglist.cpp; sourceTree = SOURCE_ROOT; }; - 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrlsub.cpp; path = ../../src/common/ctrlsub.cpp; sourceTree = SOURCE_ROOT; }; - B568A7364ECA30288820CCE7 /* mdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mdi.cpp; path = ../../src/osx/carbon/mdi.cpp; sourceTree = SOURCE_ROOT; }; - AB634FD597793A74B3B3AA7F /* docview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docview.cpp; path = ../../src/common/docview.cpp; sourceTree = SOURCE_ROOT; }; - AC62806DE67F33E18C386D4F /* LexDMAP.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMAP.cxx; path = ../../src/stc/lexilla/lexers/LexDMAP.cxx; sourceTree = SOURCE_ROOT; }; - DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_aui.cpp; path = ../../src/ribbon/art_aui.cpp; sourceTree = SOURCE_ROOT; }; - 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colrdlgg.cpp; path = ../../src/generic/colrdlgg.cpp; sourceTree = SOURCE_ROOT; }; - B35DA585CFDD32468868E892 /* process.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cpp; path = ../../src/common/process.cpp; sourceTree = SOURCE_ROOT; }; - 032A38738B58394E8617617B /* tif_dirinfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirinfo.c; path = ../../src/tiff/libtiff/tif_dirinfo.c; sourceTree = SOURCE_ROOT; }; - BD709DEB71623974B9836D69 /* dockart.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockart.cpp; path = ../../src/aui/dockart.cpp; sourceTree = SOURCE_ROOT; }; - F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_collpane.cpp; path = ../../src/xrc/xh_collpane.cpp; sourceTree = SOURCE_ROOT; }; - 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combocmn.cpp; path = ../../src/common/combocmn.cpp; sourceTree = SOURCE_ROOT; }; - 7FE0455EBDC63D82B2D88587 /* jcprepct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcprepct.c; path = ../../src/jpeg/jcprepct.c; sourceTree = SOURCE_ROOT; }; - 5145561C78303EEE9F827962 /* LexLua.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLua.cxx; path = ../../src/stc/lexilla/lexers/LexLua.cxx; sourceTree = SOURCE_ROOT; }; - DC0FFDC7A6163F2DA73B84EB /* jchuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jchuff.c; path = ../../src/jpeg/jchuff.c; sourceTree = SOURCE_ROOT; }; - ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docmdi.cpp; path = ../../src/common/docmdi.cpp; sourceTree = SOURCE_ROOT; }; - 033B94A9AC8A3370A794503F /* extended.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = extended.c; path = ../../src/common/extended.c; sourceTree = SOURCE_ROOT; }; - 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sizer.cpp; path = ../../src/common/sizer.cpp; sourceTree = SOURCE_ROOT; }; - F6EA240B3DB93D398A990FAD /* tif_dirread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirread.c; path = ../../src/tiff/libtiff/tif_dirread.c; sourceTree = SOURCE_ROOT; }; - 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_codec.c; path = ../../src/tiff/libtiff/tif_codec.c; sourceTree = SOURCE_ROOT; }; - 2C090A76B6F23E6481A27282 /* ipcbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ipcbase.cpp; path = ../../src/common/ipcbase.cpp; sourceTree = SOURCE_ROOT; }; - F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jbig.c; path = ../../src/tiff/libtiff/tif_jbig.c; sourceTree = SOURCE_ROOT; }; - 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBaan.cxx; path = ../../src/stc/lexilla/lexers/LexBaan.cxx; sourceTree = SOURCE_ROOT; }; - BEF6B3FB66243812969E5BD1 /* palette.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = palette.cpp; path = ../../src/osx/palette.cpp; sourceTree = SOURCE_ROOT; }; - A37E3D1FB4FB31AFAE88665A /* dpycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dpycmn.cpp; path = ../../src/common/dpycmn.cpp; sourceTree = SOURCE_ROOT; }; - 3E3043D7BE9C33B59E900CCE /* jcmaster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmaster.c; path = ../../src/jpeg/jcmaster.c; sourceTree = SOURCE_ROOT; }; - 4969528429903F15882F5391 /* sockosx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sockosx.cpp; path = ../../src/osx/core/sockosx.cpp; sourceTree = SOURCE_ROOT; }; - 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtstrm.cpp; path = ../../src/common/txtstrm.cpp; sourceTree = SOURCE_ROOT; }; + 2F4CDF9048EC36788619769D /* pcre2_script_run.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_script_run.c; path = ../../3rdparty/pcre/src/pcre2_script_run.c; sourceTree = SOURCE_ROOT; }; + B0665A40F3FC3F218074C63C /* artmac.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artmac.cpp; path = ../../src/osx/artmac.cpp; sourceTree = SOURCE_ROOT; }; + F7332A03D93D3DABB050615D /* dir.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dir.cpp; path = ../../src/unix/dir.cpp; sourceTree = SOURCE_ROOT; }; + D87406BCF3E833369E12D89A /* LexHTML.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHTML.cxx; path = ../../src/stc/lexilla/lexers/LexHTML.cxx; sourceTree = SOURCE_ROOT; }; + FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_srchctrl.cpp; path = ../../src/xrc/xh_srchctrl.cpp; sourceTree = SOURCE_ROOT; }; + 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpcboxcmn.cpp; path = ../../src/common/bmpcboxcmn.cpp; sourceTree = SOURCE_ROOT; }; + 2F94CF171F4532B89FECF475 /* busyinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = busyinfo.cpp; path = ../../src/generic/busyinfo.cpp; sourceTree = SOURCE_ROOT; }; + A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selectdispatcher.cpp; path = ../../src/common/selectdispatcher.cpp; sourceTree = SOURCE_ROOT; }; + 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctint.c; path = ../../src/jpeg/jidctint.c; sourceTree = SOURCE_ROOT; }; + 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utilscocoa.mm; path = ../../src/osx/carbon/utilscocoa.mm; sourceTree = SOURCE_ROOT; }; + 2C6C4F5468743265A02D656C /* htmlfilt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlfilt.cpp; path = ../../src/html/htmlfilt.cpp; sourceTree = SOURCE_ROOT; }; + A5BBC1E494D33D028CA547FF /* jddctmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jddctmgr.c; path = ../../src/jpeg/jddctmgr.c; sourceTree = SOURCE_ROOT; }; + C64705CE9398316D87BAB4DC /* logg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = logg.cpp; path = ../../src/generic/logg.cpp; sourceTree = SOURCE_ROOT; }; + 1BB59DD194923D6399087A75 /* graphcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphcmn.cpp; path = ../../src/common/graphcmn.cpp; sourceTree = SOURCE_ROOT; }; A65399C8A6D636139E362119 /* LexAsm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsm.cxx; path = ../../src/stc/lexilla/lexers/LexAsm.cxx; sourceTree = SOURCE_ROOT; }; - 29387393C07C39DB8FF1663B /* artprov.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artprov.cpp; path = ../../src/common/artprov.cpp; sourceTree = SOURCE_ROOT; }; - E1F2E9C9052D3E53BBD17DE3 /* statbrma.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbrma.cpp; path = ../../src/osx/carbon/statbrma.cpp; sourceTree = SOURCE_ROOT; }; + 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nonownedwnd_osx.cpp; path = ../../src/osx/nonownedwnd_osx.cpp; sourceTree = SOURCE_ROOT; }; + 087B66573CD33DA99DA82B1C /* xmlres.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlres.cpp; path = ../../src/xrc/xmlres.cpp; sourceTree = SOURCE_ROOT; }; + 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridctrl.cpp; path = ../../src/generic/gridctrl.cpp; sourceTree = SOURCE_ROOT; }; + CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imaggif.cpp; path = ../../src/common/imaggif.cpp; sourceTree = SOURCE_ROOT; }; + 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wizard.cpp; path = ../../src/generic/wizard.cpp; sourceTree = SOURCE_ROOT; }; + 9C87B071E3593A889704F512 /* statbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbar.cpp; path = ../../src/common/statbar.cpp; sourceTree = SOURCE_ROOT; }; + 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dynload.cpp; path = ../../src/common/dynload.cpp; sourceTree = SOURCE_ROOT; }; + 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dobjcmn.cpp; path = ../../src/common/dobjcmn.cpp; sourceTree = SOURCE_ROOT; }; + 9EF09C7CC5413CC6A5E7B21B /* LexCPP.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCPP.cxx; path = ../../src/stc/lexilla/lexers/LexCPP.cxx; sourceTree = SOURCE_ROOT; }; + B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appunix.cpp; path = ../../src/unix/appunix.cpp; sourceTree = SOURCE_ROOT; }; + C125FA3837C631A9BE0ED5E7 /* splitter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splitter.cpp; path = ../../src/generic/splitter.cpp; sourceTree = SOURCE_ROOT; }; + 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerShell.cxx; path = ../../src/stc/lexilla/lexers/LexPowerShell.cxx; sourceTree = SOURCE_ROOT; }; + 04082EC1C91334379425802D /* LexConf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexConf.cxx; path = ../../src/stc/lexilla/lexers/LexConf.cxx; sourceTree = SOURCE_ROOT; }; + 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCharacterCategory.cxx; path = ../../src/stc/lexilla/lexlib/LexCharacterCategory.cxx; sourceTree = SOURCE_ROOT; }; + DD09A813E10A31C19554B425 /* affinematrix2d.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = affinematrix2d.cpp; path = ../../src/common/affinematrix2d.cpp; sourceTree = SOURCE_ROOT; }; + BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filepickercmn.cpp; path = ../../src/common/filepickercmn.cpp; sourceTree = SOURCE_ROOT; }; + 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_tree.cpp; path = ../../src/xrc/xh_tree.cpp; sourceTree = SOURCE_ROOT; }; + 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_dfa_match.c; path = ../../3rdparty/pcre/src/pcre2_dfa_match.c; sourceTree = SOURCE_ROOT; }; + 725574EF98C4301989181CBF /* jctrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jctrans.c; path = ../../src/jpeg/jctrans.c; sourceTree = SOURCE_ROOT; }; + 5190E3E110443FD29F2474FC /* treelist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treelist.cpp; path = ../../src/generic/treelist.cpp; sourceTree = SOURCE_ROOT; }; + 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checklst_osx.cpp; path = ../../src/osx/checklst_osx.cpp; sourceTree = SOURCE_ROOT; }; + 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choice_osx.cpp; path = ../../src/osx/choice_osx.cpp; sourceTree = SOURCE_ROOT; }; + 5B32A13D5B3336098B1B9765 /* pngtrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngtrans.c; path = ../../src/png/pngtrans.c; sourceTree = SOURCE_ROOT; }; + 508B04B4FF913BECBC9DBFFB /* LexSpecman.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpecman.cxx; path = ../../src/stc/lexilla/lexers/LexSpecman.cxx; sourceTree = SOURCE_ROOT; }; + BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_convert.c; path = ../../3rdparty/pcre/src/pcre2_convert.c; sourceTree = SOURCE_ROOT; }; + E8072CA67D19346ABF4D465F /* slidercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slidercmn.cpp; path = ../../src/common/slidercmn.cpp; sourceTree = SOURCE_ROOT; }; + 5612DBC4125B379DA2B28824 /* buttonbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = buttonbar.cpp; path = ../../src/generic/buttonbar.cpp; sourceTree = SOURCE_ROOT; }; + C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabmdi.cpp; path = ../../src/aui/tabmdi.cpp; sourceTree = SOURCE_ROOT; }; + 9CE73979D0933A43830307E4 /* tif_packbits.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_packbits.c; path = ../../src/tiff/libtiff/tif_packbits.c; sourceTree = SOURCE_ROOT; }; + C76222F466E831F896A89269 /* LexAU3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAU3.cxx; path = ../../src/stc/lexilla/lexers/LexAU3.cxx; sourceTree = SOURCE_ROOT; }; + 87D973CA8D673267BD0844D3 /* paper.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paper.cpp; path = ../../src/common/paper.cpp; sourceTree = SOURCE_ROOT; }; + 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_gauge.cpp; path = ../../src/xrc/xh_gauge.cpp; sourceTree = SOURCE_ROOT; }; + B568A7364ECA30288820CCE7 /* mdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mdi.cpp; path = ../../src/osx/carbon/mdi.cpp; sourceTree = SOURCE_ROOT; }; + 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrlcmn.cpp; path = ../../src/common/ctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + 1731A6096BFC3A468AB4755A /* tif_open.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_open.c; path = ../../src/tiff/libtiff/tif_open.c; sourceTree = SOURCE_ROOT; }; + FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = palette_neon_intrinsics.c; path = ../../src/png/arm/palette_neon_intrinsics.c; sourceTree = SOURCE_ROOT; }; + 30FD1048328234E59D319863 /* tif_fax3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_fax3.c; path = ../../src/tiff/libtiff/tif_fax3.c; sourceTree = SOURCE_ROOT; }; + 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_slidr.cpp; path = ../../src/xrc/xh_slidr.cpp; sourceTree = SOURCE_ROOT; }; + DFDC805DD3063C389F93642D /* tif_next.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_next.c; path = ../../src/tiff/libtiff/tif_next.c; sourceTree = SOURCE_ROOT; }; + B60497805D37375EBFCF3D98 /* pcre2_tables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_tables.c; path = ../../3rdparty/pcre/src/pcre2_tables.c; sourceTree = SOURCE_ROOT; }; + 777385D10CCC350C90F02824 /* textentry_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textentry_osx.cpp; path = ../../src/osx/textentry_osx.cpp; sourceTree = SOURCE_ROOT; }; + C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdata.cpp; path = ../../src/common/fontdata.cpp; sourceTree = SOURCE_ROOT; }; + 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMaxima.cxx; path = ../../src/stc/lexilla/lexers/LexMaxima.cxx; sourceTree = SOURCE_ROOT; }; + 51054B41BFD83E97BAF76D07 /* tabart.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabart.cpp; path = ../../src/aui/tabart.cpp; sourceTree = SOURCE_ROOT; }; + DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unichar.cpp; path = ../../src/common/unichar.cpp; sourceTree = SOURCE_ROOT; }; + F1E724EA70AB35DDB130F84F /* stringops.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stringops.cpp; path = ../../src/common/stringops.cpp; sourceTree = SOURCE_ROOT; }; + AB634FD597793A74B3B3AA7F /* docview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docview.cpp; path = ../../src/common/docview.cpp; sourceTree = SOURCE_ROOT; }; + 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpfrm.cpp; path = ../../src/html/helpfrm.cpp; sourceTree = SOURCE_ROOT; }; + 8FFDFB4D208F37569AC548B0 /* imagall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagall.cpp; path = ../../src/common/imagall.cpp; sourceTree = SOURCE_ROOT; }; + E4E16323A43E36DC8024EDF1 /* textctrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = textctrl.mm; path = ../../src/osx/iphone/textctrl.mm; sourceTree = SOURCE_ROOT; }; + CF4F4F5211933057824B5621 /* button_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = button_osx.cpp; path = ../../src/osx/button_osx.cpp; sourceTree = SOURCE_ROOT; }; + D73954EB5397301F87881646 /* statboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statboxcmn.cpp; path = ../../src/common/statboxcmn.cpp; sourceTree = SOURCE_ROOT; }; + CA72410F615B3A78A6340532 /* dnd_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dnd_osx.cpp; path = ../../src/osx/dnd_osx.cpp; sourceTree = SOURCE_ROOT; }; + 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_study.c; path = ../../3rdparty/pcre/src/pcre2_study.c; sourceTree = SOURCE_ROOT; }; + FE3B47058A723243A285594D /* LexMPT.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMPT.cxx; path = ../../src/stc/lexilla/lexers/LexMPT.cxx; sourceTree = SOURCE_ROOT; }; + 9DB43FAB1E563B02ACEFF647 /* module.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cpp; path = ../../src/common/module.cpp; sourceTree = SOURCE_ROOT; }; + BEC69FC5D7F73759A0670C4A /* textmeasurecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textmeasurecmn.cpp; path = ../../src/common/textmeasurecmn.cpp; sourceTree = SOURCE_ROOT; }; 477B609FA2373FB58F4C8768 /* wxiphone.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = wxiphone.xcconfig; sourceTree = ""; }; - EBED392D081335FA80523244 /* manager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = manager.cpp; path = ../../src/propgrid/manager.cpp; sourceTree = SOURCE_ROOT; }; 8707324525DB344EA0E7D5CE /* wxdebug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = wxdebug.xcconfig; sourceTree = ""; }; D5B7B7C10A3E3C689AE1E418 /* wxrelease.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = wxrelease.xcconfig; sourceTree = ""; }; - F1E724EA70AB35DDB130F84F /* stringops.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stringops.cpp; path = ../../src/common/stringops.cpp; sourceTree = SOURCE_ROOT; }; - BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_convert.c; path = ../../3rdparty/pcre/src/pcre2_convert.c; sourceTree = SOURCE_ROOT; }; - F263022F3FEA3F75895B644D /* filesys.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filesys.cpp; path = ../../src/common/filesys.cpp; sourceTree = SOURCE_ROOT; }; - 4048A3523EC03409BD899BEF /* xtixml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xtixml.cpp; path = ../../src/common/xtixml.cpp; sourceTree = SOURCE_ROOT; }; - FA9DD56E399533A5BE7AAD16 /* jdarith.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdarith.c; path = ../../src/jpeg/jdarith.c; sourceTree = SOURCE_ROOT; }; - B580FD04D0D83601826FD5EE /* filepickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filepickerg.cpp; path = ../../src/generic/filepickerg.cpp; sourceTree = SOURCE_ROOT; }; - FB46BC22F6B23909A938C561 /* regex.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regex.cpp; path = ../../src/common/regex.cpp; sourceTree = SOURCE_ROOT; }; - DB82939EDC593F9CA95C3098 /* init.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = init.cpp; path = ../../src/common/init.cpp; sourceTree = SOURCE_ROOT; }; - 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_filectrl.cpp; path = ../../src/xrc/xh_filectrl.cpp; sourceTree = SOURCE_ROOT; }; - 75D0C937F2A03ADA8581A2BB /* arcall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arcall.cpp; path = ../../src/common/arcall.cpp; sourceTree = SOURCE_ROOT; }; - B233180893DB3328AF4847DA /* notifmsgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notifmsgcmn.cpp; path = ../../src/common/notifmsgcmn.cpp; sourceTree = SOURCE_ROOT; }; - 6BCFC640786735CF9F191F15 /* LexCharacterCategory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCharacterCategory.cxx; path = ../../src/stc/lexilla/lexlib/LexCharacterCategory.cxx; sourceTree = SOURCE_ROOT; }; - 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrlwing.cpp; path = ../../src/generic/scrlwing.cpp; sourceTree = SOURCE_ROOT; }; - F43AF44465B335479752116D /* xh_radbx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_radbx.cpp; path = ../../src/xrc/xh_radbx.cpp; sourceTree = SOURCE_ROOT; }; - 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdatadst.c; path = ../../src/jpeg/jdatadst.c; sourceTree = SOURCE_ROOT; }; - CDB4AB7CDABA3A54B4F8207B /* imaggif.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imaggif.cpp; path = ../../src/common/imaggif.cpp; sourceTree = SOURCE_ROOT; }; - 418AD9241B673308BE31DC06 /* xlocale.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xlocale.cpp; path = ../../src/common/xlocale.cpp; sourceTree = SOURCE_ROOT; }; - 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_find_bracket.c; path = ../../3rdparty/pcre/src/pcre2_find_bracket.c; sourceTree = SOURCE_ROOT; }; - EF330EAACFA53877BE289896 /* matrix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = matrix.cpp; path = ../../src/common/matrix.cpp; sourceTree = SOURCE_ROOT; }; - 5248A45AB113341EAC361910 /* notebook_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notebook_osx.cpp; path = ../../src/osx/notebook_osx.cpp; sourceTree = SOURCE_ROOT; }; - 910D00F1C9143C6D85C24E7C /* LexDMIS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMIS.cxx; path = ../../src/stc/lexilla/lexers/LexDMIS.cxx; sourceTree = SOURCE_ROOT; }; - B1F3C70512D93501B0478F3E /* m_fonts.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_fonts.cpp; path = ../../src/html/m_fonts.cpp; sourceTree = SOURCE_ROOT; }; FBC5A5797B0D369291A76D6E /* dcbufcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcbufcmn.cpp; path = ../../src/common/dcbufcmn.cpp; sourceTree = SOURCE_ROOT; }; - 1E2FEBCEED2D33CFAAF75206 /* gbsizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gbsizer.cpp; path = ../../src/common/gbsizer.cpp; sourceTree = SOURCE_ROOT; }; - 67D76B026121359F9B22F8B0 /* languageinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = languageinfo.cpp; path = ../../src/common/languageinfo.cpp; sourceTree = SOURCE_ROOT; }; - 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdproc.cpp; path = ../../src/common/cmdproc.cpp; sourceTree = SOURCE_ROOT; }; + E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = creddlgg.cpp; path = ../../src/generic/creddlgg.cpp; sourceTree = SOURCE_ROOT; }; + 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datavcmn.cpp; path = ../../src/common/datavcmn.cpp; sourceTree = SOURCE_ROOT; }; + FE538F33A1423FC2AC9E45F3 /* regiong.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regiong.cpp; path = ../../src/generic/regiong.cpp; sourceTree = SOURCE_ROOT; }; + ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRaku.cxx; path = ../../src/stc/lexilla/lexers/LexRaku.cxx; sourceTree = SOURCE_ROOT; }; + AF9EE701DD653E2299293E5F /* pngwio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwio.c; path = ../../src/png/pngwio.c; sourceTree = SOURCE_ROOT; }; + 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchctrl_osx.cpp; path = ../../src/osx/srchctrl_osx.cpp; sourceTree = SOURCE_ROOT; }; + B1F3C70512D93501B0478F3E /* m_fonts.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_fonts.cpp; path = ../../src/html/m_fonts.cpp; sourceTree = SOURCE_ROOT; }; + B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listb.cpp; path = ../../src/xrc/xh_listb.cpp; sourceTree = SOURCE_ROOT; }; + 326723AEB79A305F90D6B41D /* advprops.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = advprops.cpp; path = ../../src/propgrid/advprops.cpp; sourceTree = SOURCE_ROOT; }; + AA6C6739C3BD3EFA9CF71102 /* jcinit.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcinit.c; path = ../../src/jpeg/jcinit.c; sourceTree = SOURCE_ROOT; }; + C69E48C06BD23C178F650E42 /* richtextxml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextxml.cpp; path = ../../src/richtext/richtextxml.cpp; sourceTree = SOURCE_ROOT; }; + A6636144CDE83E8E85270FAF /* hashmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hashmap.cpp; path = ../../src/common/hashmap.cpp; sourceTree = SOURCE_ROOT; }; + 6831AA74AB5B38D5AA6946D7 /* settings.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = settings.mm; path = ../../src/osx/iphone/settings.mm; sourceTree = SOURCE_ROOT; }; + 3026D20A03E53F1DB40FB35A /* pcre2_context.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_context.c; path = ../../3rdparty/pcre/src/pcre2_context.c; sourceTree = SOURCE_ROOT; }; + 24396D584D053948A3FF0DCD /* imagpng.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagpng.cpp; path = ../../src/common/imagpng.cpp; sourceTree = SOURCE_ROOT; }; + 4BA819575B5136B09FA8FEB1 /* pen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pen.cpp; path = ../../src/osx/pen.cpp; sourceTree = SOURCE_ROOT; }; + 430739CB8B95336ABB372EC7 /* EditView.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EditView.cxx; path = ../../src/stc/scintilla/src/EditView.cxx; sourceTree = SOURCE_ROOT; }; + B9B5BC858CCF3477895D2786 /* zstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zstream.cpp; path = ../../src/common/zstream.cpp; sourceTree = SOURCE_ROOT; }; + 5E463A493FD930DE80E58608 /* pngset.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngset.c; path = ../../src/png/pngset.c; sourceTree = SOURCE_ROOT; }; + 66426B63AA3E3A279936C034 /* grideditors.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grideditors.cpp; path = ../../src/generic/grideditors.cpp; sourceTree = SOURCE_ROOT; }; + FB46BC22F6B23909A938C561 /* regex.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regex.cpp; path = ../../src/common/regex.cpp; sourceTree = SOURCE_ROOT; }; + A298576700C33F018616E7BD /* auibook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = auibook.cpp; path = ../../src/aui/auibook.cpp; sourceTree = SOURCE_ROOT; }; 082CA018FB883999839C1DCE /* m_tables.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_tables.cpp; path = ../../src/html/m_tables.cpp; sourceTree = SOURCE_ROOT; }; - 155ECF01CC4C318281AAA870 /* ownerdrwcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ownerdrwcmn.cpp; path = ../../src/common/ownerdrwcmn.cpp; sourceTree = SOURCE_ROOT; }; + 24BD2EF635673E819B8406CB /* LexRust.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRust.cxx; path = ../../src/stc/lexilla/lexers/LexRust.cxx; sourceTree = SOURCE_ROOT; }; + B6AADC1056E03A3B80C20C5B /* LexBasic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBasic.cxx; path = ../../src/stc/lexilla/lexers/LexBasic.cxx; sourceTree = SOURCE_ROOT; }; + FA7029BB5751398AA02D8C24 /* imagtga.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagtga.cpp; path = ../../src/common/imagtga.cpp; sourceTree = SOURCE_ROOT; }; 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uilocale.cpp; path = ../../src/common/uilocale.cpp; sourceTree = SOURCE_ROOT; }; - FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = palette_neon_intrinsics.c; path = ../../src/png/arm/palette_neon_intrinsics.c; sourceTree = SOURCE_ROOT; }; - 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEDIFACT.cxx; path = ../../src/stc/lexilla/lexers/LexEDIFACT.cxx; sourceTree = SOURCE_ROOT; }; - 24930711031D35288D28B04B /* choiccmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choiccmn.cpp; path = ../../src/common/choiccmn.cpp; sourceTree = SOURCE_ROOT; }; - 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcscreen.cpp; path = ../../src/osx/carbon/dcscreen.cpp; sourceTree = SOURCE_ROOT; }; - 0964797530CF3FE7B8DB6242 /* pngwtran.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwtran.c; path = ../../src/png/pngwtran.c; sourceTree = SOURCE_ROOT; }; - A82C367B86F83981803D55DB /* LexASY.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexASY.cxx; path = ../../src/stc/lexilla/lexers/LexASY.cxx; sourceTree = SOURCE_ROOT; }; - 9D1F14339D1C331087650931 /* colour.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colour.cpp; path = ../../src/osx/core/colour.cpp; sourceTree = SOURCE_ROOT; }; - 18044326B5B13A98A49732DD /* fontdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdlg.cpp; path = ../../src/osx/carbon/fontdlg.cpp; sourceTree = SOURCE_ROOT; }; - 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toplevel_osx.cpp; path = ../../src/osx/toplevel_osx.cpp; sourceTree = SOURCE_ROOT; }; - B60497805D37375EBFCF3D98 /* pcre2_tables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_tables.c; path = ../../3rdparty/pcre/src/pcre2_tables.c; sourceTree = SOURCE_ROOT; }; - 343D4FDD5CC030618EF24729 /* dcmemory.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcmemory.cpp; path = ../../src/osx/core/dcmemory.cpp; sourceTree = SOURCE_ROOT; }; - FD5F11A3646F397BA62EB037 /* htmllbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmllbox.cpp; path = ../../src/generic/htmllbox.cpp; sourceTree = SOURCE_ROOT; }; - B890199A37723EFD86C0ADA5 /* quantize.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = quantize.cpp; path = ../../src/common/quantize.cpp; sourceTree = SOURCE_ROOT; }; - 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_fontpicker.cpp; path = ../../src/xrc/xh_fontpicker.cpp; sourceTree = SOURCE_ROOT; }; - 6AC666417602346EA583709E /* translation.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = translation.cpp; path = ../../src/common/translation.cpp; sourceTree = SOURCE_ROOT; }; - 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSorcus.cxx; path = ../../src/stc/lexilla/lexers/LexSorcus.cxx; sourceTree = SOURCE_ROOT; }; - E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbase.cpp; path = ../../src/common/bmpbase.cpp; sourceTree = SOURCE_ROOT; }; - A5BBC1E494D33D028CA547FF /* jddctmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jddctmgr.c; path = ../../src/jpeg/jddctmgr.c; sourceTree = SOURCE_ROOT; }; - 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_filepicker.cpp; path = ../../src/xrc/xh_filepicker.cpp; sourceTree = SOURCE_ROOT; }; - A284E855892F3A9E9E19E854 /* LexTADS3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTADS3.cxx; path = ../../src/stc/lexilla/lexers/LexTADS3.cxx; sourceTree = SOURCE_ROOT; }; - 2F1B41B0F10C3DA38188C239 /* LexScriptol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexScriptol.cxx; path = ../../src/stc/lexilla/lexers/LexScriptol.cxx; sourceTree = SOURCE_ROOT; }; - AC8BB1AABB3D393EBA527060 /* intl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = intl.cpp; path = ../../src/common/intl.cpp; sourceTree = SOURCE_ROOT; }; - 56653FACC7D13804A70556AD /* sckfile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckfile.cpp; path = ../../src/common/sckfile.cpp; sourceTree = SOURCE_ROOT; }; - B99CA41708513A599AE275A2 /* listbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listbox_osx.cpp; path = ../../src/osx/listbox_osx.cpp; sourceTree = SOURCE_ROOT; }; - 61658C3EABB4341AA38C691E /* m_pre.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_pre.cpp; path = ../../src/html/m_pre.cpp; sourceTree = SOURCE_ROOT; }; - FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridcmn.cpp; path = ../../src/common/gridcmn.cpp; sourceTree = SOURCE_ROOT; }; - 7020ADB5D3E0375E875B418B /* LexA68k.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexA68k.cxx; path = ../../src/stc/lexilla/lexers/LexA68k.cxx; sourceTree = SOURCE_ROOT; }; - 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerBase.cxx; path = ../../src/stc/lexilla/lexlib/LexerBase.cxx; sourceTree = SOURCE_ROOT; }; - 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bookctrlbase.cpp; path = ../../src/xrc/xh_bookctrlbase.cpp; sourceTree = SOURCE_ROOT; }; - 496674699F173A5385EAFF07 /* calctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calctrlg.cpp; path = ../../src/generic/calctrlg.cpp; sourceTree = SOURCE_ROOT; }; - 38891BF8F51E398F9082903F /* LexTAL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTAL.cxx; path = ../../src/stc/lexilla/lexers/LexTAL.cxx; sourceTree = SOURCE_ROOT; }; - 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treectlg.cpp; path = ../../src/generic/treectlg.cpp; sourceTree = SOURCE_ROOT; }; - 68B81FBDA49D3C1991B6356A /* jdcolor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcolor.c; path = ../../src/jpeg/jdcolor.c; sourceTree = SOURCE_ROOT; }; - 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_tree.cpp; path = ../../src/xrc/xh_tree.cpp; sourceTree = SOURCE_ROOT; }; - C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tarstrm.cpp; path = ../../src/common/tarstrm.cpp; sourceTree = SOURCE_ROOT; }; - EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_split.cpp; path = ../../src/xrc/xh_split.cpp; sourceTree = SOURCE_ROOT; }; - FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexGui4Cli.cxx; path = ../../src/stc/lexilla/lexers/LexGui4Cli.cxx; sourceTree = SOURCE_ROOT; }; - EA93D41B11683E758D456531 /* log.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = ../../src/common/log.cpp; sourceTree = SOURCE_ROOT; }; - C63C964DAFAD311694367C94 /* xh_datectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_datectrl.cpp; path = ../../src/xrc/xh_datectrl.cpp; sourceTree = SOURCE_ROOT; }; - 1BB59DD194923D6399087A75 /* graphcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphcmn.cpp; path = ../../src/common/graphcmn.cpp; sourceTree = SOURCE_ROOT; }; - 41AE72D4E8FF307F86A02F5F /* LexIndent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexIndent.cxx; path = ../../src/stc/lexilla/lexers/LexIndent.cxx; sourceTree = SOURCE_ROOT; }; - 05A4437E9697300390FDE14E /* auibar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = auibar.cpp; path = ../../src/aui/auibar.cpp; sourceTree = SOURCE_ROOT; }; - A436B55DC44E3827A757A6D8 /* accelcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accelcmn.cpp; path = ../../src/common/accelcmn.cpp; sourceTree = SOURCE_ROOT; }; - 01BA6D45FE4C381493EB4372 /* validate.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validate.cpp; path = ../../src/common/validate.cpp; sourceTree = SOURCE_ROOT; }; - A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selectdispatcher.cpp; path = ../../src/common/selectdispatcher.cpp; sourceTree = SOURCE_ROOT; }; - C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anybutton_osx.cpp; path = ../../src/osx/anybutton_osx.cpp; sourceTree = SOURCE_ROOT; }; - BF1C44D726E63B18A98006EC /* Decoration.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Decoration.cxx; path = ../../src/stc/scintilla/src/Decoration.cxx; sourceTree = SOURCE_ROOT; }; - 6876262846EA3569B36D92E9 /* imagjpeg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagjpeg.cpp; path = ../../src/common/imagjpeg.cpp; sourceTree = SOURCE_ROOT; }; - 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wizard.cpp; path = ../../src/generic/wizard.cpp; sourceTree = SOURCE_ROOT; }; - 373242CD08F330208A7CF438 /* fontenumcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontenumcmn.cpp; path = ../../src/common/fontenumcmn.cpp; sourceTree = SOURCE_ROOT; }; - 238741BDA2C73E56899CCB04 /* dcprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcprint.cpp; path = ../../src/osx/carbon/dcprint.cpp; sourceTree = SOURCE_ROOT; }; - 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lboxcmn.cpp; path = ../../src/common/lboxcmn.cpp; sourceTree = SOURCE_ROOT; }; - E1B794996B953D00AC7BC2AE /* uilocale.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = uilocale.mm; path = ../../src/osx/core/uilocale.mm; sourceTree = SOURCE_ROOT; }; - 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = stdpaths.mm; path = ../../src/osx/cocoa/stdpaths.mm; sourceTree = SOURCE_ROOT; }; - 68E5188DB6003C35A8C7754D /* htmlcell.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlcell.cpp; path = ../../src/html/htmlcell.cpp; sourceTree = SOURCE_ROOT; }; - B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_ribbon.cpp; path = ../../src/xrc/xh_ribbon.cpp; sourceTree = SOURCE_ROOT; }; - 2F4CDF9048EC36788619769D /* pcre2_script_run.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_script_run.c; path = ../../3rdparty/pcre/src/pcre2_script_run.c; sourceTree = SOURCE_ROOT; }; - 24396D584D053948A3FF0DCD /* imagpng.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagpng.cpp; path = ../../src/common/imagpng.cpp; sourceTree = SOURCE_ROOT; }; - 36E1DBA275AD325DB759C180 /* fontenum.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontenum.cpp; path = ../../src/osx/core/fontenum.cpp; sourceTree = SOURCE_ROOT; }; - B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listb.cpp; path = ../../src/xrc/xh_listb.cpp; sourceTree = SOURCE_ROOT; }; - A9B2316B32653DA0939A372D /* sound_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound_osx.cpp; path = ../../src/osx/sound_osx.cpp; sourceTree = SOURCE_ROOT; }; - F4C72C5C61A6335C8B418BA1 /* LexMetapost.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMetapost.cxx; path = ../../src/stc/lexilla/lexers/LexMetapost.cxx; sourceTree = SOURCE_ROOT; }; - AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = nonownedwnd.mm; path = ../../src/osx/iphone/nonownedwnd.mm; sourceTree = SOURCE_ROOT; }; - 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = bmpbndl.mm; path = ../../src/osx/core/bmpbndl.mm; sourceTree = SOURCE_ROOT; }; - FE538F33A1423FC2AC9E45F3 /* regiong.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regiong.cpp; path = ../../src/generic/regiong.cpp; sourceTree = SOURCE_ROOT; }; - 0D9828C9BD9633C1A8F4E0CD /* LexRebol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRebol.cxx; path = ../../src/stc/lexilla/lexers/LexRebol.cxx; sourceTree = SOURCE_ROOT; }; - 45860601270D318D93BEE1F3 /* LexMagik.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMagik.cxx; path = ../../src/stc/lexilla/lexers/LexMagik.cxx; sourceTree = SOURCE_ROOT; }; - E72F0A2EE3DB34E193D8CCA7 /* LexLaTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLaTeX.cxx; path = ../../src/stc/lexilla/lexers/LexLaTeX.cxx; sourceTree = SOURCE_ROOT; }; + 9CAA325362C73AC8BE20FAA7 /* pngpread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngpread.c; path = ../../src/png/pngpread.c; sourceTree = SOURCE_ROOT; }; + 5F63BF9430CE371DA04AC900 /* textentrycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textentrycmn.cpp; path = ../../src/common/textentrycmn.cpp; sourceTree = SOURCE_ROOT; }; + 2A5FC30FF3743DBAAF8910EC /* LexPowerPro.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerPro.cxx; path = ../../src/stc/lexilla/lexers/LexPowerPro.cxx; sourceTree = SOURCE_ROOT; }; + 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timerunx.cpp; path = ../../src/unix/timerunx.cpp; sourceTree = SOURCE_ROOT; }; + E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = commandlinkbuttong.cpp; path = ../../src/generic/commandlinkbuttong.cpp; sourceTree = SOURCE_ROOT; }; + D5F9383D1CE931499F339D85 /* strconv_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strconv_cf.cpp; path = ../../src/osx/core/strconv_cf.cpp; sourceTree = SOURCE_ROOT; }; + FDB0E2D0966C3E408C4A2D3D /* infback.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = infback.c; path = ../../src/zlib/infback.c; sourceTree = SOURCE_ROOT; }; + AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_filter.cpp; path = ../../src/common/fs_filter.cpp; sourceTree = SOURCE_ROOT; }; + 9988CBB0772A3539970162FA /* arttango.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arttango.cpp; path = ../../src/common/arttango.cpp; sourceTree = SOURCE_ROOT; }; + EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fddlgcmn.cpp; path = ../../src/common/fddlgcmn.cpp; sourceTree = SOURCE_ROOT; }; + 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtstrm.cpp; path = ../../src/common/txtstrm.cpp; sourceTree = SOURCE_ROOT; }; + 0A59A5C2305D3D1C8049BE71 /* LexCsound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCsound.cxx; path = ../../src/stc/lexilla/lexers/LexCsound.cxx; sourceTree = SOURCE_ROOT; }; + A37E3D1FB4FB31AFAE88665A /* dpycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dpycmn.cpp; path = ../../src/common/dpycmn.cpp; sourceTree = SOURCE_ROOT; }; + B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_hyperlink.cpp; path = ../../src/xrc/xh_hyperlink.cpp; sourceTree = SOURCE_ROOT; }; + 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_pattern_info.c; path = ../../3rdparty/pcre/src/pcre2_pattern_info.c; sourceTree = SOURCE_ROOT; }; 6DBF3053414F3C448312165A /* jcdctmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcdctmgr.c; path = ../../src/jpeg/jcdctmgr.c; sourceTree = SOURCE_ROOT; }; - ABE3DC4AA47D39ACA83F27C0 /* settcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settcmn.cpp; path = ../../src/common/settcmn.cpp; sourceTree = SOURCE_ROOT; }; - 0EB91E8407CB3300A19F387D /* ctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrlcmn.cpp; path = ../../src/common/ctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - 6BD8DAB407D231EFA5B2CAE5 /* numformatter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numformatter.cpp; path = ../../src/common/numformatter.cpp; sourceTree = SOURCE_ROOT; }; - 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_ord2utf.c; path = ../../3rdparty/pcre/src/pcre2_ord2utf.c; sourceTree = SOURCE_ROOT; }; - 48F1439BF6C3361296F05A33 /* tif_error.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_error.c; path = ../../src/tiff/libtiff/tif_error.c; sourceTree = SOURCE_ROOT; }; - 98A7F0605AAC3D28A8C9F253 /* gauge.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = gauge.mm; path = ../../src/osx/iphone/gauge.mm; sourceTree = SOURCE_ROOT; }; - BC12B97F233B3B9494DA217F /* imagpnm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagpnm.cpp; path = ../../src/common/imagpnm.cpp; sourceTree = SOURCE_ROOT; }; - F951601E73683F27AD8CA99D /* MarginView.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MarginView.cxx; path = ../../src/stc/scintilla/src/MarginView.cxx; sourceTree = SOURCE_ROOT; }; - 5612DBC4125B379DA2B28825 /* buttonbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = buttonbar.cpp; path = ../../src/generic/buttonbar.cpp; sourceTree = SOURCE_ROOT; }; - BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbar.cpp; path = ../../src/ribbon/toolbar.cpp; sourceTree = SOURCE_ROOT; }; - 66C21CA37BF63893887FD91B /* menu_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menu_osx.cpp; path = ../../src/osx/menu_osx.cpp; sourceTree = SOURCE_ROOT; }; - 51054B41BFD83E97BAF76D07 /* tabart.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabart.cpp; path = ../../src/aui/tabart.cpp; sourceTree = SOURCE_ROOT; }; + 58EFF24DE2E737CA8A164F5C /* LexEScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEScript.cxx; path = ../../src/stc/lexilla/lexers/LexEScript.cxx; sourceTree = SOURCE_ROOT; }; + 616466F521DB3ECAB304289F /* xh_dataview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_dataview.cpp; path = ../../src/xrc/xh_dataview.cpp; sourceTree = SOURCE_ROOT; }; + 910D00F1C9143C6D85C24E7C /* LexDMIS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMIS.cxx; path = ../../src/stc/lexilla/lexers/LexDMIS.cxx; sourceTree = SOURCE_ROOT; }; + 5145561C78303EEE9F827962 /* LexLua.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLua.cxx; path = ../../src/stc/lexilla/lexers/LexLua.cxx; sourceTree = SOURCE_ROOT; }; + 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = stdpaths.mm; path = ../../src/osx/cocoa/stdpaths.mm; sourceTree = SOURCE_ROOT; }; + 00DA3D3EEF5E305CA73A1871 /* region.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = region.cpp; path = ../../src/osx/carbon/region.cpp; sourceTree = SOURCE_ROOT; }; + B580FD04D0D83601826FD5EE /* filepickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filepickerg.cpp; path = ../../src/generic/filepickerg.cpp; sourceTree = SOURCE_ROOT; }; + AC8BB1AABB3D393EBA527060 /* intl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = intl.cpp; path = ../../src/common/intl.cpp; sourceTree = SOURCE_ROOT; }; 8685B8ED68F23DB0B770FD74 /* xmltok.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = xmltok.c; path = ../../src/expat/expat/lib/xmltok.c; sourceTree = SOURCE_ROOT; }; - FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_config.c; path = ../../3rdparty/pcre/src/pcre2_config.c; sourceTree = SOURCE_ROOT; }; - BCD873D873A53BBF955D8A4E /* PositionCache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PositionCache.cxx; path = ../../src/stc/scintilla/src/PositionCache.cxx; sourceTree = SOURCE_ROOT; }; - F7E99B35A98D30818120B002 /* string.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = string.cpp; path = ../../src/common/string.cpp; sourceTree = SOURCE_ROOT; }; - 4549845C0751356A907C23E0 /* jdtrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdtrans.c; path = ../../src/jpeg/jdtrans.c; sourceTree = SOURCE_ROOT; }; - F4020D790AE7363CB29F1C2F /* anybutton.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = anybutton.mm; path = ../../src/osx/iphone/anybutton.mm; sourceTree = SOURCE_ROOT; }; - 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filectrlcmn.cpp; path = ../../src/common/filectrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexModula.cxx; path = ../../src/stc/lexilla/lexers/LexModula.cxx; sourceTree = SOURCE_ROOT; }; - 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextimagedlg.cpp; path = ../../src/richtext/richtextimagedlg.cpp; sourceTree = SOURCE_ROOT; }; - F5DAF1F49F0F3F41A427A21D /* icon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = icon.cpp; path = ../../src/generic/icon.cpp; sourceTree = SOURCE_ROOT; }; - 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPLM.cxx; path = ../../src/stc/lexilla/lexers/LexPLM.cxx; sourceTree = SOURCE_ROOT; }; - EDD97DF408EC347A8CB8EF45 /* filedlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filedlgg.cpp; path = ../../src/generic/filedlgg.cpp; sourceTree = SOURCE_ROOT; }; - 9B862D1027C4367BBF44420F /* slider.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = slider.mm; path = ../../src/osx/iphone/slider.mm; sourceTree = SOURCE_ROOT; }; - 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_jit_compile.c; path = ../../3rdparty/pcre/src/pcre2_jit_compile.c; sourceTree = SOURCE_ROOT; }; + 727F25F832AD32D4B12D8E39 /* m_span.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_span.cpp; path = ../../src/html/m_span.cpp; sourceTree = SOURCE_ROOT; }; + C06FED83BF933DF98C2466AE /* button.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = button.mm; path = ../../src/osx/iphone/button.mm; sourceTree = SOURCE_ROOT; }; + 68E5188DB6003C35A8C7754D /* htmlcell.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlcell.cpp; path = ../../src/html/htmlcell.cpp; sourceTree = SOURCE_ROOT; }; + BBB30516233A39BE809405AA /* helpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpbase.cpp; path = ../../src/common/helpbase.cpp; sourceTree = SOURCE_ROOT; }; + AB466912FDA23F8B87A00A3C /* threadpsx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = threadpsx.cpp; path = ../../src/unix/threadpsx.cpp; sourceTree = SOURCE_ROOT; }; + D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_menu.cpp; path = ../../src/xrc/xh_menu.cpp; sourceTree = SOURCE_ROOT; }; + 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_choic.cpp; path = ../../src/xrc/xh_choic.cpp; sourceTree = SOURCE_ROOT; }; + 4EB3B255D20F3AE5A95230F6 /* LexCSS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCSS.cxx; path = ../../src/stc/lexilla/lexers/LexCSS.cxx; sourceTree = SOURCE_ROOT; }; + 7255468B6D5F3D8697994A53 /* LexR.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexR.cxx; path = ../../src/stc/lexilla/lexers/LexR.cxx; sourceTree = SOURCE_ROOT; }; + 3C131F7BF8A83960ACB26242 /* jidctflt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctflt.c; path = ../../src/jpeg/jidctflt.c; sourceTree = SOURCE_ROOT; }; + 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlpars.cpp; path = ../../src/html/htmlpars.cpp; sourceTree = SOURCE_ROOT; }; + 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_text.cpp; path = ../../src/xrc/xh_text.cpp; sourceTree = SOURCE_ROOT; }; + 5C85865D28DC31649440A921 /* imagxpm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagxpm.cpp; path = ../../src/common/imagxpm.cpp; sourceTree = SOURCE_ROOT; }; + AF26BAB1F4733114926F1724 /* png.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = png.c; path = ../../src/png/png.c; sourceTree = SOURCE_ROOT; }; + FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextctrl.cpp; path = ../../src/richtext/richtextctrl.cpp; sourceTree = SOURCE_ROOT; }; + 375E7A99FF4C38FA9E223772 /* LexAda.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAda.cxx; path = ../../src/stc/lexilla/lexers/LexAda.cxx; sourceTree = SOURCE_ROOT; }; + 7C97C1F26B5A38C49543060C /* mimetype.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mimetype.cpp; path = ../../src/osx/core/mimetype.cpp; sourceTree = SOURCE_ROOT; }; + 864438709B363773B8C3382D /* datetimefmt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datetimefmt.cpp; path = ../../src/common/datetimefmt.cpp; sourceTree = SOURCE_ROOT; }; + 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calctrlcmn.cpp; path = ../../src/common/calctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + C28429A964C337A192D76CC8 /* Style.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Style.cxx; path = ../../src/stc/scintilla/src/Style.cxx; sourceTree = SOURCE_ROOT; }; + 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RunStyles.cxx; path = ../../src/stc/scintilla/src/RunStyles.cxx; sourceTree = SOURCE_ROOT; }; E29A8279BAEE303B95C9D3C6 /* LexGDScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexGDScript.cxx; path = ../../src/stc/lexilla/lexers/LexGDScript.cxx; sourceTree = SOURCE_ROOT; }; - DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultLexer.cxx; path = ../../src/stc/lexilla/lexlib/DefaultLexer.cxx; sourceTree = SOURCE_ROOT; }; - 724927B0045F3CC0884878BB /* radiobtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobtncmn.cpp; path = ../../src/common/radiobtncmn.cpp; sourceTree = SOURCE_ROOT; }; - A0DCC5EF59143640BE13AD73 /* jidctfst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctfst.c; path = ../../src/jpeg/jidctfst.c; sourceTree = SOURCE_ROOT; }; - 25A81E9028793C109D868068 /* xh_timectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_timectrl.cpp; path = ../../src/xrc/xh_timectrl.cpp; sourceTree = SOURCE_ROOT; }; - 271B4B77622B3411A7BF6634 /* dataobj.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dataobj.cpp; path = ../../src/osx/carbon/dataobj.cpp; sourceTree = SOURCE_ROOT; }; - 81A30C745CA73E30B788B408 /* image.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image.cpp; path = ../../src/common/image.cpp; sourceTree = SOURCE_ROOT; }; - A9C7F740A55E39FD890B3C7F /* editors.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = editors.cpp; path = ../../src/propgrid/editors.cpp; sourceTree = SOURCE_ROOT; }; - 5F63BF9430CE371DA04AC900 /* textentrycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textentrycmn.cpp; path = ../../src/common/textentrycmn.cpp; sourceTree = SOURCE_ROOT; }; - D87406BCF3E833369E12D89A /* LexHTML.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHTML.cxx; path = ../../src/stc/lexilla/lexers/LexHTML.cxx; sourceTree = SOURCE_ROOT; }; - 147800BBCB80346798B35D75 /* xh_stbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_stbox.cpp; path = ../../src/xrc/xh_stbox.cpp; sourceTree = SOURCE_ROOT; }; - CC2713393AB132AA8E337AE1 /* LexPython.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPython.cxx; path = ../../src/stc/lexilla/lexers/LexPython.cxx; sourceTree = SOURCE_ROOT; }; - 53D06E47477B3E32BB6B915E /* jcsample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcsample.c; path = ../../src/jpeg/jcsample.c; sourceTree = SOURCE_ROOT; }; - C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextformatdlg.cpp; path = ../../src/richtext/richtextformatdlg.cpp; sourceTree = SOURCE_ROOT; }; - 616466F521DB3ECAB304289F /* xh_dataview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_dataview.cpp; path = ../../src/xrc/xh_dataview.cpp; sourceTree = SOURCE_ROOT; }; - DD09A813E10A31C19554B425 /* affinematrix2d.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = affinematrix2d.cpp; path = ../../src/common/affinematrix2d.cpp; sourceTree = SOURCE_ROOT; }; - FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glcanvas_osx.cpp; path = ../../src/osx/glcanvas_osx.cpp; sourceTree = SOURCE_ROOT; }; - D4A23A8BC7373D4BBD72851D /* apptraits.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = apptraits.cpp; path = ../../src/unix/apptraits.cpp; sourceTree = SOURCE_ROOT; }; - AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uiaction_osx.cpp; path = ../../src/osx/uiaction_osx.cpp; sourceTree = SOURCE_ROOT; }; - 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stopwatch.cpp; path = ../../src/common/stopwatch.cpp; sourceTree = SOURCE_ROOT; }; - C64705CE9398316D87BAB4DC /* logg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = logg.cpp; path = ../../src/generic/logg.cpp; sourceTree = SOURCE_ROOT; }; - 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileconf.cpp; path = ../../src/common/fileconf.cpp; sourceTree = SOURCE_ROOT; }; - FBE1C531185131A89EFF7FAF /* cmdline.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdline.cpp; path = ../../src/common/cmdline.cpp; sourceTree = SOURCE_ROOT; }; - E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_scwin.cpp; path = ../../src/xrc/xh_scwin.cpp; sourceTree = SOURCE_ROOT; }; - 40CE02524DD4385AB2C3DF95 /* socket.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socket.cpp; path = ../../src/common/socket.cpp; sourceTree = SOURCE_ROOT; }; - B540E18F9C91381CA175BABB /* art_msw.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_msw.cpp; path = ../../src/ribbon/art_msw.cpp; sourceTree = SOURCE_ROOT; }; - 12363D1F50FE301DAEE7F04A /* control.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = control.cpp; path = ../../src/osx/carbon/control.cpp; sourceTree = SOURCE_ROOT; }; - 3716DA7B0C79360CBA26A71E /* tif_webp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_webp.c; path = ../../src/tiff/libtiff/tif_webp.c; sourceTree = SOURCE_ROOT; }; - EED7C691150139EFA35E8EBD /* utils_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utils_osx.cpp; path = ../../src/osx/utils_osx.cpp; sourceTree = SOURCE_ROOT; }; - FDB0E2D0966C3E408C4A2D3D /* infback.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = infback.c; path = ../../src/zlib/infback.c; sourceTree = SOURCE_ROOT; }; - 2F94CF171F4532B89FECF475 /* busyinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = busyinfo.cpp; path = ../../src/generic/busyinfo.cpp; sourceTree = SOURCE_ROOT; }; - CF4F4F5211933057824B5621 /* button_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = button_osx.cpp; path = ../../src/osx/button_osx.cpp; sourceTree = SOURCE_ROOT; }; - D0B9C41A4D12345AAA764CAD /* stc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stc.cpp; path = ../../src/stc/stc.cpp; sourceTree = SOURCE_ROOT; }; - 0080254545B9383ABDF2045C /* xh_odcombo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_odcombo.cpp; path = ../../src/xrc/xh_odcombo.cpp; sourceTree = SOURCE_ROOT; }; + D4E1DC1869C6327C80D2F5F4 /* uri.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uri.cpp; path = ../../src/common/uri.cpp; sourceTree = SOURCE_ROOT; }; + 267DB0E799183294B707A39D /* LexerNoExceptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerNoExceptions.cxx; path = ../../src/stc/lexilla/lexlib/LexerNoExceptions.cxx; sourceTree = SOURCE_ROOT; }; + 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgridiface.cpp; path = ../../src/propgrid/propgridiface.cpp; sourceTree = SOURCE_ROOT; }; + 303ACF199BE431BD891C9301 /* overlaycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = overlaycmn.cpp; path = ../../src/common/overlaycmn.cpp; sourceTree = SOURCE_ROOT; }; + D1EE17722EA937E88A7F0C01 /* dcbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcbase.cpp; path = ../../src/common/dcbase.cpp; sourceTree = SOURCE_ROOT; }; + E9B992CB6C28339FB0CA5E27 /* tif_write.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_write.c; path = ../../src/tiff/libtiff/tif_write.c; sourceTree = SOURCE_ROOT; }; C562D5885AFF3E15837325CE /* xpmdecod.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xpmdecod.cpp; path = ../../src/common/xpmdecod.cpp; sourceTree = SOURCE_ROOT; }; - CA2D9F325F833C408657E7B7 /* dlunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlunix.cpp; path = ../../src/unix/dlunix.cpp; sourceTree = SOURCE_ROOT; }; - B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tipdlg.cpp; path = ../../src/generic/tipdlg.cpp; sourceTree = SOURCE_ROOT; }; - E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = creddlgg.cpp; path = ../../src/generic/creddlgg.cpp; sourceTree = SOURCE_ROOT; }; - 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gifdecod.cpp; path = ../../src/common/gifdecod.cpp; sourceTree = SOURCE_ROOT; }; - 964578C24B9F390AAD08576E /* addremovectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = addremovectrl.cpp; path = ../../src/common/addremovectrl.cpp; sourceTree = SOURCE_ROOT; }; - A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cpp; path = ../../src/osx/core/bitmap.cpp; sourceTree = SOURCE_ROOT; }; - 2C904B4BA8273355869812B2 /* clntdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clntdata.cpp; path = ../../src/common/clntdata.cpp; sourceTree = SOURCE_ROOT; }; - 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtooltipcmn.cpp; path = ../../src/common/richtooltipcmn.cpp; sourceTree = SOURCE_ROOT; }; - 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = aboutdlgg.cpp; path = ../../src/generic/aboutdlgg.cpp; sourceTree = SOURCE_ROOT; }; - E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CellBuffer.cxx; path = ../../src/stc/scintilla/src/CellBuffer.cxx; sourceTree = SOURCE_ROOT; }; - 5B32A13D5B3336098B1B9765 /* pngtrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngtrans.c; path = ../../src/png/pngtrans.c; sourceTree = SOURCE_ROOT; }; - 1EF103B09F02315282EC8F44 /* srchcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchcmn.cpp; path = ../../src/common/srchcmn.cpp; sourceTree = SOURCE_ROOT; }; - 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagpcx.cpp; path = ../../src/common/imagpcx.cpp; sourceTree = SOURCE_ROOT; }; - 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_unkwn.cpp; path = ../../src/xrc/xh_unkwn.cpp; sourceTree = SOURCE_ROOT; }; - 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAccessor.cxx; path = ../../src/stc/lexilla/lexlib/LexAccessor.cxx; sourceTree = SOURCE_ROOT; }; - 912B2982C9413F2FB40CA2D9 /* LexSML.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSML.cxx; path = ../../src/stc/lexilla/lexers/LexSML.cxx; sourceTree = SOURCE_ROOT; }; - 548906E4E72935E48CE4AF87 /* m_image.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_image.cpp; path = ../../src/html/m_image.cpp; sourceTree = SOURCE_ROOT; }; - 4FC2F076657431458896115A /* checkboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checkboxcmn.cpp; path = ../../src/common/checkboxcmn.cpp; sourceTree = SOURCE_ROOT; }; - 0C7EBE4F1AB136B5883AA7B7 /* LexMaxima.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMaxima.cxx; path = ../../src/stc/lexilla/lexers/LexMaxima.cxx; sourceTree = SOURCE_ROOT; }; - 7EE2459D69BA35838C274488 /* LexCLW.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCLW.cxx; path = ../../src/stc/lexilla/lexers/LexCLW.cxx; sourceTree = SOURCE_ROOT; }; - 933D7637CAA43F6C99814BC5 /* arm_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = arm_init.c; path = ../../src/png/arm/arm_init.c; sourceTree = SOURCE_ROOT; }; - 7D90D14874FD38079835AF0B /* editlbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = editlbox.cpp; path = ../../src/generic/editlbox.cpp; sourceTree = SOURCE_ROOT; }; - 3B98123FD57731139044B064 /* tif_zstd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_zstd.c; path = ../../src/tiff/libtiff/tif_zstd.c; sourceTree = SOURCE_ROOT; }; - 72869747E68E37998CB0A07E /* jdhuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdhuff.c; path = ../../src/jpeg/jdhuff.c; sourceTree = SOURCE_ROOT; }; - 726C0457DF1232C793918DC1 /* tif_zip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_zip.c; path = ../../src/tiff/libtiff/tif_zip.c; sourceTree = SOURCE_ROOT; }; - 7C97C1F26B5A38C49543060C /* mimetype.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mimetype.cpp; path = ../../src/osx/core/mimetype.cpp; sourceTree = SOURCE_ROOT; }; - 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndcmn.cpp; path = ../../src/common/dndcmn.cpp; sourceTree = SOURCE_ROOT; }; - 47FF6D792CA234C395692118 /* PlatWX.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PlatWX.cpp; path = ../../src/stc/PlatWX.cpp; sourceTree = SOURCE_ROOT; }; + 59C6B9849FF6325E890942EF /* xmlrole.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = xmlrole.c; path = ../../src/expat/expat/lib/xmlrole.c; sourceTree = SOURCE_ROOT; }; + 2B5A9DF3206B3954A4B38BFD /* clrpickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrpickerg.cpp; path = ../../src/generic/clrpickerg.cpp; sourceTree = SOURCE_ROOT; }; + 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_auitoolb.cpp; path = ../../src/xrc/xh_auitoolb.cpp; sourceTree = SOURCE_ROOT; }; + BDE76674C0F5391BAD2AFA2F /* dialog_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dialog_osx.cpp; path = ../../src/osx/dialog_osx.cpp; sourceTree = SOURCE_ROOT; }; + A06AB1974DB93EE2999EC75C /* pngrio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrio.c; path = ../../src/png/pngrio.c; sourceTree = SOURCE_ROOT; }; + BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_activityindicator.cpp; path = ../../src/xrc/xh_activityindicator.cpp; sourceTree = SOURCE_ROOT; }; + E1B794996B953D00AC7BC2AE /* uilocale.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = uilocale.mm; path = ../../src/osx/core/uilocale.mm; sourceTree = SOURCE_ROOT; }; + 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbuttn_osx.cpp; path = ../../src/osx/bmpbuttn_osx.cpp; sourceTree = SOURCE_ROOT; }; + F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_extuni.c; path = ../../3rdparty/pcre/src/pcre2_extuni.c; sourceTree = SOURCE_ROOT; }; + 70E9B2C076673C87B4218A01 /* panelcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = panelcmn.cpp; path = ../../src/common/panelcmn.cpp; sourceTree = SOURCE_ROOT; }; + ABE3DC4AA47D39ACA83F27C0 /* settcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settcmn.cpp; path = ../../src/common/settcmn.cpp; sourceTree = SOURCE_ROOT; }; + 0E7BF9256DF533EBAE2B945E /* WordList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WordList.cxx; path = ../../src/stc/lexilla/lexlib/WordList.cxx; sourceTree = SOURCE_ROOT; }; + 160EB9744CB63A0B81DC651F /* hid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hid.cpp; path = ../../src/osx/core/hid.cpp; sourceTree = SOURCE_ROOT; }; 9E1B538562B93D148F54645B /* LexSAS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSAS.cxx; path = ../../src/stc/lexilla/lexers/LexSAS.cxx; sourceTree = SOURCE_ROOT; }; - 864438709B363773B8C3382D /* datetimefmt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datetimefmt.cpp; path = ../../src/common/datetimefmt.cpp; sourceTree = SOURCE_ROOT; }; - A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgdlgg.cpp; path = ../../src/generic/msgdlgg.cpp; sourceTree = SOURCE_ROOT; }; - A208BFC0C8C43847A9620ADA /* pcre2_newline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_newline.c; path = ../../3rdparty/pcre/src/pcre2_newline.c; sourceTree = SOURCE_ROOT; }; - 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtloopunix.cpp; path = ../../src/unix/evtloopunix.cpp; sourceTree = SOURCE_ROOT; }; - FADE850169F7347F83FE1499 /* xh_statbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_statbar.cpp; path = ../../src/xrc/xh_statbar.cpp; sourceTree = SOURCE_ROOT; }; - 6718204F4700318E89EAC906 /* LexBullant.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBullant.cxx; path = ../../src/stc/lexilla/lexers/LexBullant.cxx; sourceTree = SOURCE_ROOT; }; - 4188821BBA833CCAA678B234 /* utilscmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utilscmn.cpp; path = ../../src/common/utilscmn.cpp; sourceTree = SOURCE_ROOT; }; - 57E4784E521339BEB971D81D /* LexAVS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVS.cxx; path = ../../src/stc/lexilla/lexers/LexAVS.cxx; sourceTree = SOURCE_ROOT; }; - 182C8AD4F822375495795B43 /* dbgrptg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbgrptg.cpp; path = ../../src/generic/dbgrptg.cpp; sourceTree = SOURCE_ROOT; }; + D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = markuptext.cpp; path = ../../src/generic/markuptext.cpp; sourceTree = SOURCE_ROOT; }; + BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbar.cpp; path = ../../src/ribbon/toolbar.cpp; sourceTree = SOURCE_ROOT; }; + 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextbuffer.cpp; path = ../../src/richtext/richtextbuffer.cpp; sourceTree = SOURCE_ROOT; }; + C83C97A1FCC5345896C9D7DE /* tif_warning.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_warning.c; path = ../../src/tiff/libtiff/tif_warning.c; sourceTree = SOURCE_ROOT; }; + FA9DD56E399533A5BE7AAD16 /* jdarith.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdarith.c; path = ../../src/jpeg/jdarith.c; sourceTree = SOURCE_ROOT; }; + A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_string_utils.c; path = ../../3rdparty/pcre/src/pcre2_string_utils.c; sourceTree = SOURCE_ROOT; }; + 2ACC8667173D3AB09F6214F4 /* sound.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cpp; path = ../../src/osx/core/sound.cpp; sourceTree = SOURCE_ROOT; }; + F82278F9AF0432529891E6D7 /* tif_close.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_close.c; path = ../../src/tiff/libtiff/tif_close.c; sourceTree = SOURCE_ROOT; }; + 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_filepicker.cpp; path = ../../src/xrc/xh_filepicker.cpp; sourceTree = SOURCE_ROOT; }; + BEF6B3FB66243812969E5BD1 /* palette.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = palette.cpp; path = ../../src/osx/palette.cpp; sourceTree = SOURCE_ROOT; }; + 9D1F14339D1C331087650931 /* colour.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colour.cpp; path = ../../src/osx/core/colour.cpp; sourceTree = SOURCE_ROOT; }; + 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_ord2utf.c; path = ../../3rdparty/pcre/src/pcre2_ord2utf.c; sourceTree = SOURCE_ROOT; }; + 1731D6708BFE3DE7B101CE74 /* object.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = object.cpp; path = ../../src/common/object.cpp; sourceTree = SOURCE_ROOT; }; + F2024D29170D3B50A4DFDE11 /* base64.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = base64.cpp; path = ../../src/common/base64.cpp; sourceTree = SOURCE_ROOT; }; + 305614D19CF23CB2B14A5B2E /* tif_flush.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_flush.c; path = ../../src/tiff/libtiff/tif_flush.c; sourceTree = SOURCE_ROOT; }; + 9660AE8FEB7B3EDB857B9238 /* lboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lboxcmn.cpp; path = ../../src/common/lboxcmn.cpp; sourceTree = SOURCE_ROOT; }; + 36E1DBA275AD325DB759C180 /* fontenum.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontenum.cpp; path = ../../src/osx/core/fontenum.cpp; sourceTree = SOURCE_ROOT; }; + 76337016F2CA3C85831702E6 /* grid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grid.cpp; path = ../../src/generic/grid.cpp; sourceTree = SOURCE_ROOT; }; + 7A24E9101688368296C21EBE /* gzclose.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzclose.c; path = ../../src/zlib/gzclose.c; sourceTree = SOURCE_ROOT; }; + 0890779C662C35889A8C6C2E /* jdmerge.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmerge.c; path = ../../src/jpeg/jdmerge.c; sourceTree = SOURCE_ROOT; }; + 2ED0C0702D2734D9B08FC31D /* utils_base.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utils_base.mm; path = ../../src/osx/cocoa/utils_base.mm; sourceTree = SOURCE_ROOT; }; + FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMMIXAL.cxx; path = ../../src/stc/lexilla/lexers/LexMMIXAL.cxx; sourceTree = SOURCE_ROOT; }; + 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tglbtn_osx.cpp; path = ../../src/osx/tglbtn_osx.cpp; sourceTree = SOURCE_ROOT; }; 88F2BA2F0598342186A484B5 /* fs_arc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_arc.cpp; path = ../../src/common/fs_arc.cpp; sourceTree = SOURCE_ROOT; }; - BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_fax3sm.c; path = ../../src/tiff/libtiff/tif_fax3sm.c; sourceTree = SOURCE_ROOT; }; + EEA0945B20913754A54D0FD9 /* dcpsg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcpsg.cpp; path = ../../src/generic/dcpsg.cpp; sourceTree = SOURCE_ROOT; }; + 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_jpeg.c; path = ../../src/tiff/libtiff/tif_jpeg.c; sourceTree = SOURCE_ROOT; }; + 29387393C07C39DB8FF1663B /* artprov.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = artprov.cpp; path = ../../src/common/artprov.cpp; sourceTree = SOURCE_ROOT; }; + 2D61240ABD70328BA5789663 /* colourcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colourcmn.cpp; path = ../../src/common/colourcmn.cpp; sourceTree = SOURCE_ROOT; }; + DC3D1E222FD93A69B1D1366E /* mstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mstream.cpp; path = ../../src/common/mstream.cpp; sourceTree = SOURCE_ROOT; }; + B7581D7140293BAE88E43DBE /* fs_inet.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_inet.cpp; path = ../../src/common/fs_inet.cpp; sourceTree = SOURCE_ROOT; }; + EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filtfind.cpp; path = ../../src/common/filtfind.cpp; sourceTree = SOURCE_ROOT; }; + 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdatadst.c; path = ../../src/jpeg/jdatadst.c; sourceTree = SOURCE_ROOT; }; + C2BB2949CC0B387AB6879539 /* metafile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metafile.cpp; path = ../../src/osx/carbon/metafile.cpp; sourceTree = SOURCE_ROOT; }; + EA2520F427493A22A70A5C09 /* stackwalk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stackwalk.cpp; path = ../../src/unix/stackwalk.cpp; sourceTree = SOURCE_ROOT; }; + 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCoffeeScript.cxx; path = ../../src/stc/lexilla/lexers/LexCoffeeScript.cxx; sourceTree = SOURCE_ROOT; }; + 00969CBE3B8F32C78C195619 /* panel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = panel.cpp; path = ../../src/ribbon/panel.cpp; sourceTree = SOURCE_ROOT; }; + C513377E9E303F778BA9D7ED /* arcfind.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arcfind.cpp; path = ../../src/common/arcfind.cpp; sourceTree = SOURCE_ROOT; }; + 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bookctrlbase.cpp; path = ../../src/xrc/xh_bookctrlbase.cpp; sourceTree = SOURCE_ROOT; }; + FD6B26B5A6A733A89EF5AB9C /* statbmp.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = statbmp.mm; path = ../../src/osx/iphone/statbmp.mm; sourceTree = SOURCE_ROOT; }; + B3D9C4122372343DBEAF6492 /* LexCOBOL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCOBOL.cxx; path = ../../src/stc/lexilla/lexers/LexCOBOL.cxx; sourceTree = SOURCE_ROOT; }; + 1CABAEA3B48333CB88B40F08 /* LexTCMD.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCMD.cxx; path = ../../src/stc/lexilla/lexers/LexTCMD.cxx; sourceTree = SOURCE_ROOT; }; + 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = filter_sse2_intrinsics.c; path = ../../src/png/intel/filter_sse2_intrinsics.c; sourceTree = SOURCE_ROOT; }; + 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bookctrl.cpp; path = ../../src/common/bookctrl.cpp; sourceTree = SOURCE_ROOT; }; + 26D7C4995D7A35A1854B533F /* window_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window_osx.cpp; path = ../../src/osx/window_osx.cpp; sourceTree = SOURCE_ROOT; }; + 81708CFA21A03013ACB8DDD7 /* checkbox.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = checkbox.mm; path = ../../src/osx/iphone/checkbox.mm; sourceTree = SOURCE_ROOT; }; + 86A0C3603C8A343AAFBD2CE0 /* LexFortran.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFortran.cxx; path = ../../src/stc/lexilla/lexers/LexFortran.cxx; sourceTree = SOURCE_ROOT; }; + 12363D1F50FE301DAEE7F04A /* control.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = control.cpp; path = ../../src/osx/carbon/control.cpp; sourceTree = SOURCE_ROOT; }; + 2A67053D16D63C588E555C84 /* dragimgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dragimgg.cpp; path = ../../src/generic/dragimgg.cpp; sourceTree = SOURCE_ROOT; }; + 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHex.cxx; path = ../../src/stc/lexilla/lexers/LexHex.cxx; sourceTree = SOURCE_ROOT; }; + B180290089B139F18B0C7BBA /* stockitem.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stockitem.cpp; path = ../../src/common/stockitem.cpp; sourceTree = SOURCE_ROOT; }; + 496674699F173A5385EAFF07 /* calctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calctrlg.cpp; path = ../../src/generic/calctrlg.cpp; sourceTree = SOURCE_ROOT; }; + CA2D9F325F833C408657E7B7 /* dlunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlunix.cpp; path = ../../src/unix/dlunix.cpp; sourceTree = SOURCE_ROOT; }; + 71DB140E670738839EC42C2B /* Document.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Document.cxx; path = ../../src/stc/scintilla/src/Document.cxx; sourceTree = SOURCE_ROOT; }; + AF7CE00168AB33C994374ABA /* tif_extension.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_extension.c; path = ../../src/tiff/libtiff/tif_extension.c; sourceTree = SOURCE_ROOT; }; + 3CF73F49AEC238C99CE89845 /* deflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = deflate.c; path = ../../src/zlib/deflate.c; sourceTree = SOURCE_ROOT; }; + A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rowheightcache.cpp; path = ../../src/generic/rowheightcache.cpp; sourceTree = SOURCE_ROOT; }; + 3D5F00FC91343C35AF99F708 /* LexMake.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMake.cxx; path = ../../src/stc/lexilla/lexers/LexMake.cxx; sourceTree = SOURCE_ROOT; }; + 75D0C937F2A03ADA8581A2BB /* arcall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arcall.cpp; path = ../../src/common/arcall.cpp; sourceTree = SOURCE_ROOT; }; + CCF7564A2B733F759AA8496B /* jdinput.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdinput.c; path = ../../src/jpeg/jdinput.c; sourceTree = SOURCE_ROOT; }; + 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ScintillaBase.cxx; path = ../../src/stc/scintilla/src/ScintillaBase.cxx; sourceTree = SOURCE_ROOT; }; + 23FC98E2305230E2990471E3 /* wxcrt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wxcrt.cpp; path = ../../src/common/wxcrt.cpp; sourceTree = SOURCE_ROOT; }; + E79B2D1F630036129B9677A7 /* tif_dir.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dir.c; path = ../../src/tiff/libtiff/tif_dir.c; sourceTree = SOURCE_ROOT; }; 640783FBACA43206B782C77B /* evtloopcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtloopcmn.cpp; path = ../../src/common/evtloopcmn.cpp; sourceTree = SOURCE_ROOT; }; - 38EF5FC5934C34D599FD6074 /* bmpbuttn_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbuttn_osx.cpp; path = ../../src/osx/bmpbuttn_osx.cpp; sourceTree = SOURCE_ROOT; }; + 29D6506AEA5A323B8735F126 /* pngread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngread.c; path = ../../src/png/pngread.c; sourceTree = SOURCE_ROOT; }; + 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmpcbox.cpp; path = ../../src/xrc/xh_bmpcbox.cpp; sourceTree = SOURCE_ROOT; }; + 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlwin.cpp; path = ../../src/html/htmlwin.cpp; sourceTree = SOURCE_ROOT; }; + AC12D557950A3B0D89D9F2F3 /* fileback.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileback.cpp; path = ../../src/common/fileback.cpp; sourceTree = SOURCE_ROOT; }; + 72869747E68E37998CB0A07E /* jdhuff.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdhuff.c; path = ../../src/jpeg/jdhuff.c; sourceTree = SOURCE_ROOT; }; + 95B4EDF38F8A3E5EBAFF560F /* trees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = trees.c; path = ../../src/zlib/trees.c; sourceTree = SOURCE_ROOT; }; + CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choicdgg.cpp; path = ../../src/generic/choicdgg.cpp; sourceTree = SOURCE_ROOT; }; + 26381308E32A3A179E7A9B40 /* gridsel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridsel.cpp; path = ../../src/generic/gridsel.cpp; sourceTree = SOURCE_ROOT; }; + FBE1C531185131A89EFF7FAF /* cmdline.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdline.cpp; path = ../../src/common/cmdline.cpp; sourceTree = SOURCE_ROOT; }; + 149D299A0EDB3D998118EC93 /* tif_color.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_color.c; path = ../../src/tiff/libtiff/tif_color.c; sourceTree = SOURCE_ROOT; }; + 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipbrd.cpp; path = ../../src/osx/carbon/clipbrd.cpp; sourceTree = SOURCE_ROOT; }; + 2718D06670953933B897B0D8 /* webview_chromium.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webview_chromium.cpp; path = ../../src/common/webview_chromium.cpp; sourceTree = SOURCE_ROOT; }; + 548906E4E72935E48CE4AF87 /* m_image.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_image.cpp; path = ../../src/html/m_image.cpp; sourceTree = SOURCE_ROOT; }; + F4020D790AE7363CB29F1C2F /* anybutton.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = anybutton.mm; path = ../../src/osx/iphone/anybutton.mm; sourceTree = SOURCE_ROOT; }; + F46EC1508C063C8395CE7A95 /* sstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sstream.cpp; path = ../../src/common/sstream.cpp; sourceTree = SOURCE_ROOT; }; + C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextformatdlg.cpp; path = ../../src/richtext/richtextformatdlg.cpp; sourceTree = SOURCE_ROOT; }; + 20E4A10BCD773C84AEC481A1 /* jdmarker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmarker.c; path = ../../src/jpeg/jdmarker.c; sourceTree = SOURCE_ROOT; }; + 1629FA905F903324AA5BE72C /* vscroll.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vscroll.cpp; path = ../../src/generic/vscroll.cpp; sourceTree = SOURCE_ROOT; }; + 93EDB3A2B85E3275A6D27C56 /* LexerBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerBase.cxx; path = ../../src/stc/lexilla/lexlib/LexerBase.cxx; sourceTree = SOURCE_ROOT; }; CD72950967F33809931D4968 /* LexAbaqus.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAbaqus.cxx; path = ../../src/stc/lexilla/lexers/LexAbaqus.cxx; sourceTree = SOURCE_ROOT; }; - 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctint.c; path = ../../src/jpeg/jfdctint.c; sourceTree = SOURCE_ROOT; }; - 2F41EDEB298538CC86FF6DC1 /* jcparam.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcparam.c; path = ../../src/jpeg/jcparam.c; sourceTree = SOURCE_ROOT; }; - FAC42945539F362D91D6F559 /* pcre2_substitute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_substitute.c; path = ../../3rdparty/pcre/src/pcre2_substitute.c; sourceTree = SOURCE_ROOT; }; - 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_dfa_match.c; path = ../../3rdparty/pcre/src/pcre2_dfa_match.c; sourceTree = SOURCE_ROOT; }; - 375FF97B202F3C359402D13E /* jdpostct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdpostct.c; path = ../../src/jpeg/jdpostct.c; sourceTree = SOURCE_ROOT; }; - 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVHDL.cxx; path = ../../src/stc/lexilla/lexers/LexVHDL.cxx; sourceTree = SOURCE_ROOT; }; - 38CEA4A3579331EF808B8363 /* fontdlgosx.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = fontdlgosx.mm; path = ../../src/osx/carbon/fontdlgosx.mm; sourceTree = SOURCE_ROOT; }; - 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listc.cpp; path = ../../src/xrc/xh_listc.cpp; sourceTree = SOURCE_ROOT; }; - BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_serialize.c; path = ../../3rdparty/pcre/src/pcre2_serialize.c; sourceTree = SOURCE_ROOT; }; - 9DB43FAB1E563B02ACEFF647 /* module.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cpp; path = ../../src/common/module.cpp; sourceTree = SOURCE_ROOT; }; - 9C87B071E3593A889704F512 /* statbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbar.cpp; path = ../../src/common/statbar.cpp; sourceTree = SOURCE_ROOT; }; - 4867546E8B8D3C8683A23ED5 /* any.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = any.cpp; path = ../../src/common/any.cpp; sourceTree = SOURCE_ROOT; }; - 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctfst.c; path = ../../src/jpeg/jfdctfst.c; sourceTree = SOURCE_ROOT; }; - F175D6E8E5723FC797701275 /* menucmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menucmn.cpp; path = ../../src/common/menucmn.cpp; sourceTree = SOURCE_ROOT; }; - AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagtiff.cpp; path = ../../src/common/imagtiff.cpp; sourceTree = SOURCE_ROOT; }; - 25E03E349FC13E4A9428B94E /* pcre2_error.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_error.c; path = ../../3rdparty/pcre/src/pcre2_error.c; sourceTree = SOURCE_ROOT; }; - B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_hyperlink.cpp; path = ../../src/xrc/xh_hyperlink.cpp; sourceTree = SOURCE_ROOT; }; - C049D0CFFF0D34E591E1FEA1 /* fontdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdata.cpp; path = ../../src/common/fontdata.cpp; sourceTree = SOURCE_ROOT; }; - F7440859617F3B47AF4D3817 /* valgen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valgen.cpp; path = ../../src/common/valgen.cpp; sourceTree = SOURCE_ROOT; }; - 8FFDFB4D208F37569AC548B0 /* imagall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagall.cpp; path = ../../src/common/imagall.cpp; sourceTree = SOURCE_ROOT; }; - 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcherg.cpp; path = ../../src/generic/fswatcherg.cpp; sourceTree = SOURCE_ROOT; }; - B5370A676AAC32419D7FDD87 /* inflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inflate.c; path = ../../src/zlib/inflate.c; sourceTree = SOURCE_ROOT; }; - 093B5233861B3F9B8C85762B /* xh_cald.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_cald.cpp; path = ../../src/xrc/xh_cald.cpp; sourceTree = SOURCE_ROOT; }; - 2B1A318636A134DB93C0BA45 /* LexSQL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSQL.cxx; path = ../../src/stc/lexilla/lexers/LexSQL.cxx; sourceTree = SOURCE_ROOT; }; - A87BF60D0D4A33E2AD2E1E25 /* uiactioncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uiactioncmn.cpp; path = ../../src/common/uiactioncmn.cpp; sourceTree = SOURCE_ROOT; }; + 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sashwin.cpp; path = ../../src/generic/sashwin.cpp; sourceTree = SOURCE_ROOT; }; + D2DE67C976CF3004A8FE883A /* Accessor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Accessor.cxx; path = ../../src/stc/lexilla/lexlib/Accessor.cxx; sourceTree = SOURCE_ROOT; }; + F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFlagship.cxx; path = ../../src/stc/lexilla/lexers/LexFlagship.cxx; sourceTree = SOURCE_ROOT; }; + FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridcmn.cpp; path = ../../src/common/gridcmn.cpp; sourceTree = SOURCE_ROOT; }; + 9051902662BE38B3912B34EA /* dlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlgcmn.cpp; path = ../../src/common/dlgcmn.cpp; sourceTree = SOURCE_ROOT; }; + DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statline_osx.cpp; path = ../../src/osx/statline_osx.cpp; sourceTree = SOURCE_ROOT; }; + B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_sttxt.cpp; path = ../../src/xrc/xh_sttxt.cpp; sourceTree = SOURCE_ROOT; }; + BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_chckb.cpp; path = ../../src/xrc/xh_chckb.cpp; sourceTree = SOURCE_ROOT; }; + D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_cmdlinkbn.cpp; path = ../../src/xrc/xh_cmdlinkbn.cpp; sourceTree = SOURCE_ROOT; }; + D73962222F573116BE63576C /* xh_propgrid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_propgrid.cpp; path = ../../src/xrc/xh_propgrid.cpp; sourceTree = SOURCE_ROOT; }; + 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = filter_neon_intrinsics.c; path = ../../src/png/arm/filter_neon_intrinsics.c; sourceTree = SOURCE_ROOT; }; + B83EDE2D1731311ABDE62F9F /* tif_strip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_strip.c; path = ../../src/tiff/libtiff/tif_strip.c; sourceTree = SOURCE_ROOT; }; + E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CellBuffer.cxx; path = ../../src/stc/scintilla/src/CellBuffer.cxx; sourceTree = SOURCE_ROOT; }; + AF3DF03795153E039B8F1F87 /* LineMarker.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LineMarker.cxx; path = ../../src/stc/scintilla/src/LineMarker.cxx; sourceTree = SOURCE_ROOT; }; + 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbox_osx.cpp; path = ../../src/osx/statbox_osx.cpp; sourceTree = SOURCE_ROOT; }; + AAC12B4456E13F57BEA25A5E /* tif_swab.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_swab.c; path = ../../src/tiff/libtiff/tif_swab.c; sourceTree = SOURCE_ROOT; }; + 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdpbase.cpp; path = ../../src/common/stdpbase.cpp; sourceTree = SOURCE_ROOT; }; + 4188821BBA833CCAA678B234 /* utilscmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utilscmn.cpp; path = ../../src/common/utilscmn.cpp; sourceTree = SOURCE_ROOT; }; + 49CABA38E78D34DFA260AA06 /* renderg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = renderg.cpp; path = ../../src/generic/renderg.cpp; sourceTree = SOURCE_ROOT; }; + FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xtistrm.cpp; path = ../../src/common/xtistrm.cpp; sourceTree = SOURCE_ROOT; }; + 66AC0EA493AB3B6A86DAE174 /* colrdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colrdlgg.cpp; path = ../../src/generic/colrdlgg.cpp; sourceTree = SOURCE_ROOT; }; + C9A305CEC03B3085B159B617 /* fs_mem.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_mem.cpp; path = ../../src/common/fs_mem.cpp; sourceTree = SOURCE_ROOT; }; 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_substring.c; path = ../../3rdparty/pcre/src/pcre2_substring.c; sourceTree = SOURCE_ROOT; }; - CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_choicbk.cpp; path = ../../src/xrc/xh_choicbk.cpp; sourceTree = SOURCE_ROOT; }; - 108517BCD39230E7A89BC943 /* jerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jerror.c; path = ../../src/jpeg/jerror.c; sourceTree = SOURCE_ROOT; }; - 58E7C516E2453A269280A404 /* modalhook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modalhook.cpp; path = ../../src/common/modalhook.cpp; sourceTree = SOURCE_ROOT; }; - 194ADD28300E329E80F7892E /* htmprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmprint.cpp; path = ../../src/html/htmprint.cpp; sourceTree = SOURCE_ROOT; }; - 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = odcombo.cpp; path = ../../src/generic/odcombo.cpp; sourceTree = SOURCE_ROOT; }; - 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatchercmn.cpp; path = ../../src/common/fswatchercmn.cpp; sourceTree = SOURCE_ROOT; }; - C2BB2949CC0B387AB6879539 /* metafile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metafile.cpp; path = ../../src/osx/carbon/metafile.cpp; sourceTree = SOURCE_ROOT; }; - 8EB76F786D7F3FF286948D22 /* jcomapi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcomapi.c; path = ../../src/jpeg/jcomapi.c; sourceTree = SOURCE_ROOT; }; - 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_toolb.cpp; path = ../../src/xrc/xh_toolb.cpp; sourceTree = SOURCE_ROOT; }; - 69A6CAF721E53E83B4820DE6 /* pngwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwrite.c; path = ../../src/png/pngwrite.c; sourceTree = SOURCE_ROOT; }; - 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbndl.cpp; path = ../../src/common/bmpbndl.cpp; sourceTree = SOURCE_ROOT; }; - 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_sizer.cpp; path = ../../src/xrc/xh_sizer.cpp; sourceTree = SOURCE_ROOT; }; - 84A7A3B499503ECABC6A838F /* btncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = btncmn.cpp; path = ../../src/common/btncmn.cpp; sourceTree = SOURCE_ROOT; }; - 97FFB03FF6793506B246BAC6 /* platinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = platinfo.cpp; path = ../../src/common/platinfo.cpp; sourceTree = SOURCE_ROOT; }; - E968913A9A593B258BD8EACB /* msgout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgout.cpp; path = ../../src/common/msgout.cpp; sourceTree = SOURCE_ROOT; }; - FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexKVIrc.cxx; path = ../../src/stc/lexilla/lexers/LexKVIrc.cxx; sourceTree = SOURCE_ROOT; }; - B9B5BC858CCF3477895D2786 /* zstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zstream.cpp; path = ../../src/common/zstream.cpp; sourceTree = SOURCE_ROOT; }; - 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bttn.cpp; path = ../../src/xrc/xh_bttn.cpp; sourceTree = SOURCE_ROOT; }; - 810EB7316DF3344197C78EC0 /* jcmainct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmainct.c; path = ../../src/jpeg/jcmainct.c; sourceTree = SOURCE_ROOT; }; - 7AF8F8A78A5130DCB4D46729 /* LexCmake.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCmake.cxx; path = ../../src/stc/lexilla/lexers/LexCmake.cxx; sourceTree = SOURCE_ROOT; }; - F1A6F3936A0D31CBB58082BA /* jdcoefct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcoefct.c; path = ../../src/jpeg/jdcoefct.c; sourceTree = SOURCE_ROOT; }; - 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctint.c; path = ../../src/jpeg/jidctint.c; sourceTree = SOURCE_ROOT; }; + 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tokenzr.cpp; path = ../../src/common/tokenzr.cpp; sourceTree = SOURCE_ROOT; }; + DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socketiohandler.cpp; path = ../../src/common/socketiohandler.cpp; sourceTree = SOURCE_ROOT; }; + CF502E0E4D853CBBBEC885EF /* LexerSimple.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerSimple.cxx; path = ../../src/stc/lexilla/lexlib/LexerSimple.cxx; sourceTree = SOURCE_ROOT; }; + 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharClassify.cxx; path = ../../src/stc/scintilla/src/CharClassify.cxx; sourceTree = SOURCE_ROOT; }; + 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_xclass.c; path = ../../3rdparty/pcre/src/pcre2_xclass.c; sourceTree = SOURCE_ROOT; }; + 45860601270D318D93BEE1F3 /* LexMagik.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMagik.cxx; path = ../../src/stc/lexilla/lexers/LexMagik.cxx; sourceTree = SOURCE_ROOT; }; + 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checklstcmn.cpp; path = ../../src/common/checklstcmn.cpp; sourceTree = SOURCE_ROOT; }; + 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexProgress.cxx; path = ../../src/stc/lexilla/lexers/LexProgress.cxx; sourceTree = SOURCE_ROOT; }; + 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAPDL.cxx; path = ../../src/stc/lexilla/lexers/LexAPDL.cxx; sourceTree = SOURCE_ROOT; }; + 9FEB8204E530329FA085E5B8 /* strconv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strconv.cpp; path = ../../src/common/strconv.cpp; sourceTree = SOURCE_ROOT; }; + 25A81E9028793C109D868068 /* xh_timectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_timectrl.cpp; path = ../../src/xrc/xh_timectrl.cpp; sourceTree = SOURCE_ROOT; }; + D3F32C01D122301AB00D06A5 /* tbarbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbarbase.cpp; path = ../../src/common/tbarbase.cpp; sourceTree = SOURCE_ROOT; }; + CDF592CBE5193497A26EF978 /* DBCS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DBCS.cxx; path = ../../src/stc/scintilla/src/DBCS.cxx; sourceTree = SOURCE_ROOT; }; + 41AE72D4E8FF307F86A02F5F /* LexIndent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexIndent.cxx; path = ../../src/stc/lexilla/lexers/LexIndent.cxx; sourceTree = SOURCE_ROOT; }; + 6BC0A61629E635FAB4E09505 /* geometry.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = geometry.cpp; path = ../../src/common/geometry.cpp; sourceTree = SOURCE_ROOT; }; + 4867546E8B8D3C8683A23ED5 /* any.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = any.cpp; path = ../../src/common/any.cpp; sourceTree = SOURCE_ROOT; }; + E110907DDC13305E88B90086 /* dirctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirctrlcmn.cpp; path = ../../src/common/dirctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + 3716DA7B0C79360CBA26A71E /* tif_webp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_webp.c; path = ../../src/tiff/libtiff/tif_webp.c; sourceTree = SOURCE_ROOT; }; + 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numdlgg.cpp; path = ../../src/generic/numdlgg.cpp; sourceTree = SOURCE_ROOT; }; + AF76670146413EEFA005206A /* printps.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printps.cpp; path = ../../src/generic/printps.cpp; sourceTree = SOURCE_ROOT; }; + 358D0A3AC73F322EA732D020 /* pngrutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrutil.c; path = ../../src/png/pngrutil.c; sourceTree = SOURCE_ROOT; }; + 2C090A76B6F23E6481A27282 /* ipcbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ipcbase.cpp; path = ../../src/common/ipcbase.cpp; sourceTree = SOURCE_ROOT; }; + 06B4A895955B32258DCD62BF /* xh_dlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_dlg.cpp; path = ../../src/xrc/xh_dlg.cpp; sourceTree = SOURCE_ROOT; }; + EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_split.cpp; path = ../../src/xrc/xh_split.cpp; sourceTree = SOURCE_ROOT; }; + 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcher_fsevents.cpp; path = ../../src/osx/fswatcher_fsevents.cpp; sourceTree = SOURCE_ROOT; }; + 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = infobar.cpp; path = ../../src/generic/infobar.cpp; sourceTree = SOURCE_ROOT; }; + 7CF5C09D9A1230EEB42713E1 /* stattext_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattext_osx.cpp; path = ../../src/osx/stattext_osx.cpp; sourceTree = SOURCE_ROOT; }; + C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tarstrm.cpp; path = ../../src/common/tarstrm.cpp; sourceTree = SOURCE_ROOT; }; + 1AD9605C9385374C87FAC9BC /* LexECL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexECL.cxx; path = ../../src/stc/lexilla/lexers/LexECL.cxx; sourceTree = SOURCE_ROOT; }; + 93D07403FCA530D7A9FD2917 /* jfdctflt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctflt.c; path = ../../src/jpeg/jfdctflt.c; sourceTree = SOURCE_ROOT; }; + 62C46B0CE620348FBF3860A4 /* LexPLM.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPLM.cxx; path = ../../src/stc/lexilla/lexers/LexPLM.cxx; sourceTree = SOURCE_ROOT; }; + 7925E38823563BCDB5565DCF /* treebkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treebkg.cpp; path = ../../src/generic/treebkg.cpp; sourceTree = SOURCE_ROOT; }; + BC5C5DB466CD3D6FA6985B56 /* LexNimrod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNimrod.cxx; path = ../../src/stc/lexilla/lexers/LexNimrod.cxx; sourceTree = SOURCE_ROOT; }; + 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textctrl_osx.cpp; path = ../../src/osx/textctrl_osx.cpp; sourceTree = SOURCE_ROOT; }; + 91300EB871CC39ECBC430D48 /* pngget.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngget.c; path = ../../src/png/pngget.c; sourceTree = SOURCE_ROOT; }; + A87BF60D0D4A33E2AD2E1E25 /* uiactioncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uiactioncmn.cpp; path = ../../src/common/uiactioncmn.cpp; sourceTree = SOURCE_ROOT; }; + 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stopwatch.cpp; path = ../../src/common/stopwatch.cpp; sourceTree = SOURCE_ROOT; }; + 080597FC0436378E96EDA94B /* m_links.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_links.cpp; path = ../../src/html/m_links.cpp; sourceTree = SOURCE_ROOT; }; + 7D8BDFB06EE13E59ABB2A616 /* LexSorcus.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSorcus.cxx; path = ../../src/stc/lexilla/lexers/LexSorcus.cxx; sourceTree = SOURCE_ROOT; }; + B883F991159731DCB2717A21 /* CharacterSet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterSet.cxx; path = ../../src/stc/scintilla/src/CharacterSet.cxx; sourceTree = SOURCE_ROOT; }; + 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckipc.cpp; path = ../../src/common/sckipc.cpp; sourceTree = SOURCE_ROOT; }; + 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexOpal.cxx; path = ../../src/stc/lexilla/lexers/LexOpal.cxx; sourceTree = SOURCE_ROOT; }; + 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CallTip.cxx; path = ../../src/stc/scintilla/src/CallTip.cxx; sourceTree = SOURCE_ROOT; }; + DA2119A7C67D37B290C17989 /* statbmpg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbmpg.cpp; path = ../../src/generic/statbmpg.cpp; sourceTree = SOURCE_ROOT; }; + 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_stbmp.cpp; path = ../../src/xrc/xh_stbmp.cpp; sourceTree = SOURCE_ROOT; }; + 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tipwin.cpp; path = ../../src/generic/tipwin.cpp; sourceTree = SOURCE_ROOT; }; + 84758329F2163F00A9C005DF /* collpaneg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collpaneg.cpp; path = ../../src/generic/collpaneg.cpp; sourceTree = SOURCE_ROOT; }; + 684D92E552BE313CBE0A88AA /* valnum.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valnum.cpp; path = ../../src/common/valnum.cpp; sourceTree = SOURCE_ROOT; }; + C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextprint.cpp; path = ../../src/richtext/richtextprint.cpp; sourceTree = SOURCE_ROOT; }; + CC2E24773D853A77B9FEFA4C /* scrolbar.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = scrolbar.mm; path = ../../src/osx/iphone/scrolbar.mm; sourceTree = SOURCE_ROOT; }; + 7D0DCD17E717322EB6A7463F /* LexAsciidoc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsciidoc.cxx; path = ../../src/stc/lexilla/lexers/LexAsciidoc.cxx; sourceTree = SOURCE_ROOT; }; + 95186FEF3DEF39D8B1157BD5 /* stattext.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = stattext.mm; path = ../../src/osx/iphone/stattext.mm; sourceTree = SOURCE_ROOT; }; + A3BF8C9FF2D5314591329D0D /* toolbar.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = toolbar.mm; path = ../../src/osx/iphone/toolbar.mm; sourceTree = SOURCE_ROOT; }; 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_htmllbox.cpp; path = ../../src/xrc/xh_htmllbox.cpp; sourceTree = SOURCE_ROOT; }; - 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_match.c; path = ../../3rdparty/pcre/src/pcre2_match.c; sourceTree = SOURCE_ROOT; }; - 0401B7302088357BB6B7F16F /* timerimpl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timerimpl.cpp; path = ../../src/common/timerimpl.cpp; sourceTree = SOURCE_ROOT; }; - 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textcmn.cpp; path = ../../src/common/textcmn.cpp; sourceTree = SOURCE_ROOT; }; - 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCharacterSet.cxx; path = ../../src/stc/lexilla/lexlib/LexCharacterSet.cxx; sourceTree = SOURCE_ROOT; }; - DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unichar.cpp; path = ../../src/common/unichar.cpp; sourceTree = SOURCE_ROOT; }; - C55AF552EE6931E8BFF7281B /* xh_aui.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_aui.cpp; path = ../../src/xrc/xh_aui.cpp; sourceTree = SOURCE_ROOT; }; + AC62806DE67F33E18C386D4F /* LexDMAP.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMAP.cxx; path = ../../src/stc/lexilla/lexers/LexDMAP.cxx; sourceTree = SOURCE_ROOT; }; + 22D9626646773CED82449D5D /* persist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = persist.cpp; path = ../../src/common/persist.cpp; sourceTree = SOURCE_ROOT; }; + 0510EE0FB3FF36EF8670ABD1 /* cmndata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmndata.cpp; path = ../../src/common/cmndata.cpp; sourceTree = SOURCE_ROOT; }; + E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_scwin.cpp; path = ../../src/xrc/xh_scwin.cpp; sourceTree = SOURCE_ROOT; }; + 78D7866F95C73A28BB540606 /* LexBash.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBash.cxx; path = ../../src/stc/lexilla/lexers/LexBash.cxx; sourceTree = SOURCE_ROOT; }; + 137E01C362E134449BF966ED /* imagfill.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagfill.cpp; path = ../../src/common/imagfill.cpp; sourceTree = SOURCE_ROOT; }; + D30617843F33310089C1F77A /* richtextstyles.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextstyles.cpp; path = ../../src/richtext/richtextstyles.cpp; sourceTree = SOURCE_ROOT; }; + DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_aui.cpp; path = ../../src/ribbon/art_aui.cpp; sourceTree = SOURCE_ROOT; }; + 54BD19211DBD388AA0DEC7A1 /* stattextcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattextcmn.cpp; path = ../../src/common/stattextcmn.cpp; sourceTree = SOURCE_ROOT; }; + 0964797530CF3FE7B8DB6242 /* pngwtran.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwtran.c; path = ../../src/png/pngwtran.c; sourceTree = SOURCE_ROOT; }; + 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fdiounix.cpp; path = ../../src/unix/fdiounix.cpp; sourceTree = SOURCE_ROOT; }; + 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzwrite.c; path = ../../src/zlib/gzwrite.c; sourceTree = SOURCE_ROOT; }; + 5B9586328A1F3C4BA0390AA5 /* time.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = time.cpp; path = ../../src/common/time.cpp; sourceTree = SOURCE_ROOT; }; + 998D611109EC33A9A6A11C5A /* gdicmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdicmn.cpp; path = ../../src/common/gdicmn.cpp; sourceTree = SOURCE_ROOT; }; + 58E7C516E2453A269280A404 /* modalhook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modalhook.cpp; path = ../../src/common/modalhook.cpp; sourceTree = SOURCE_ROOT; }; + 50859F0155753FDCB8C5222A /* LexSTTXT.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSTTXT.cxx; path = ../../src/stc/lexilla/lexers/LexSTTXT.cxx; sourceTree = SOURCE_ROOT; }; + A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headerctrlcmn.cpp; path = ../../src/common/headerctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextstyledlg.cpp; path = ../../src/richtext/richtextstyledlg.cpp; sourceTree = SOURCE_ROOT; }; - 3F8836E29C5A370E80CE070E /* splash.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splash.cpp; path = ../../src/generic/splash.cpp; sourceTree = SOURCE_ROOT; }; - 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webviewarchivehandler.cpp; path = ../../src/common/webviewarchivehandler.cpp; sourceTree = SOURCE_ROOT; }; - F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbmp_osx.cpp; path = ../../src/osx/statbmp_osx.cpp; sourceTree = SOURCE_ROOT; }; + D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexOScript.cxx; path = ../../src/stc/lexilla/lexers/LexOScript.cxx; sourceTree = SOURCE_ROOT; }; + 16FE98EC26223BF0A78AB2EE /* gifdecod.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gifdecod.cpp; path = ../../src/common/gifdecod.cpp; sourceTree = SOURCE_ROOT; }; + 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = mediactrl.mm; path = ../../src/osx/cocoa/mediactrl.mm; sourceTree = SOURCE_ROOT; }; + A1A53EC3A3463EFDB7614E93 /* bitmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cpp; path = ../../src/osx/core/bitmap.cpp; sourceTree = SOURCE_ROOT; }; + 61548D0FE1353D7C846DD721 /* menuitem.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = menuitem.mm; path = ../../src/osx/iphone/menuitem.mm; sourceTree = SOURCE_ROOT; }; + A54B80C17F823CB5900AD2E8 /* framecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = framecmn.cpp; path = ../../src/common/framecmn.cpp; sourceTree = SOURCE_ROOT; }; + B63EBEE1A04537E7887E9FD0 /* ustring.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ustring.cpp; path = ../../src/common/ustring.cpp; sourceTree = SOURCE_ROOT; }; + 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_sizer.cpp; path = ../../src/xrc/xh_sizer.cpp; sourceTree = SOURCE_ROOT; }; + 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_radbt.cpp; path = ../../src/xrc/xh_radbt.cpp; sourceTree = SOURCE_ROOT; }; + 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = snglinst.cpp; path = ../../src/unix/snglinst.cpp; sourceTree = SOURCE_ROOT; }; + 998C092CB83639CFA3DC63B1 /* checkbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checkbox_osx.cpp; path = ../../src/osx/checkbox_osx.cpp; sourceTree = SOURCE_ROOT; }; + 789F45D14FF23E248FCFB5FA /* utils.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utils.mm; path = ../../src/osx/iphone/utils.mm; sourceTree = SOURCE_ROOT; }; + 2F41EDEB298538CC86FF6DC1 /* jcparam.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcparam.c; path = ../../src/jpeg/jcparam.c; sourceTree = SOURCE_ROOT; }; + B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_ribbon.cpp; path = ../../src/xrc/xh_ribbon.cpp; sourceTree = SOURCE_ROOT; }; + BF1C44D726E63B18A98006EC /* Decoration.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Decoration.cxx; path = ../../src/stc/scintilla/src/Decoration.cxx; sourceTree = SOURCE_ROOT; }; + DE8238DA30FF3FB984511250 /* sckaddr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckaddr.cpp; path = ../../src/common/sckaddr.cpp; sourceTree = SOURCE_ROOT; }; + 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = odcombo.cpp; path = ../../src/generic/odcombo.cpp; sourceTree = SOURCE_ROOT; }; + BC12B97F233B3B9494DA217F /* imagpnm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagpnm.cpp; path = ../../src/common/imagpnm.cpp; sourceTree = SOURCE_ROOT; }; + 99479DE14D8D3F7E9EB3E9A2 /* LexNull.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNull.cxx; path = ../../src/stc/lexilla/lexers/LexNull.cxx; sourceTree = SOURCE_ROOT; }; + 4B1A8E72B8E531B28C6DFD7A /* bmpbndl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = bmpbndl.mm; path = ../../src/osx/core/bmpbndl.mm; sourceTree = SOURCE_ROOT; }; + 4B16CCC86CD235CB8E8EC0AA /* LexBaan.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBaan.cxx; path = ../../src/stc/lexilla/lexers/LexBaan.cxx; sourceTree = SOURCE_ROOT; }; + 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbutt_osx.cpp; path = ../../src/osx/spinbutt_osx.cpp; sourceTree = SOURCE_ROOT; }; + 20B922D61CDB3CCEB59A5194 /* convauto.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = convauto.cpp; path = ../../src/common/convauto.cpp; sourceTree = SOURCE_ROOT; }; + 5ED2105A5A033E3384EBC4ED /* selstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selstore.cpp; path = ../../src/generic/selstore.cpp; sourceTree = SOURCE_ROOT; }; + E968913A9A593B258BD8EACB /* msgout.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgout.cpp; path = ../../src/common/msgout.cpp; sourceTree = SOURCE_ROOT; }; + 59ED0C057D8F388A89DC7177 /* page.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = page.cpp; path = ../../src/ribbon/page.cpp; sourceTree = SOURCE_ROOT; }; + A92B6033D8233DB1821F193B /* xmlparse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = xmlparse.c; path = ../../src/expat/expat/lib/xmlparse.c; sourceTree = SOURCE_ROOT; }; + 2F1B41B0F10C3DA38188C239 /* LexScriptol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexScriptol.cxx; path = ../../src/stc/lexilla/lexers/LexScriptol.cxx; sourceTree = SOURCE_ROOT; }; + 6BC93D1DE277395592610085 /* propdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propdlg.cpp; path = ../../src/generic/propdlg.cpp; sourceTree = SOURCE_ROOT; }; + 40586C8986443431A64EB066 /* LexLisp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLisp.cxx; path = ../../src/stc/lexilla/lexers/LexLisp.cxx; sourceTree = SOURCE_ROOT; }; + 7020ADB5D3E0375E875B418B /* LexA68k.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexA68k.cxx; path = ../../src/stc/lexilla/lexers/LexA68k.cxx; sourceTree = SOURCE_ROOT; }; 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UniConversion.cxx; path = ../../src/stc/scintilla/src/UniConversion.cxx; sourceTree = SOURCE_ROOT; }; - 9D6B0D32537D35069C7E053F /* inftrees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inftrees.c; path = ../../src/zlib/inftrees.c; sourceTree = SOURCE_ROOT; }; - 8734C52C7559310784396455 /* LexRuby.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRuby.cxx; path = ../../src/stc/lexilla/lexers/LexRuby.cxx; sourceTree = SOURCE_ROOT; }; + C466F32CCBD13DBC87285B3D /* helpdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdata.cpp; path = ../../src/html/helpdata.cpp; sourceTree = SOURCE_ROOT; }; + 5A756B733D093B09BE2098A6 /* filectrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filectrlcmn.cpp; path = ../../src/common/filectrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterCategory.cxx; path = ../../src/stc/scintilla/src/CharacterCategory.cxx; sourceTree = SOURCE_ROOT; }; + 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zipstrm.cpp; path = ../../src/common/zipstrm.cpp; sourceTree = SOURCE_ROOT; }; + 7FCA75FE592C3469AE351FBF /* winpars.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winpars.cpp; path = ../../src/html/winpars.cpp; sourceTree = SOURCE_ROOT; }; + 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextimagedlg.cpp; path = ../../src/richtext/richtextimagedlg.cpp; sourceTree = SOURCE_ROOT; }; + 0C7F18C26877336DBE638D75 /* LexCIL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCIL.cxx; path = ../../src/stc/lexilla/lexers/LexCIL.cxx; sourceTree = SOURCE_ROOT; }; + 4B3B8AD0120F3EA6BF5B0AE0 /* LexCaml.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCaml.cxx; path = ../../src/stc/lexilla/lexers/LexCaml.cxx; sourceTree = SOURCE_ROOT; }; + EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webrequest_urlsession.mm; path = ../../src/osx/webrequest_urlsession.mm; sourceTree = SOURCE_ROOT; }; + B4028ABB08C63AB59F5F240B /* m_list.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_list.cpp; path = ../../src/html/m_list.cpp; sourceTree = SOURCE_ROOT; }; + 38CEA4A3579331EF808B8363 /* fontdlgosx.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = fontdlgosx.mm; path = ../../src/osx/carbon/fontdlgosx.mm; sourceTree = SOURCE_ROOT; }; + 757B31FCCA1F381C95B30DF8 /* app.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cpp; path = ../../src/osx/carbon/app.cpp; sourceTree = SOURCE_ROOT; }; 17A8A93EF3C03546BE19F43B /* LexX12.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexX12.cxx; path = ../../src/stc/lexilla/lexers/LexX12.cxx; sourceTree = SOURCE_ROOT; }; - B17772732159304AA7312D72 /* dcclient.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcclient.cpp; path = ../../src/osx/carbon/dcclient.cpp; sourceTree = SOURCE_ROOT; }; + 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printmac.cpp; path = ../../src/osx/core/printmac.cpp; sourceTree = SOURCE_ROOT; }; + 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_propdlg.cpp; path = ../../src/xrc/xh_propdlg.cpp; sourceTree = SOURCE_ROOT; }; + AB8A747FB60239B9AB710264 /* clrpickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrpickercmn.cpp; path = ../../src/common/clrpickercmn.cpp; sourceTree = SOURCE_ROOT; }; + FFB767BD2C7235F293F45796 /* LexGui4Cli.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexGui4Cli.cxx; path = ../../src/stc/lexilla/lexers/LexGui4Cli.cxx; sourceTree = SOURCE_ROOT; }; + 994AF74DF2A13FF09A215853 /* intel_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = intel_init.c; path = ../../src/png/intel/intel_init.c; sourceTree = SOURCE_ROOT; }; + BACAA6CE4A0934459F26B27C /* graphicc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicc.cpp; path = ../../src/generic/graphicc.cpp; sourceTree = SOURCE_ROOT; }; + D7B3307E56B332769901E99F /* filehistorycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filehistorycmn.cpp; path = ../../src/common/filehistorycmn.cpp; sourceTree = SOURCE_ROOT; }; + C133B838193A35ABBB803151 /* ViewStyle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewStyle.cxx; path = ../../src/stc/scintilla/src/ViewStyle.cxx; sourceTree = SOURCE_ROOT; }; + A737317EDE0F3921B1412966 /* LexRegistry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRegistry.cxx; path = ../../src/stc/lexilla/lexers/LexRegistry.cxx; sourceTree = SOURCE_ROOT; }; + F52DCBC0442233738B39138E /* CaseFolder.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CaseFolder.cxx; path = ../../src/stc/scintilla/src/CaseFolder.cxx; sourceTree = SOURCE_ROOT; }; + F7E99B35A98D30818120B002 /* string.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = string.cpp; path = ../../src/common/string.cpp; sourceTree = SOURCE_ROOT; }; + 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listc.cpp; path = ../../src/xrc/xh_listc.cpp; sourceTree = SOURCE_ROOT; }; + 24DF23D67E693D999B875101 /* toolbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbkg.cpp; path = ../../src/generic/toolbkg.cpp; sourceTree = SOURCE_ROOT; }; + 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fdiodispatcher.cpp; path = ../../src/common/fdiodispatcher.cpp; sourceTree = SOURCE_ROOT; }; + A436B55DC44E3827A757A6D8 /* accelcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accelcmn.cpp; path = ../../src/common/accelcmn.cpp; sourceTree = SOURCE_ROOT; }; + 49612306912038DDBCABB4DE /* url.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = url.cpp; path = ../../src/common/url.cpp; sourceTree = SOURCE_ROOT; }; + 3E6F40F4740C3ED29D83E107 /* tif_version.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_version.c; path = ../../src/tiff/libtiff/tif_version.c; sourceTree = SOURCE_ROOT; }; + 67DCEEB6861731319C30817F /* cshelp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cshelp.cpp; path = ../../src/common/cshelp.cpp; sourceTree = SOURCE_ROOT; }; + 810EB7316DF3344197C78EC0 /* jcmainct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmainct.c; path = ../../src/jpeg/jcmainct.c; sourceTree = SOURCE_ROOT; }; + 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinctrlcmn.cpp; path = ../../src/common/spinctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + 1098499A317A3DEEA4D16D0D /* LexVHDL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVHDL.cxx; path = ../../src/stc/lexilla/lexers/LexVHDL.cxx; sourceTree = SOURCE_ROOT; }; + 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrolbar_osx.cpp; path = ../../src/osx/scrolbar_osx.cpp; sourceTree = SOURCE_ROOT; }; + 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_ojpeg.c; path = ../../src/tiff/libtiff/tif_ojpeg.c; sourceTree = SOURCE_ROOT; }; + A046179831F63824A67B509B /* preferencescmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preferencescmn.cpp; path = ../../src/common/preferencescmn.cpp; sourceTree = SOURCE_ROOT; }; + BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = progdlgg.cpp; path = ../../src/generic/progdlgg.cpp; sourceTree = SOURCE_ROOT; }; + 6BD8DAB407D231EFA5B2CAE5 /* numformatter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = numformatter.cpp; path = ../../src/common/numformatter.cpp; sourceTree = SOURCE_ROOT; }; + 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_gdctl.cpp; path = ../../src/xrc/xh_gdctl.cpp; sourceTree = SOURCE_ROOT; }; + E8EE191DC59F362AAED2CDC1 /* bmpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbase.cpp; path = ../../src/common/bmpbase.cpp; sourceTree = SOURCE_ROOT; }; + E0EBCDDF248638B58B01D9CC /* datetime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datetime.cpp; path = ../../src/common/datetime.cpp; sourceTree = SOURCE_ROOT; }; + C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = encconv.cpp; path = ../../src/common/encconv.cpp; sourceTree = SOURCE_ROOT; }; + 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = debugrpt.cpp; path = ../../src/common/debugrpt.cpp; sourceTree = SOURCE_ROOT; }; + 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combobox_osx.cpp; path = ../../src/osx/combobox_osx.cpp; sourceTree = SOURCE_ROOT; }; + 239D386E9D7D39C5A1E859C6 /* clipcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipcmn.cpp; path = ../../src/common/clipcmn.cpp; sourceTree = SOURCE_ROOT; }; + 3E3043D7BE9C33B59E900CCE /* jcmaster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmaster.c; path = ../../src/jpeg/jcmaster.c; sourceTree = SOURCE_ROOT; }; + 972BC9B2B0D438EFB12BCE1E /* rearrangectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rearrangectrl.cpp; path = ../../src/common/rearrangectrl.cpp; sourceTree = SOURCE_ROOT; }; + B5370A676AAC32419D7FDD87 /* inflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inflate.c; path = ../../src/zlib/inflate.c; sourceTree = SOURCE_ROOT; }; + 0080254545B9383ABDF2045C /* xh_odcombo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_odcombo.cpp; path = ../../src/xrc/xh_odcombo.cpp; sourceTree = SOURCE_ROOT; }; + 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemmgr.c; path = ../../src/jpeg/jmemmgr.c; sourceTree = SOURCE_ROOT; }; + 2C904B4BA8273355869812B2 /* clntdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clntdata.cpp; path = ../../src/common/clntdata.cpp; sourceTree = SOURCE_ROOT; }; 5F555177554E398286DBC6FB /* xh_stlin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_stlin.cpp; path = ../../src/xrc/xh_stlin.cpp; sourceTree = SOURCE_ROOT; }; - 12453E271F2A3AC9969E62A4 /* clipbrd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipbrd.cpp; path = ../../src/osx/carbon/clipbrd.cpp; sourceTree = SOURCE_ROOT; }; - 63867276260C3F4A980E83D8 /* rgncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rgncmn.cpp; path = ../../src/common/rgncmn.cpp; sourceTree = SOURCE_ROOT; }; - 9DD609EC0591359C9A576A43 /* printdlg_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdlg_osx.cpp; path = ../../src/osx/printdlg_osx.cpp; sourceTree = SOURCE_ROOT; }; - A5794CD687013AF8A20A691A /* headerctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headerctrlcmn.cpp; path = ../../src/common/headerctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - EA2520F427493A22A70A5C09 /* stackwalk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stackwalk.cpp; path = ../../src/unix/stackwalk.cpp; sourceTree = SOURCE_ROOT; }; + C0929D5DDFE337329FA8C6BC /* LexTCL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCL.cxx; path = ../../src/stc/lexilla/lexers/LexTCL.cxx; sourceTree = SOURCE_ROOT; }; + ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ffile.cpp; path = ../../src/common/ffile.cpp; sourceTree = SOURCE_ROOT; }; 9CC7C6FFD67233788EEDFC5E /* LexYAML.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexYAML.cxx; path = ../../src/stc/lexilla/lexers/LexYAML.cxx; sourceTree = SOURCE_ROOT; }; - 701B84EE7C043B539FF5195A /* textbuf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbuf.cpp; path = ../../src/common/textbuf.cpp; sourceTree = SOURCE_ROOT; }; - A46D50BEBF523B3F88831086 /* LexAsn1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsn1.cxx; path = ../../src/stc/lexilla/lexers/LexAsn1.cxx; sourceTree = SOURCE_ROOT; }; - 5BE1FB352696346BB642C044 /* secretstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = secretstore.cpp; path = ../../src/osx/core/secretstore.cpp; sourceTree = SOURCE_ROOT; }; - D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTxt2tags.cxx; path = ../../src/stc/lexilla/lexers/LexTxt2tags.cxx; sourceTree = SOURCE_ROOT; }; - 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_auitoolb.cpp; path = ../../src/xrc/xh_auitoolb.cpp; sourceTree = SOURCE_ROOT; }; - 358D0A3AC73F322EA732D020 /* pngrutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrutil.c; path = ../../src/png/pngrutil.c; sourceTree = SOURCE_ROOT; }; - B303230368143F37B2409DE6 /* LexKix.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexKix.cxx; path = ../../src/stc/lexilla/lexers/LexKix.cxx; sourceTree = SOURCE_ROOT; }; - CDF592CBE5193497A26EF978 /* DBCS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DBCS.cxx; path = ../../src/stc/scintilla/src/DBCS.cxx; sourceTree = SOURCE_ROOT; }; - C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabmdi.cpp; path = ../../src/aui/tabmdi.cpp; sourceTree = SOURCE_ROOT; }; - 2ACC8667173D3AB09F6214F4 /* sound.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cpp; path = ../../src/osx/core/sound.cpp; sourceTree = SOURCE_ROOT; }; - AF9EE701DD653E2299293E5F /* pngwio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwio.c; path = ../../src/png/pngwio.c; sourceTree = SOURCE_ROOT; }; - 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_chartables.c; path = ../../3rdparty/pcre/src/pcre2_chartables.c; sourceTree = SOURCE_ROOT; }; - A57CF60203F53459A03951A9 /* arrstr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arrstr.cpp; path = ../../src/common/arrstr.cpp; sourceTree = SOURCE_ROOT; }; - 02D2E8B5C89939CE90B99E2B /* archive.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = archive.cpp; path = ../../src/common/archive.cpp; sourceTree = SOURCE_ROOT; }; - 9E5C91072D533919A78D8ED2 /* LexTACL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTACL.cxx; path = ../../src/stc/lexilla/lexers/LexTACL.cxx; sourceTree = SOURCE_ROOT; }; - 8555204EBA8930809B732842 /* accesscmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accesscmn.cpp; path = ../../src/common/accesscmn.cpp; sourceTree = SOURCE_ROOT; }; - 9389DAF8B91030B7AAB029FF /* PerLine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PerLine.cxx; path = ../../src/stc/scintilla/src/PerLine.cxx; sourceTree = SOURCE_ROOT; }; - A54B80C17F823CB5900AD2E8 /* framecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = framecmn.cpp; path = ../../src/common/framecmn.cpp; sourceTree = SOURCE_ROOT; }; - E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = commandlinkbuttong.cpp; path = ../../src/generic/commandlinkbuttong.cpp; sourceTree = SOURCE_ROOT; }; + DE8701E1CF2B352B945C17E5 /* valtext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valtext.cpp; path = ../../src/common/valtext.cpp; sourceTree = SOURCE_ROOT; }; + 0903EE9B3793303285FF96E3 /* textfile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfile.cpp; path = ../../src/common/textfile.cpp; sourceTree = SOURCE_ROOT; }; + AECB45CEAC093CE4AB4B7E45 /* nonownedwnd.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = nonownedwnd.mm; path = ../../src/osx/iphone/nonownedwnd.mm; sourceTree = SOURCE_ROOT; }; + 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctint.c; path = ../../src/jpeg/jfdctint.c; sourceTree = SOURCE_ROOT; }; + 1B0533F88F3434609A54FB37 /* ctrlsub.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctrlsub.cpp; path = ../../src/common/ctrlsub.cpp; sourceTree = SOURCE_ROOT; }; + F84F0DB790A23D92A193D2B4 /* http.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = http.cpp; path = ../../src/common/http.cpp; sourceTree = SOURCE_ROOT; }; + 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtloop_cf.cpp; path = ../../src/osx/core/evtloop_cf.cpp; sourceTree = SOURCE_ROOT; }; + BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextsymboldlg.cpp; path = ../../src/richtext/richtextsymboldlg.cpp; sourceTree = SOURCE_ROOT; }; + DBFB65776C563C88BB7BF0D6 /* iconbndl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iconbndl.cpp; path = ../../src/common/iconbndl.cpp; sourceTree = SOURCE_ROOT; }; + 8D529E2668C23D94A7706C8A /* textdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdlgg.cpp; path = ../../src/generic/textdlgg.cpp; sourceTree = SOURCE_ROOT; }; + 271B4B77622B3411A7BF6634 /* dataobj.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dataobj.cpp; path = ../../src/osx/carbon/dataobj.cpp; sourceTree = SOURCE_ROOT; }; + 374E341C8703367686DEDE93 /* jmemnobs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jmemnobs.c; path = ../../src/jpeg/jmemnobs.c; sourceTree = SOURCE_ROOT; }; + F8AD617806563DE394C15922 /* LexFSharp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFSharp.cxx; path = ../../src/stc/lexilla/lexers/LexFSharp.cxx; sourceTree = SOURCE_ROOT; }; + 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fldlgcmn.cpp; path = ../../src/common/fldlgcmn.cpp; sourceTree = SOURCE_ROOT; }; + 5DBE56B153AA3AC8A4BBE77C /* cairo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cairo.cpp; path = ../../src/common/cairo.cpp; sourceTree = SOURCE_ROOT; }; + 9D6B0D32537D35069C7E053F /* inftrees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inftrees.c; path = ../../src/zlib/inftrees.c; sourceTree = SOURCE_ROOT; }; + 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtooltipg.cpp; path = ../../src/generic/richtooltipg.cpp; sourceTree = SOURCE_ROOT; }; 5F094B0B07DF33BCA6077BC0 /* fdrepdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fdrepdlg.cpp; path = ../../src/generic/fdrepdlg.cpp; sourceTree = SOURCE_ROOT; }; - 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lzmastream.cpp; path = ../../src/common/lzmastream.cpp; sourceTree = SOURCE_ROOT; }; - 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prntdlgg.cpp; path = ../../src/generic/prntdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 071FEABEA61E3B559A47A7DB /* statusbr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statusbr.cpp; path = ../../src/generic/statusbr.cpp; sourceTree = SOURCE_ROOT; }; - DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utilsunx.cpp; path = ../../src/unix/utilsunx.cpp; sourceTree = SOURCE_ROOT; }; - 58EFF24DE2E737CA8A164F5C /* LexEScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEScript.cxx; path = ../../src/stc/lexilla/lexers/LexEScript.cxx; sourceTree = SOURCE_ROOT; }; - 607EF0043E723B7B9BE101EA /* wxprintf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wxprintf.cpp; path = ../../src/common/wxprintf.cpp; sourceTree = SOURCE_ROOT; }; + 5F3D473DC5123EDAB767045C /* datavgen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datavgen.cpp; path = ../../src/generic/datavgen.cpp; sourceTree = SOURCE_ROOT; }; + 41D75DF4695B361DB700D51D /* PropSetSimple.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PropSetSimple.cxx; path = ../../src/stc/lexilla/lexlib/PropSetSimple.cxx; sourceTree = SOURCE_ROOT; }; + 81821049E39B32C6ABCF6820 /* helpdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdlg.cpp; path = ../../src/html/helpdlg.cpp; sourceTree = SOURCE_ROOT; }; + 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = msgdlg.mm; path = ../../src/osx/iphone/msgdlg.mm; sourceTree = SOURCE_ROOT; }; + B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_treebk.cpp; path = ../../src/xrc/xh_treebk.cpp; sourceTree = SOURCE_ROOT; }; + 83B878A16ABC396E8C03A15E /* dialog.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = dialog.mm; path = ../../src/osx/iphone/dialog.mm; sourceTree = SOURCE_ROOT; }; + 0116581B77DF3A5D889B8D17 /* dndcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndcmn.cpp; path = ../../src/common/dndcmn.cpp; sourceTree = SOURCE_ROOT; }; + 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_predict.c; path = ../../src/tiff/libtiff/tif_predict.c; sourceTree = SOURCE_ROOT; }; + A9B2316B32653DA0939A372D /* sound_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound_osx.cpp; path = ../../src/osx/sound_osx.cpp; sourceTree = SOURCE_ROOT; }; + C25521AF59B9324EB2809C73 /* XPM.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = XPM.cxx; path = ../../src/stc/scintilla/src/XPM.cxx; sourceTree = SOURCE_ROOT; }; + 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statlinecmn.cpp; path = ../../src/common/statlinecmn.cpp; sourceTree = SOURCE_ROOT; }; + ED19EF377E653F71B1876259 /* jdmaster.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmaster.c; path = ../../src/jpeg/jdmaster.c; sourceTree = SOURCE_ROOT; }; + 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtloopunix.cpp; path = ../../src/unix/evtloopunix.cpp; sourceTree = SOURCE_ROOT; }; + 6876262846EA3569B36D92E9 /* imagjpeg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagjpeg.cpp; path = ../../src/common/imagjpeg.cpp; sourceTree = SOURCE_ROOT; }; + D016F584D14C31E192DB3179 /* pcre2_maketables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_maketables.c; path = ../../3rdparty/pcre/src/pcre2_maketables.c; sourceTree = SOURCE_ROOT; }; + 8D2549709E0133C9A267E3A5 /* evtloop.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = evtloop.mm; path = ../../src/osx/iphone/evtloop.mm; sourceTree = SOURCE_ROOT; }; + F190B80DD28031A98E5BCA67 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + 5BE1FB352696346BB642C045 /* secretstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = secretstore.cpp; path = ../../src/osx/core/secretstore.cpp; sourceTree = SOURCE_ROOT; }; + C668C23A4E9A3A39BEED384E /* spinbtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbtncmn.cpp; path = ../../src/common/spinbtncmn.cpp; sourceTree = SOURCE_ROOT; }; + 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treectlg.cpp; path = ../../src/generic/treectlg.cpp; sourceTree = SOURCE_ROOT; }; + EF330EAACFA53877BE289896 /* matrix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = matrix.cpp; path = ../../src/common/matrix.cpp; sourceTree = SOURCE_ROOT; }; + 7195E665E0F233839B967FC9 /* timercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timercmn.cpp; path = ../../src/common/timercmn.cpp; sourceTree = SOURCE_ROOT; }; + 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_fontpicker.cpp; path = ../../src/xrc/xh_fontpicker.cpp; sourceTree = SOURCE_ROOT; }; + 5CB4781DF8C432C688F30CDD /* ftp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftp.cpp; path = ../../src/common/ftp.cpp; sourceTree = SOURCE_ROOT; }; + 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_jit_compile.c; path = ../../3rdparty/pcre/src/pcre2_jit_compile.c; sourceTree = SOURCE_ROOT; }; + 02D2E8B5C89939CE90B99E2B /* archive.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = archive.cpp; path = ../../src/common/archive.cpp; sourceTree = SOURCE_ROOT; }; + A208BFC0C8C43847A9620ADA /* pcre2_newline.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_newline.c; path = ../../3rdparty/pcre/src/pcre2_newline.c; sourceTree = SOURCE_ROOT; }; CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hyperlinkg.cpp; path = ../../src/generic/hyperlinkg.cpp; sourceTree = SOURCE_ROOT; }; - DE35DFD2063632AA8FE50C89 /* statline_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statline_osx.cpp; path = ../../src/osx/statline_osx.cpp; sourceTree = SOURCE_ROOT; }; - 0890779C662C35889A8C6C2E /* jdmerge.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmerge.c; path = ../../src/jpeg/jdmerge.c; sourceTree = SOURCE_ROOT; }; - E1B1FBB2BCC43BA7A45E9438 /* listctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listctrlcmn.cpp; path = ../../src/common/listctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - 95186FEF3DEF39D8B1157BD5 /* stattext.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = stattext.mm; path = ../../src/osx/iphone/stattext.mm; sourceTree = SOURCE_ROOT; }; - 7CF5C09D9A1230EEB42713E1 /* stattext_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattext_osx.cpp; path = ../../src/osx/stattext_osx.cpp; sourceTree = SOURCE_ROOT; }; - 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbmpcmn.cpp; path = ../../src/common/statbmpcmn.cpp; sourceTree = SOURCE_ROOT; }; - D30617843F33310089C1F77A /* richtextstyles.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextstyles.cpp; path = ../../src/richtext/richtextstyles.cpp; sourceTree = SOURCE_ROOT; }; - 7A24E9101688368296C21EBE /* gzclose.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzclose.c; path = ../../src/zlib/gzclose.c; sourceTree = SOURCE_ROOT; }; - 430739CB8B95336ABB372EC7 /* EditView.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EditView.cxx; path = ../../src/stc/scintilla/src/EditView.cxx; sourceTree = SOURCE_ROOT; }; + BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_fax3sm.c; path = ../../src/tiff/libtiff/tif_fax3sm.c; sourceTree = SOURCE_ROOT; }; + 40CE02524DD4385AB2C3DF95 /* socket.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socket.cpp; path = ../../src/common/socket.cpp; sourceTree = SOURCE_ROOT; }; + B890199A37723EFD86C0ADA5 /* quantize.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = quantize.cpp; path = ../../src/common/quantize.cpp; sourceTree = SOURCE_ROOT; }; + 5A562F1DA7EA3B909BBB1465 /* LexModula.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexModula.cxx; path = ../../src/stc/lexilla/lexers/LexModula.cxx; sourceTree = SOURCE_ROOT; }; + 5EA9E372A64B3B808A64B178 /* webrequest.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webrequest.cpp; path = ../../src/common/webrequest.cpp; sourceTree = SOURCE_ROOT; }; + 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcgraph.cpp; path = ../../src/common/dcgraph.cpp; sourceTree = SOURCE_ROOT; }; + EBED392D081335FA80523244 /* manager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = manager.cpp; path = ../../src/propgrid/manager.cpp; sourceTree = SOURCE_ROOT; }; + D41D102919B232EBB72A6F2D /* LexTxt2tags.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTxt2tags.cxx; path = ../../src/stc/lexilla/lexers/LexTxt2tags.cxx; sourceTree = SOURCE_ROOT; }; 58421C141C9E31C6A7A3C183 /* filefn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filefn.cpp; path = ../../src/common/filefn.cpp; sourceTree = SOURCE_ROOT; }; - 05310A868F0B35999C568681 /* xh_editlbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_editlbox.cpp; path = ../../src/xrc/xh_editlbox.cpp; sourceTree = SOURCE_ROOT; }; - 3C131F7BF8A83960ACB26242 /* jidctflt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctflt.c; path = ../../src/jpeg/jidctflt.c; sourceTree = SOURCE_ROOT; }; - 302A13BC64C238A297F4399F /* brush.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brush.cpp; path = ../../src/osx/brush.cpp; sourceTree = SOURCE_ROOT; }; - 86884BC843F6337EABF744BB /* jdapimin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapimin.c; path = ../../src/jpeg/jdapimin.c; sourceTree = SOURCE_ROOT; }; - B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexD.cxx; path = ../../src/stc/lexilla/lexers/LexD.cxx; sourceTree = SOURCE_ROOT; }; - A4A745D1821A32D591D76650 /* imagiff.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagiff.cpp; path = ../../src/common/imagiff.cpp; sourceTree = SOURCE_ROOT; }; - D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = markuptext.cpp; path = ../../src/generic/markuptext.cpp; sourceTree = SOURCE_ROOT; }; - 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmpcbox.cpp; path = ../../src/xrc/xh_bmpcbox.cpp; sourceTree = SOURCE_ROOT; }; + 8EFF4707641D3F20AB602ED6 /* jccolor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccolor.c; path = ../../src/jpeg/jccolor.c; sourceTree = SOURCE_ROOT; }; + AC5C60B3AF893BE98BCE6C1D /* wincmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wincmn.cpp; path = ../../src/common/wincmn.cpp; sourceTree = SOURCE_ROOT; }; + 9E2C8A7034343354841F7D8B /* toplevel_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toplevel_osx.cpp; path = ../../src/osx/toplevel_osx.cpp; sourceTree = SOURCE_ROOT; }; + AA90128E29A03CCCA30F4D35 /* vlbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vlbox.cpp; path = ../../src/generic/vlbox.cpp; sourceTree = SOURCE_ROOT; }; + A82C367B86F83981803D55DB /* LexASY.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexASY.cxx; path = ../../src/stc/lexilla/lexers/LexASY.cxx; sourceTree = SOURCE_ROOT; }; + BD709DEB71623974B9836D69 /* dockart.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockart.cpp; path = ../../src/aui/dockart.cpp; sourceTree = SOURCE_ROOT; }; + FBE8E520BA0530C6AD857434 /* fontpickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontpickerg.cpp; path = ../../src/generic/fontpickerg.cpp; sourceTree = SOURCE_ROOT; }; 45D7558DF5E03A2EB41883F0 /* pngwutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwutil.c; path = ../../src/png/pngwutil.c; sourceTree = SOURCE_ROOT; }; - 6831AA74AB5B38D5AA6946D7 /* settings.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = settings.mm; path = ../../src/osx/iphone/settings.mm; sourceTree = SOURCE_ROOT; }; - FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_valid_utf.c; path = ../../3rdparty/pcre/src/pcre2_valid_utf.c; sourceTree = SOURCE_ROOT; }; - 741578B590AF3F2CABE615EB /* timectrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timectrlg.cpp; path = ../../src/generic/timectrlg.cpp; sourceTree = SOURCE_ROOT; }; - 9F16A18CD9C23410B18592FD /* statbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbox_osx.cpp; path = ../../src/osx/statbox_osx.cpp; sourceTree = SOURCE_ROOT; }; - 31F4B9B03D52339B8F82C114 /* variant.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = variant.cpp; path = ../../src/common/variant.cpp; sourceTree = SOURCE_ROOT; }; - 1BC0322549563787A21CE8F1 /* LexNsis.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNsis.cxx; path = ../../src/stc/lexilla/lexers/LexNsis.cxx; sourceTree = SOURCE_ROOT; }; - 8EECA8EB93BF3C7A9CC827AD /* LexPOV.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPOV.cxx; path = ../../src/stc/lexilla/lexers/LexPOV.cxx; sourceTree = SOURCE_ROOT; }; - 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtooltipg.cpp; path = ../../src/generic/richtooltipg.cpp; sourceTree = SOURCE_ROOT; }; - 9794A709E3C036D79860CEC9 /* LexCoffeeScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCoffeeScript.cxx; path = ../../src/stc/lexilla/lexers/LexCoffeeScript.cxx; sourceTree = SOURCE_ROOT; }; - 45C65E309F3A39598C043657 /* xh_infobar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_infobar.cpp; path = ../../src/xrc/xh_infobar.cpp; sourceTree = SOURCE_ROOT; }; - 3551A51B4A493090B67CA216 /* LexSmalltalk.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSmalltalk.cxx; path = ../../src/stc/lexilla/lexers/LexSmalltalk.cxx; sourceTree = SOURCE_ROOT; }; - 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpwnd.cpp; path = ../../src/html/helpwnd.cpp; sourceTree = SOURCE_ROOT; }; - D0817D6A1AF83608B050EBC3 /* fontmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontmap.cpp; path = ../../src/common/fontmap.cpp; sourceTree = SOURCE_ROOT; }; - D784A32C094730FEAA391A9B /* sckstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckstrm.cpp; path = ../../src/common/sckstrm.cpp; sourceTree = SOURCE_ROOT; }; - 5F84098A475939BB9EE87E70 /* imagbmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagbmp.cpp; path = ../../src/common/imagbmp.cpp; sourceTree = SOURCE_ROOT; }; - E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMarkdown.cxx; path = ../../src/stc/lexilla/lexers/LexMarkdown.cxx; sourceTree = SOURCE_ROOT; }; - CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_tglbtn.cpp; path = ../../src/xrc/xh_tglbtn.cpp; sourceTree = SOURCE_ROOT; }; - F32C0D20638232CE8F43BF33 /* LexFlagship.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFlagship.cxx; path = ../../src/stc/lexilla/lexers/LexFlagship.cxx; sourceTree = SOURCE_ROOT; }; - D0CDADAF2D893E32A38351E4 /* tif_aux.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_aux.c; path = ../../src/tiff/libtiff/tif_aux.c; sourceTree = SOURCE_ROOT; }; - C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcher_kqueue.cpp; path = ../../src/unix/fswatcher_kqueue.cpp; sourceTree = SOURCE_ROOT; }; - 26632A254717372BAA4D514D /* framemanager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = framemanager.cpp; path = ../../src/aui/framemanager.cpp; sourceTree = SOURCE_ROOT; }; - E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = KeyMap.cxx; path = ../../src/stc/scintilla/src/KeyMap.cxx; sourceTree = SOURCE_ROOT; }; - A298576700C33F018616E7BD /* auibook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = auibook.cpp; path = ../../src/aui/auibook.cpp; sourceTree = SOURCE_ROOT; }; + 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = powercmn.cpp; path = ../../src/common/powercmn.cpp; sourceTree = SOURCE_ROOT; }; + C37866F41B0C31E295AA7FA6 /* wfstream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wfstream.cpp; path = ../../src/common/wfstream.cpp; sourceTree = SOURCE_ROOT; }; + F7440859617F3B47AF4D3817 /* valgen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valgen.cpp; path = ../../src/common/valgen.cpp; sourceTree = SOURCE_ROOT; }; + 9FDDE855D9F83E4891362EB4 /* bar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bar.cpp; path = ../../src/ribbon/bar.cpp; sourceTree = SOURCE_ROOT; }; + 701B84EE7C043B539FF5195A /* textbuf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textbuf.cpp; path = ../../src/common/textbuf.cpp; sourceTree = SOURCE_ROOT; }; + D272910EC35531E5B4D6E05B /* dynlib.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dynlib.cpp; path = ../../src/common/dynlib.cpp; sourceTree = SOURCE_ROOT; }; + B540E18F9C91381CA175BABB /* art_msw.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_msw.cpp; path = ../../src/ribbon/art_msw.cpp; sourceTree = SOURCE_ROOT; }; + 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listbkg.cpp; path = ../../src/generic/listbkg.cpp; sourceTree = SOURCE_ROOT; }; + DECC133490AD3494BAC7E992 /* DefaultLexer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultLexer.cxx; path = ../../src/stc/lexilla/lexlib/DefaultLexer.cxx; sourceTree = SOURCE_ROOT; }; + 238741BDA2C73E56899CCB04 /* dcprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcprint.cpp; path = ../../src/osx/carbon/dcprint.cpp; sourceTree = SOURCE_ROOT; }; + 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mimecmn.cpp; path = ../../src/common/mimecmn.cpp; sourceTree = SOURCE_ROOT; }; + 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueString.cxx; path = ../../src/stc/scintilla/src/UniqueString.cxx; sourceTree = SOURCE_ROOT; }; + DB170BF78EFE39D692E11985 /* fontdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdlgg.cpp; path = ../../src/generic/fontdlgg.cpp; sourceTree = SOURCE_ROOT; }; + 25C86D3D4839343BA1D8BDEE /* xti.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xti.cpp; path = ../../src/common/xti.cpp; sourceTree = SOURCE_ROOT; }; + 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlreshandler.cpp; path = ../../src/xrc/xmlreshandler.cpp; sourceTree = SOURCE_ROOT; }; + B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headercolcmn.cpp; path = ../../src/common/headercolcmn.cpp; sourceTree = SOURCE_ROOT; }; + 81B3DFBB73573FFDBD320334 /* datstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datstrm.cpp; path = ../../src/common/datstrm.cpp; sourceTree = SOURCE_ROOT; }; + 56653FACC7D13804A70556AD /* sckfile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckfile.cpp; path = ../../src/common/sckfile.cpp; sourceTree = SOURCE_ROOT; }; + 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_toolb.cpp; path = ../../src/xrc/xh_toolb.cpp; sourceTree = SOURCE_ROOT; }; + 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = aboutdlgg.cpp; path = ../../src/generic/aboutdlgg.cpp; sourceTree = SOURCE_ROOT; }; + 6AC666417602346EA583709E /* translation.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = translation.cpp; path = ../../src/common/translation.cpp; sourceTree = SOURCE_ROOT; }; + 66411D54BAD338498AC59401 /* xh_scrol.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_scrol.cpp; path = ../../src/xrc/xh_scrol.cpp; sourceTree = SOURCE_ROOT; }; + D215A0D67563350CB4EECB06 /* slider_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slider_osx.cpp; path = ../../src/osx/slider_osx.cpp; sourceTree = SOURCE_ROOT; }; + 373242CD08F330208A7CF438 /* fontenumcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontenumcmn.cpp; path = ../../src/common/fontenumcmn.cpp; sourceTree = SOURCE_ROOT; }; + 580AFC66F3003582B43043B1 /* animateg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animateg.cpp; path = ../../src/generic/animateg.cpp; sourceTree = SOURCE_ROOT; }; + 93B77251C0E0382D9A8E113D /* xh_grid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_grid.cpp; path = ../../src/xrc/xh_grid.cpp; sourceTree = SOURCE_ROOT; }; + 7D90D14874FD38079835AF0B /* editlbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = editlbox.cpp; path = ../../src/generic/editlbox.cpp; sourceTree = SOURCE_ROOT; }; + 5DE635F30F3935099AF1486C /* stattextg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattextg.cpp; path = ../../src/generic/stattextg.cpp; sourceTree = SOURCE_ROOT; }; + 98A7F0605AAC3D28A8C9F253 /* gauge.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = gauge.mm; path = ../../src/osx/iphone/gauge.mm; sourceTree = SOURCE_ROOT; }; + DF376BC55EA73F5FB7328142 /* helpext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpext.cpp; path = ../../src/generic/helpext.cpp; sourceTree = SOURCE_ROOT; }; + B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wakeuppipe.cpp; path = ../../src/unix/wakeuppipe.cpp; sourceTree = SOURCE_ROOT; }; + AFA85C8E426C361F9CA9D15F /* imagtiff.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagtiff.cpp; path = ../../src/common/imagtiff.cpp; sourceTree = SOURCE_ROOT; }; + F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_panel.cpp; path = ../../src/xrc/xh_panel.cpp; sourceTree = SOURCE_ROOT; }; + BAD4614CABC934D6AFF8D9CD /* gzread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzread.c; path = ../../src/zlib/gzread.c; sourceTree = SOURCE_ROOT; }; + 9389DAF8B91030B7AAB029FF /* PerLine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PerLine.cxx; path = ../../src/stc/scintilla/src/PerLine.cxx; sourceTree = SOURCE_ROOT; }; + E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirdlgg.cpp; path = ../../src/generic/dirdlgg.cpp; sourceTree = SOURCE_ROOT; }; + FADE850169F7347F83FE1499 /* xh_statbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_statbar.cpp; path = ../../src/xrc/xh_statbar.cpp; sourceTree = SOURCE_ROOT; }; + 6F23140777B733679D2FAAFC /* odcombocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = odcombocmn.cpp; path = ../../src/common/odcombocmn.cpp; sourceTree = SOURCE_ROOT; }; + 093B5233861B3F9B8C85762B /* xh_cald.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_cald.cpp; path = ../../src/xrc/xh_cald.cpp; sourceTree = SOURCE_ROOT; }; + 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbar_osx.cpp; path = ../../src/osx/toolbar_osx.cpp; sourceTree = SOURCE_ROOT; }; + B303230368143F37B2409DE6 /* LexKix.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexKix.cxx; path = ../../src/stc/lexilla/lexers/LexKix.cxx; sourceTree = SOURCE_ROOT; }; + CC2713393AB132AA8E337AE1 /* LexPython.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPython.cxx; path = ../../src/stc/lexilla/lexers/LexPython.cxx; sourceTree = SOURCE_ROOT; }; + 3DFD4F32E48039C3B9A66355 /* textcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textcmn.cpp; path = ../../src/common/textcmn.cpp; sourceTree = SOURCE_ROOT; }; + A87662D69F0432FC96701280 /* xh_notbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_notbk.cpp; path = ../../src/xrc/xh_notbk.cpp; sourceTree = SOURCE_ROOT; }; + 8F623368B9BA3D42811CE770 /* LexAccessor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAccessor.cxx; path = ../../src/stc/lexilla/lexlib/LexAccessor.cxx; sourceTree = SOURCE_ROOT; }; + 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cfstring.cpp; path = ../../src/osx/core/cfstring.cpp; sourceTree = SOURCE_ROOT; }; + 10ED6D770A5A349AA4EE9747 /* imagpcx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagpcx.cpp; path = ../../src/common/imagpcx.cpp; sourceTree = SOURCE_ROOT; }; + 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexJulia.cxx; path = ../../src/stc/lexilla/lexers/LexJulia.cxx; sourceTree = SOURCE_ROOT; }; + 242BF97B558634A79322052C /* prntbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prntbase.cpp; path = ../../src/common/prntbase.cpp; sourceTree = SOURCE_ROOT; }; + B181F564935730E89AB00D92 /* LexForth.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexForth.cxx; path = ../../src/stc/lexilla/lexers/LexForth.cxx; sourceTree = SOURCE_ROOT; }; + F43AF44465B335479752116D /* xh_radbx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_radbx.cpp; path = ../../src/xrc/xh_radbx.cpp; sourceTree = SOURCE_ROOT; }; + 3C654A08F74B3DBCA96CC2A9 /* sizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sizer.cpp; path = ../../src/common/sizer.cpp; sourceTree = SOURCE_ROOT; }; 02D9332D5C5632E981936E29 /* jquant2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jquant2.c; path = ../../src/jpeg/jquant2.c; sourceTree = SOURCE_ROOT; }; - D016F584D14C31E192DB3179 /* pcre2_maketables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_maketables.c; path = ../../3rdparty/pcre/src/pcre2_maketables.c; sourceTree = SOURCE_ROOT; }; - 400275BE019D3E5BA47988BE /* inffast.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inffast.c; path = ../../src/zlib/inffast.c; sourceTree = SOURCE_ROOT; }; - D5F9383D1CE931499F339D85 /* strconv_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strconv_cf.cpp; path = ../../src/osx/core/strconv_cf.cpp; sourceTree = SOURCE_ROOT; }; + 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexGAP.cxx; path = ../../src/stc/lexilla/lexers/LexGAP.cxx; sourceTree = SOURCE_ROOT; }; + CBD7B44E33373BCCB60FC11F /* combog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combog.cpp; path = ../../src/generic/combog.cpp; sourceTree = SOURCE_ROOT; }; + C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_auto_possess.c; path = ../../3rdparty/pcre/src/pcre2_auto_possess.c; sourceTree = SOURCE_ROOT; }; + 1EF103B09F02315282EC8F44 /* srchcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchcmn.cpp; path = ../../src/common/srchcmn.cpp; sourceTree = SOURCE_ROOT; }; + C55AF552EE6931E8BFF7281B /* xh_aui.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_aui.cpp; path = ../../src/xrc/xh_aui.cpp; sourceTree = SOURCE_ROOT; }; + 5612DBC4125B379DA2B28825 /* buttonbar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = buttonbar.cpp; path = ../../src/ribbon/buttonbar.cpp; sourceTree = SOURCE_ROOT; }; + 42185ECBB8873E4C9E50D759 /* LexEDIFACT.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEDIFACT.cxx; path = ../../src/stc/lexilla/lexers/LexEDIFACT.cxx; sourceTree = SOURCE_ROOT; }; + 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapistd.c; path = ../../src/jpeg/jdapistd.c; sourceTree = SOURCE_ROOT; }; + 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bttn.cpp; path = ../../src/xrc/xh_bttn.cpp; sourceTree = SOURCE_ROOT; }; + EA93D41B11683E758D456531 /* log.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = ../../src/common/log.cpp; sourceTree = SOURCE_ROOT; }; + 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbtncmn.cpp; path = ../../src/common/bmpbtncmn.cpp; sourceTree = SOURCE_ROOT; }; + 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgridpagestate.cpp; path = ../../src/propgrid/propgridpagestate.cpp; sourceTree = SOURCE_ROOT; }; + A0DCC5EF59143640BE13AD73 /* jidctfst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jidctfst.c; path = ../../src/jpeg/jidctfst.c; sourceTree = SOURCE_ROOT; }; + 9E5C91072D533919A78D8ED2 /* LexTACL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTACL.cxx; path = ../../src/stc/lexilla/lexers/LexTACL.cxx; sourceTree = SOURCE_ROOT; }; + B233180893DB3328AF4847DA /* notifmsgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notifmsgcmn.cpp; path = ../../src/common/notifmsgcmn.cpp; sourceTree = SOURCE_ROOT; }; + 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_pixarlog.c; path = ../../src/tiff/libtiff/tif_pixarlog.c; sourceTree = SOURCE_ROOT; }; + 24930711031D35288D28B04B /* choiccmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choiccmn.cpp; path = ../../src/common/choiccmn.cpp; sourceTree = SOURCE_ROOT; }; + DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utilsunx.cpp; path = ../../src/unix/utilsunx.cpp; sourceTree = SOURCE_ROOT; }; + 1FBC22BAD63D3A1AB78F5F82 /* pickerbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pickerbase.cpp; path = ../../src/common/pickerbase.cpp; sourceTree = SOURCE_ROOT; }; + 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_listbk.cpp; path = ../../src/xrc/xh_listbk.cpp; sourceTree = SOURCE_ROOT; }; + AC6359B01A7B35F6B710ACF8 /* uiaction_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uiaction_osx.cpp; path = ../../src/osx/uiaction_osx.cpp; sourceTree = SOURCE_ROOT; }; + 94EFE8810EC630A5BED293E2 /* LexCharacterSet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCharacterSet.cxx; path = ../../src/stc/lexilla/lexlib/LexCharacterSet.cxx; sourceTree = SOURCE_ROOT; }; + 01BA6D45FE4C381493EB4372 /* validate.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validate.cpp; path = ../../src/common/validate.cpp; sourceTree = SOURCE_ROOT; }; + 8EECA8EB93BF3C7A9CC827AD /* LexPOV.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPOV.cxx; path = ../../src/stc/lexilla/lexers/LexPOV.cxx; sourceTree = SOURCE_ROOT; }; + B14D6E7E15FD3C869E341198 /* LexLout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLout.cxx; path = ../../src/stc/lexilla/lexers/LexLout.cxx; sourceTree = SOURCE_ROOT; }; + 6718204F4700318E89EAC906 /* LexBullant.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBullant.cxx; path = ../../src/stc/lexilla/lexers/LexBullant.cxx; sourceTree = SOURCE_ROOT; }; + 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmpbt.cpp; path = ../../src/xrc/xh_bmpbt.cpp; sourceTree = SOURCE_ROOT; }; + FAC42945539F362D91D6F559 /* pcre2_substitute.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_substitute.c; path = ../../3rdparty/pcre/src/pcre2_substitute.c; sourceTree = SOURCE_ROOT; }; 7273A7E255323EB3B391D997 /* headerctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headerctrlg.cpp; path = ../../src/generic/headerctrlg.cpp; sourceTree = SOURCE_ROOT; }; - DE8701E1CF2B352B945C17E5 /* valtext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valtext.cpp; path = ../../src/common/valtext.cpp; sourceTree = SOURCE_ROOT; }; + 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_chartables.c; path = ../../3rdparty/pcre/src/pcre2_chartables.c; sourceTree = SOURCE_ROOT; }; + 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gallery.cpp; path = ../../src/ribbon/gallery.cpp; sourceTree = SOURCE_ROOT; }; + 05A4437E9697300390FDE14E /* auibar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = auibar.cpp; path = ../../src/aui/auibar.cpp; sourceTree = SOURCE_ROOT; }; + EC28591B403B32B7AFCC079D /* gauge_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gauge_osx.cpp; path = ../../src/osx/gauge_osx.cpp; sourceTree = SOURCE_ROOT; }; + D037EA567C253DEEA17E822B /* mousemanager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mousemanager.cpp; path = ../../src/common/mousemanager.cpp; sourceTree = SOURCE_ROOT; }; + 5FEECFD764E037288CE94FEB /* webview_webkit.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webview_webkit.mm; path = ../../src/osx/webview_webkit.mm; sourceTree = SOURCE_ROOT; }; + D753B4DE3C7B30A58CFC798D /* Lexilla.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Lexilla.cxx; path = ../../src/stc/lexilla/src/Lexilla.cxx; sourceTree = SOURCE_ROOT; }; + EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_chckl.cpp; path = ../../src/xrc/xh_chckl.cpp; sourceTree = SOURCE_ROOT; }; + 964578C24B9F390AAD08576E /* addremovectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = addremovectrl.cpp; path = ../../src/common/addremovectrl.cpp; sourceTree = SOURCE_ROOT; }; + E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = KeyMap.cxx; path = ../../src/stc/scintilla/src/KeyMap.cxx; sourceTree = SOURCE_ROOT; }; + 933D7637CAA43F6C99814BC5 /* arm_init.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = arm_init.c; path = ../../src/png/arm/arm_init.c; sourceTree = SOURCE_ROOT; }; + ECC9F5C21ACB31A0B24AEE35 /* docmdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docmdi.cpp; path = ../../src/common/docmdi.cpp; sourceTree = SOURCE_ROOT; }; + 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_codec.c; path = ../../src/tiff/libtiff/tif_codec.c; sourceTree = SOURCE_ROOT; }; + 1197B997B1D139C5AE4D198A /* dseldlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dseldlg.cpp; path = ../../src/common/dseldlg.cpp; sourceTree = SOURCE_ROOT; }; + 25E03E349FC13E4A9428B94E /* pcre2_error.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_error.c; path = ../../3rdparty/pcre/src/pcre2_error.c; sourceTree = SOURCE_ROOT; }; + 724927B0045F3CC0884878BB /* radiobtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobtncmn.cpp; path = ../../src/common/radiobtncmn.cpp; sourceTree = SOURCE_ROOT; }; + 832BBBFE664736D5978420C6 /* fmapbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmapbase.cpp; path = ../../src/common/fmapbase.cpp; sourceTree = SOURCE_ROOT; }; + 343D4FDD5CC030618EF24729 /* dcmemory.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcmemory.cpp; path = ../../src/osx/core/dcmemory.cpp; sourceTree = SOURCE_ROOT; }; + 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colourdata.cpp; path = ../../src/common/colourdata.cpp; sourceTree = SOURCE_ROOT; }; + 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpwnd.cpp; path = ../../src/html/helpwnd.cpp; sourceTree = SOURCE_ROOT; }; DCBD877191233EE9984112D2 /* InList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = InList.cxx; path = ../../src/stc/lexilla/lexlib/InList.cxx; sourceTree = SOURCE_ROOT; }; - 4592464D4868329897F3864D /* LexSpice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpice.cxx; path = ../../src/stc/lexilla/lexers/LexSpice.cxx; sourceTree = SOURCE_ROOT; }; - 35007225BB683683AA7C5E48 /* glcanvas.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = glcanvas.mm; path = ../../src/osx/iphone/glcanvas.mm; sourceTree = SOURCE_ROOT; }; - 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CharClassify.cxx; path = ../../src/stc/scintilla/src/CharClassify.cxx; sourceTree = SOURCE_ROOT; }; - 95E2B80B2D7033808504DA8D /* utilsexc_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utilsexc_cf.cpp; path = ../../src/osx/core/utilsexc_cf.cpp; sourceTree = SOURCE_ROOT; }; + B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrapsizer.cpp; path = ../../src/common/wrapsizer.cpp; sourceTree = SOURCE_ROOT; }; + 4549845C0751356A907C23E0 /* jdtrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdtrans.c; path = ../../src/jpeg/jdtrans.c; sourceTree = SOURCE_ROOT; }; + 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filtall.cpp; path = ../../src/common/filtall.cpp; sourceTree = SOURCE_ROOT; }; + 607EF0043E723B7B9BE101EA /* wxprintf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wxprintf.cpp; path = ../../src/common/wxprintf.cpp; sourceTree = SOURCE_ROOT; }; + 7013DB195D023C31ADE68546 /* crc32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = crc32.c; path = ../../src/zlib/crc32.c; sourceTree = SOURCE_ROOT; }; + 12EFC31E6FB631998E44B49C /* statbmpcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbmpcmn.cpp; path = ../../src/common/statbmpcmn.cpp; sourceTree = SOURCE_ROOT; }; + 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiocmn.cpp; path = ../../src/common/radiocmn.cpp; sourceTree = SOURCE_ROOT; }; + DE0102314288305D830B9EFE /* LexProps.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexProps.cxx; path = ../../src/stc/lexilla/lexers/LexProps.cxx; sourceTree = SOURCE_ROOT; }; + 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlrsall.cpp; path = ../../src/xrc/xmlrsall.cpp; sourceTree = SOURCE_ROOT; }; + 06BB94FBD5E23872BE5AB4A3 /* combocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combocmn.cpp; path = ../../src/common/combocmn.cpp; sourceTree = SOURCE_ROOT; }; + 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpcboxg.cpp; path = ../../src/generic/bmpcboxg.cpp; sourceTree = SOURCE_ROOT; }; + B4DEA098A05736AE94F01926 /* libwx_osx_iphone.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwx_osx_iphone.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_animatctrl.cpp; path = ../../src/xrc/xh_animatctrl.cpp; sourceTree = SOURCE_ROOT; }; + A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animatecmn.cpp; path = ../../src/common/animatecmn.cpp; sourceTree = SOURCE_ROOT; }; + 05310A868F0B35999C568681 /* xh_editlbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_editlbox.cpp; path = ../../src/xrc/xh_editlbox.cpp; sourceTree = SOURCE_ROOT; }; + EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_wizrd.cpp; path = ../../src/xrc/xh_wizrd.cpp; sourceTree = SOURCE_ROOT; }; + EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dircmn.cpp; path = ../../src/common/dircmn.cpp; sourceTree = SOURCE_ROOT; }; + 7FE0455EBDC63D82B2D88587 /* jcprepct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcprepct.c; path = ../../src/jpeg/jcprepct.c; sourceTree = SOURCE_ROOT; }; + FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_valid_utf.c; path = ../../3rdparty/pcre/src/pcre2_valid_utf.c; sourceTree = SOURCE_ROOT; }; + 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jquant1.c; path = ../../src/jpeg/jquant1.c; sourceTree = SOURCE_ROOT; }; + B9DFC4083C6A38CABE4BB4E3 /* LexD.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexD.cxx; path = ../../src/stc/lexilla/lexers/LexD.cxx; sourceTree = SOURCE_ROOT; }; + DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcsvg.cpp; path = ../../src/common/dcsvg.cpp; sourceTree = SOURCE_ROOT; }; + E78CBF86AAE637CB982B2EC0 /* LexMarkdown.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMarkdown.cxx; path = ../../src/stc/lexilla/lexers/LexMarkdown.cxx; sourceTree = SOURCE_ROOT; }; + 97FFB03FF6793506B246BAC6 /* platinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = platinfo.cpp; path = ../../src/common/platinfo.cpp; sourceTree = SOURCE_ROOT; }; + 0BF1F491B8A8376E8E2E8182 /* cursor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cursor.cpp; path = ../../src/osx/carbon/cursor.cpp; sourceTree = SOURCE_ROOT; }; + 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_richtext.cpp; path = ../../src/xrc/xh_richtext.cpp; sourceTree = SOURCE_ROOT; }; + 5FF661188B563D27A11F5716 /* fontutil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontutil.cpp; path = ../../src/osx/fontutil.cpp; sourceTree = SOURCE_ROOT; }; + 889FFA9573A835F280A21CB4 /* xh_html.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_html.cpp; path = ../../src/xrc/xh_html.cpp; sourceTree = SOURCE_ROOT; }; + 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtooltipcmn.cpp; path = ../../src/common/richtooltipcmn.cpp; sourceTree = SOURCE_ROOT; }; + 7EB95BCFA255323183A996C9 /* m_style.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_style.cpp; path = ../../src/html/m_style.cpp; sourceTree = SOURCE_ROOT; }; + 68B81FBDA49D3C1991B6356A /* jdcolor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcolor.c; path = ../../src/jpeg/jdcolor.c; sourceTree = SOURCE_ROOT; }; + B35DA585CFDD32468868E892 /* process.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cpp; path = ../../src/common/process.cpp; sourceTree = SOURCE_ROOT; }; + 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lzmastream.cpp; path = ../../src/common/lzmastream.cpp; sourceTree = SOURCE_ROOT; }; + 66C21CA37BF63893887FD91B /* menu_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menu_osx.cpp; path = ../../src/osx/menu_osx.cpp; sourceTree = SOURCE_ROOT; }; + 64B25B87203E3464BCDD277D /* tif_read.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_read.c; path = ../../src/tiff/libtiff/tif_read.c; sourceTree = SOURCE_ROOT; }; + BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filename.cpp; path = ../../src/common/filename.cpp; sourceTree = SOURCE_ROOT; }; + 3B98123FD57731139044B064 /* tif_zstd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_zstd.c; path = ../../src/tiff/libtiff/tif_zstd.c; sourceTree = SOURCE_ROOT; }; + 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_match_data.c; path = ../../3rdparty/pcre/src/pcre2_match_data.c; sourceTree = SOURCE_ROOT; }; + FD5F11A3646F397BA62EB037 /* htmllbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmllbox.cpp; path = ../../src/generic/htmllbox.cpp; sourceTree = SOURCE_ROOT; }; + 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_ucd.c; path = ../../3rdparty/pcre/src/pcre2_ucd.c; sourceTree = SOURCE_ROOT; }; + 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctfst.c; path = ../../src/jpeg/jfdctfst.c; sourceTree = SOURCE_ROOT; }; + E1F2E9C9052D3E53BBD17DE3 /* statbrma.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbrma.cpp; path = ../../src/osx/carbon/statbrma.cpp; sourceTree = SOURCE_ROOT; }; + DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerModule.cxx; path = ../../src/stc/lexilla/lexlib/LexerModule.cxx; sourceTree = SOURCE_ROOT; }; + 4048A3523EC03409BD899BEF /* xtixml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xtixml.cpp; path = ../../src/common/xtixml.cpp; sourceTree = SOURCE_ROOT; }; + 274A156457C63EC5801029C2 /* CaseConvert.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CaseConvert.cxx; path = ../../src/stc/scintilla/src/CaseConvert.cxx; sourceTree = SOURCE_ROOT; }; + 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_filectrl.cpp; path = ../../src/xrc/xh_filectrl.cpp; sourceTree = SOURCE_ROOT; }; + D46A36564C78312CAC538E93 /* srchctlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchctlg.cpp; path = ../../src/generic/srchctlg.cpp; sourceTree = SOURCE_ROOT; }; + 693F731B7D1730A79485F9EC /* minifram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = minifram.cpp; path = ../../src/osx/minifram.cpp; sourceTree = SOURCE_ROOT; }; + A284E855892F3A9E9E19E854 /* LexTADS3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTADS3.cxx; path = ../../src/stc/lexilla/lexers/LexTADS3.cxx; sourceTree = SOURCE_ROOT; }; + 3F8836E29C5A370E80CE070E /* splash.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splash.cpp; path = ../../src/generic/splash.cpp; sourceTree = SOURCE_ROOT; }; + BDADEB1DA6433E52972C8934 /* pcre2_compile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_compile.c; path = ../../3rdparty/pcre/src/pcre2_compile.c; sourceTree = SOURCE_ROOT; }; + 032A38738B58394E8617617B /* tif_dirinfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirinfo.c; path = ../../src/tiff/libtiff/tif_dirinfo.c; sourceTree = SOURCE_ROOT; }; + 0851C46057CE3C37991B9E34 /* LexBibTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBibTeX.cxx; path = ../../src/stc/lexilla/lexers/LexBibTeX.cxx; sourceTree = SOURCE_ROOT; }; + D784A32C094730FEAA391A9B /* sckstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckstrm.cpp; path = ../../src/common/sckstrm.cpp; sourceTree = SOURCE_ROOT; }; + F6EA240B3DB93D398A990FAD /* tif_dirread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirread.c; path = ../../src/tiff/libtiff/tif_dirread.c; sourceTree = SOURCE_ROOT; }; + 108517BCD39230E7A89BC943 /* jerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jerror.c; path = ../../src/jpeg/jerror.c; sourceTree = SOURCE_ROOT; }; + 10EADF7E7DC032CA8522C1F8 /* LexHaskell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHaskell.cxx; path = ../../src/stc/lexilla/lexers/LexHaskell.cxx; sourceTree = SOURCE_ROOT; }; + F1A6F3936A0D31CBB58082BA /* jdcoefct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdcoefct.c; path = ../../src/jpeg/jdcoefct.c; sourceTree = SOURCE_ROOT; }; + 0DA80913C0E33144A42BD30F /* webview.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webview.cpp; path = ../../src/common/webview.cpp; sourceTree = SOURCE_ROOT; }; + 4466008861AA37CFB13A46EF /* xh_vlistbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_vlistbox.cpp; path = ../../src/xrc/xh_vlistbox.cpp; sourceTree = SOURCE_ROOT; }; + 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = event.cpp; path = ../../src/common/event.cpp; sourceTree = SOURCE_ROOT; }; + 4FE0B33481283D3493613B0F /* config.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = config.cpp; path = ../../src/common/config.cpp; sourceTree = SOURCE_ROOT; }; 72D7AF345E563587941BD868 /* longlong.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = longlong.cpp; path = ../../src/common/longlong.cpp; sourceTree = SOURCE_ROOT; }; - 2ED0C0702D2734D9B08FC31D /* utils_base.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utils_base.mm; path = ../../src/osx/cocoa/utils_base.mm; sourceTree = SOURCE_ROOT; }; - 25C86D3D4839343BA1D8BDEE /* xti.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xti.cpp; path = ../../src/common/xti.cpp; sourceTree = SOURCE_ROOT; }; - 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ScintillaWX.cpp; path = ../../src/stc/ScintillaWX.cpp; sourceTree = SOURCE_ROOT; }; - 1A0650754DC2358CA5933B28 /* pngerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngerror.c; path = ../../src/png/pngerror.c; sourceTree = SOURCE_ROOT; }; - 8C78A1539462370CAA429508 /* accel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accel.cpp; path = ../../src/osx/accel.cpp; sourceTree = SOURCE_ROOT; }; - DE8238DA30FF3FB984511250 /* sckaddr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sckaddr.cpp; path = ../../src/common/sckaddr.cpp; sourceTree = SOURCE_ROOT; }; - 9FDDE855D9F83E4891362EB4 /* bar.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bar.cpp; path = ../../src/ribbon/bar.cpp; sourceTree = SOURCE_ROOT; }; - C20E46A504113C899B9DD9B7 /* props.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = props.cpp; path = ../../src/propgrid/props.cpp; sourceTree = SOURCE_ROOT; }; - 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tipwin.cpp; path = ../../src/generic/tipwin.cpp; sourceTree = SOURCE_ROOT; }; - 2C6C4F5468743265A02D656C /* htmlfilt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlfilt.cpp; path = ../../src/html/htmlfilt.cpp; sourceTree = SOURCE_ROOT; }; - C125FA3837C631A9BE0ED5E7 /* splitter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splitter.cpp; path = ../../src/generic/splitter.cpp; sourceTree = SOURCE_ROOT; }; + 7EE2459D69BA35838C274488 /* LexCLW.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCLW.cxx; path = ../../src/stc/lexilla/lexers/LexCLW.cxx; sourceTree = SOURCE_ROOT; }; + 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_getimage.c; path = ../../src/tiff/libtiff/tif_getimage.c; sourceTree = SOURCE_ROOT; }; + 22D6E6D9712338C6906CFAA4 /* dcscreen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcscreen.cpp; path = ../../src/osx/carbon/dcscreen.cpp; sourceTree = SOURCE_ROOT; }; + CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_tglbtn.cpp; path = ../../src/xrc/xh_tglbtn.cpp; sourceTree = SOURCE_ROOT; }; 2E24C6F2A04E30EB95598305 /* chm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = chm.cpp; path = ../../src/html/chm.cpp; sourceTree = SOURCE_ROOT; }; - 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fdiounix.cpp; path = ../../src/unix/fdiounix.cpp; sourceTree = SOURCE_ROOT; }; - 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = filter_neon_intrinsics.c; path = ../../src/png/arm/filter_neon_intrinsics.c; sourceTree = SOURCE_ROOT; }; - 4BA819575B5136B09FA8FEB1 /* pen.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pen.cpp; path = ../../src/osx/pen.cpp; sourceTree = SOURCE_ROOT; }; - 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_pattern_info.c; path = ../../3rdparty/pcre/src/pcre2_pattern_info.c; sourceTree = SOURCE_ROOT; }; - DA2119A7C67D37B290C17989 /* statbmpg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statbmpg.cpp; path = ../../src/generic/statbmpg.cpp; sourceTree = SOURCE_ROOT; }; + 4FDE5A962FA234FA83A605AD /* Indicator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Indicator.cxx; path = ../../src/stc/scintilla/src/Indicator.cxx; sourceTree = SOURCE_ROOT; }; + 7BA6ADD758693BD180D3275B /* treebase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treebase.cpp; path = ../../src/common/treebase.cpp; sourceTree = SOURCE_ROOT; }; + 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbndl.cpp; path = ../../src/common/bmpbndl.cpp; sourceTree = SOURCE_ROOT; }; + 8744F2C80ECF375999195935 /* LexPB.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPB.cxx; path = ../../src/stc/lexilla/lexers/LexPB.cxx; sourceTree = SOURCE_ROOT; }; + BD88495AF72531A28D2201D0 /* tif_tile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_tile.c; path = ../../src/tiff/libtiff/tif_tile.c; sourceTree = SOURCE_ROOT; }; + 0EEAD9C3E180305D8899441E /* strvararg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strvararg.cpp; path = ../../src/common/strvararg.cpp; sourceTree = SOURCE_ROOT; }; + 2334539088B036BEAB230D1C /* filectrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filectrlg.cpp; path = ../../src/generic/filectrlg.cpp; sourceTree = SOURCE_ROOT; }; + 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imaglist.cpp; path = ../../src/generic/imaglist.cpp; sourceTree = SOURCE_ROOT; }; + C3784C240C2F330683494926 /* laywin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = laywin.cpp; path = ../../src/generic/laywin.cpp; sourceTree = SOURCE_ROOT; }; + A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgdlgg.cpp; path = ../../src/generic/msgdlgg.cpp; sourceTree = SOURCE_ROOT; }; + 69A6CAF721E53E83B4820DE6 /* pngwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngwrite.c; path = ../../src/png/pngwrite.c; sourceTree = SOURCE_ROOT; }; + 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_simplebook.cpp; path = ../../src/xrc/xh_simplebook.cpp; sourceTree = SOURCE_ROOT; }; + 0401B7302088357BB6B7F16F /* timerimpl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timerimpl.cpp; path = ../../src/common/timerimpl.cpp; sourceTree = SOURCE_ROOT; }; + F175D6E8E5723FC797701275 /* menucmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menucmn.cpp; path = ../../src/common/menucmn.cpp; sourceTree = SOURCE_ROOT; }; + FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTeX.cxx; path = ../../src/stc/lexilla/lexers/LexTeX.cxx; sourceTree = SOURCE_ROOT; }; + 400275BE019D3E5BA47988BE /* inffast.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inffast.c; path = ../../src/zlib/inffast.c; sourceTree = SOURCE_ROOT; }; + 377056CEB1FC3EEB8526E7A6 /* gdiobj.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdiobj.cpp; path = ../../src/osx/carbon/gdiobj.cpp; sourceTree = SOURCE_ROOT; }; + EED7C691150139EFA35E8EBD /* utils_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utils_osx.cpp; path = ../../src/osx/utils_osx.cpp; sourceTree = SOURCE_ROOT; }; + A46D50BEBF523B3F88831086 /* LexAsn1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsn1.cxx; path = ../../src/stc/lexilla/lexers/LexAsn1.cxx; sourceTree = SOURCE_ROOT; }; + D9016355F66D3125919E017D /* listctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listctrl.cpp; path = ../../src/generic/listctrl.cpp; sourceTree = SOURCE_ROOT; }; + D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPerl.cxx; path = ../../src/stc/lexilla/lexers/LexPerl.cxx; sourceTree = SOURCE_ROOT; }; BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_dirpicker.cpp; path = ../../src/xrc/xh_dirpicker.cpp; sourceTree = SOURCE_ROOT; }; - 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextbuffer.cpp; path = ../../src/richtext/richtextbuffer.cpp; sourceTree = SOURCE_ROOT; }; - B63EBEE1A04537E7887E9FD0 /* ustring.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ustring.cpp; path = ../../src/common/ustring.cpp; sourceTree = SOURCE_ROOT; }; - ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ffile.cpp; path = ../../src/common/ffile.cpp; sourceTree = SOURCE_ROOT; }; - 2718D06670953933B897B0D8 /* webview_chromium.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webview_chromium.cpp; path = ../../src/common/webview_chromium.cpp; sourceTree = SOURCE_ROOT; }; - F190B80DD28031A98E5BCA67 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AutoComplete.cxx; path = ../../src/stc/scintilla/src/AutoComplete.cxx; sourceTree = SOURCE_ROOT; }; - CBD7B44E33373BCCB60FC11F /* combog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combog.cpp; path = ../../src/generic/combog.cpp; sourceTree = SOURCE_ROOT; }; - 5CC5C13F8AA1387BADB7E60C /* printmac.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printmac.cpp; path = ../../src/osx/core/printmac.cpp; sourceTree = SOURCE_ROOT; }; - 684D92E552BE313CBE0A88AA /* valnum.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valnum.cpp; path = ../../src/common/valnum.cpp; sourceTree = SOURCE_ROOT; }; - 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_pixarlog.c; path = ../../src/tiff/libtiff/tif_pixarlog.c; sourceTree = SOURCE_ROOT; }; - 5279968877003A8BB8279765 /* webrequest_curl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webrequest_curl.cpp; path = ../../src/common/webrequest_curl.cpp; sourceTree = SOURCE_ROOT; }; - BFF5A87D79EF3BEFAC3C0C20 /* LexAVE.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVE.cxx; path = ../../src/stc/lexilla/lexers/LexAVE.cxx; sourceTree = SOURCE_ROOT; }; - 7255468B6D5F3D8697994A53 /* LexR.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexR.cxx; path = ../../src/stc/lexilla/lexers/LexR.cxx; sourceTree = SOURCE_ROOT; }; - C513377E9E303F778BA9D7ED /* arcfind.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arcfind.cpp; path = ../../src/common/arcfind.cpp; sourceTree = SOURCE_ROOT; }; - 78D7866F95C73A28BB540606 /* LexBash.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBash.cxx; path = ../../src/stc/lexilla/lexers/LexBash.cxx; sourceTree = SOURCE_ROOT; }; - B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_treebk.cpp; path = ../../src/xrc/xh_treebk.cpp; sourceTree = SOURCE_ROOT; }; - D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preferencesg.cpp; path = ../../src/generic/preferencesg.cpp; sourceTree = SOURCE_ROOT; }; - E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_data.cpp; path = ../../src/common/fs_data.cpp; sourceTree = SOURCE_ROOT; }; - 58E1F571B01F34D4AB70CA18 /* property.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = property.cpp; path = ../../src/propgrid/property.cpp; sourceTree = SOURCE_ROOT; }; - 52FE1599218730CC99A3F801 /* m_dflist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_dflist.cpp; path = ../../src/html/m_dflist.cpp; sourceTree = SOURCE_ROOT; }; - 5BE1FB352696346BB642C045 /* secretstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = secretstore.cpp; path = ../../src/common/secretstore.cpp; sourceTree = SOURCE_ROOT; }; - 8B2FCD2CFB5A3B8A908F5C23 /* LexDataflex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDataflex.cxx; path = ../../src/stc/lexilla/lexers/LexDataflex.cxx; sourceTree = SOURCE_ROOT; }; - 30FD1048328234E59D319863 /* tif_fax3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_fax3.c; path = ../../src/tiff/libtiff/tif_fax3.c; sourceTree = SOURCE_ROOT; }; - 777385D10CCC350C90F02824 /* textentry_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textentry_osx.cpp; path = ../../src/osx/textentry_osx.cpp; sourceTree = SOURCE_ROOT; }; - 50859F0155753FDCB8C5222A /* LexSTTXT.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSTTXT.cxx; path = ../../src/stc/lexilla/lexers/LexSTTXT.cxx; sourceTree = SOURCE_ROOT; }; - 5190E3E110443FD29F2474FC /* treelist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treelist.cpp; path = ../../src/generic/treelist.cpp; sourceTree = SOURCE_ROOT; }; - 0851C46057CE3C37991B9E34 /* LexBibTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBibTeX.cxx; path = ../../src/stc/lexilla/lexers/LexBibTeX.cxx; sourceTree = SOURCE_ROOT; }; - BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = progdlgg.cpp; path = ../../src/generic/progdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 8553D5C4AAFE3EC5A43CE036 /* LexJulia.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexJulia.cxx; path = ../../src/stc/lexilla/lexers/LexJulia.cxx; sourceTree = SOURCE_ROOT; }; - AA6C6739C3BD3EFA9CF71102 /* jcinit.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcinit.c; path = ../../src/jpeg/jcinit.c; sourceTree = SOURCE_ROOT; }; - 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_animatctrl.cpp; path = ../../src/xrc/xh_animatctrl.cpp; sourceTree = SOURCE_ROOT; }; - D2DE67C976CF3004A8FE883A /* Accessor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Accessor.cxx; path = ../../src/stc/lexilla/lexlib/Accessor.cxx; sourceTree = SOURCE_ROOT; }; - 513033E36E643593AC305B3D /* uncompr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = uncompr.c; path = ../../src/zlib/uncompr.c; sourceTree = SOURCE_ROOT; }; - C83C97A1FCC5345896C9D7DE /* tif_warning.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_warning.c; path = ../../src/tiff/libtiff/tif_warning.c; sourceTree = SOURCE_ROOT; }; - 137E01C362E134449BF966ED /* imagfill.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagfill.cpp; path = ../../src/common/imagfill.cpp; sourceTree = SOURCE_ROOT; }; - 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jutils.c; path = ../../src/jpeg/jutils.c; sourceTree = SOURCE_ROOT; }; - BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filename.cpp; path = ../../src/common/filename.cpp; sourceTree = SOURCE_ROOT; }; - 7395814D42CC38F6B8CD81B4 /* gzlib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = gzlib.c; path = ../../src/zlib/gzlib.c; sourceTree = SOURCE_ROOT; }; - 773D91F8280434519BD167EA /* radiobox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobox_osx.cpp; path = ../../src/osx/radiobox_osx.cpp; sourceTree = SOURCE_ROOT; }; - 239D386E9D7D39C5A1E859C6 /* clipcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipcmn.cpp; path = ../../src/common/clipcmn.cpp; sourceTree = SOURCE_ROOT; }; - FCCFF49F92B4323D9181CEDA /* htmltag.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmltag.cpp; path = ../../src/html/htmltag.cpp; sourceTree = SOURCE_ROOT; }; - E9D416E57FEB3F0B95734FF6 /* dirdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirdlgg.cpp; path = ../../src/generic/dirdlgg.cpp; sourceTree = SOURCE_ROOT; }; - EDB48813110636DBA045BF3A /* LexPS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPS.cxx; path = ../../src/stc/lexilla/lexers/LexPS.cxx; sourceTree = SOURCE_ROOT; }; - F01DDE448E4C3983ACCE67FD /* appcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appcmn.cpp; path = ../../src/common/appcmn.cpp; sourceTree = SOURCE_ROOT; }; - 3E6F40F4740C3ED29D83E107 /* tif_version.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_version.c; path = ../../src/tiff/libtiff/tif_version.c; sourceTree = SOURCE_ROOT; }; - 580AFC66F3003582B43043B1 /* animateg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = animateg.cpp; path = ../../src/generic/animateg.cpp; sourceTree = SOURCE_ROOT; }; - BD88495AF72531A28D2201D0 /* tif_tile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_tile.c; path = ../../src/tiff/libtiff/tif_tile.c; sourceTree = SOURCE_ROOT; }; - 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_xclass.c; path = ../../3rdparty/pcre/src/pcre2_xclass.c; sourceTree = SOURCE_ROOT; }; - CF6511DE2CB43534A5566403 /* menuitem_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menuitem_osx.cpp; path = ../../src/osx/menuitem_osx.cpp; sourceTree = SOURCE_ROOT; }; - 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapimin.c; path = ../../src/jpeg/jcapimin.c; sourceTree = SOURCE_ROOT; }; - 9860CD56245B3E7FBD0E7846 /* checklst_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checklst_osx.cpp; path = ../../src/osx/checklst_osx.cpp; sourceTree = SOURCE_ROOT; }; - 86F26F6418C53AFE8154BFC8 /* LexPascal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPascal.cxx; path = ../../src/stc/lexilla/lexers/LexPascal.cxx; sourceTree = SOURCE_ROOT; }; - E8072CA67D19346ABF4D465F /* slidercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slidercmn.cpp; path = ../../src/common/slidercmn.cpp; sourceTree = SOURCE_ROOT; }; - 1731A6096BFC3A468AB4755A /* tif_open.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_open.c; path = ../../src/tiff/libtiff/tif_open.c; sourceTree = SOURCE_ROOT; }; - 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cfstring.cpp; path = ../../src/osx/core/cfstring.cpp; sourceTree = SOURCE_ROOT; }; - F0905A1EBD653F6D82395602 /* xh_combo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_combo.cpp; path = ../../src/xrc/xh_combo.cpp; sourceTree = SOURCE_ROOT; }; - 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = filter_sse2_intrinsics.c; path = ../../src/png/intel/filter_sse2_intrinsics.c; sourceTree = SOURCE_ROOT; }; - 93D07403FCA530D7A9FD2917 /* jfdctflt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jfdctflt.c; path = ../../src/jpeg/jfdctflt.c; sourceTree = SOURCE_ROOT; }; - 59D075A3E96F3187B58F6D03 /* choice_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choice_osx.cpp; path = ../../src/osx/choice_osx.cpp; sourceTree = SOURCE_ROOT; }; - 2334539088B036BEAB230D1C /* filectrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filectrlg.cpp; path = ../../src/generic/filectrlg.cpp; sourceTree = SOURCE_ROOT; }; - 242BF97B558634A79322052C /* prntbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prntbase.cpp; path = ../../src/common/prntbase.cpp; sourceTree = SOURCE_ROOT; }; - AF7CE00168AB33C994374ABA /* tif_extension.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_extension.c; path = ../../src/tiff/libtiff/tif_extension.c; sourceTree = SOURCE_ROOT; }; - 36296C259D023EAAA240FC79 /* bannerwindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bannerwindow.cpp; path = ../../src/generic/bannerwindow.cpp; sourceTree = SOURCE_ROOT; }; - 3E93DE2F9FE73AD2AB9571E2 /* dobjcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dobjcmn.cpp; path = ../../src/common/dobjcmn.cpp; sourceTree = SOURCE_ROOT; }; - BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextsymboldlg.cpp; path = ../../src/richtext/richtextsymboldlg.cpp; sourceTree = SOURCE_ROOT; }; - 33CFE51FD6F0362092DF1A85 /* msgdlg.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = msgdlg.mm; path = ../../src/osx/iphone/msgdlg.mm; sourceTree = SOURCE_ROOT; }; - 6F23140777B733679D2FAAFC /* odcombocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = odcombocmn.cpp; path = ../../src/common/odcombocmn.cpp; sourceTree = SOURCE_ROOT; }; - B181F564935730E89AB00D92 /* LexForth.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexForth.cxx; path = ../../src/stc/lexilla/lexers/LexForth.cxx; sourceTree = SOURCE_ROOT; }; - F82278F9AF0432529891E6D7 /* tif_close.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_close.c; path = ../../src/tiff/libtiff/tif_close.c; sourceTree = SOURCE_ROOT; }; + B98B72B3A0A73044B85AED60 /* propgrid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgrid.cpp; path = ../../src/propgrid/propgrid.cpp; sourceTree = SOURCE_ROOT; }; + 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_unkwn.cpp; path = ../../src/xrc/xh_unkwn.cpp; sourceTree = SOURCE_ROOT; }; + 346C68F0CCD23823B78267F0 /* tif_lzw.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_lzw.c; path = ../../src/tiff/libtiff/tif_lzw.c; sourceTree = SOURCE_ROOT; }; + F48BFBB2D4E43930BE005A42 /* LexJSON.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexJSON.cxx; path = ../../src/stc/lexilla/lexers/LexJSON.cxx; sourceTree = SOURCE_ROOT; }; + D4A23A8BC7373D4BBD72851D /* apptraits.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = apptraits.cpp; path = ../../src/unix/apptraits.cpp; sourceTree = SOURCE_ROOT; }; + 375FF97B202F3C359402D13E /* jdpostct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdpostct.c; path = ../../src/jpeg/jdpostct.c; sourceTree = SOURCE_ROOT; }; + B3645350F572364BABF50238 /* containr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = containr.cpp; path = ../../src/common/containr.cpp; sourceTree = SOURCE_ROOT; }; + C3019BA65DD73F30A865365F /* frame.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frame.cpp; path = ../../src/osx/carbon/frame.cpp; sourceTree = SOURCE_ROOT; }; + 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_match.c; path = ../../3rdparty/pcre/src/pcre2_match.c; sourceTree = SOURCE_ROOT; }; + 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_mdi.cpp; path = ../../src/xrc/xh_mdi.cpp; sourceTree = SOURCE_ROOT; }; + ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_hline.cpp; path = ../../src/html/m_hline.cpp; sourceTree = SOURCE_ROOT; }; + 4592464D4868329897F3864D /* LexSpice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpice.cxx; path = ../../src/stc/lexilla/lexers/LexSpice.cxx; sourceTree = SOURCE_ROOT; }; + BB7661E9E09A397790ED9545 /* sockunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sockunix.cpp; path = ../../src/unix/sockunix.cpp; sourceTree = SOURCE_ROOT; }; + B1AA9AF75D233FFC9FC90E7C /* LexNim.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNim.cxx; path = ../../src/stc/lexilla/lexers/LexNim.cxx; sourceTree = SOURCE_ROOT; }; 5D2F8259CC99380CB8217DEF /* tif_unix.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_unix.c; path = ../../src/tiff/libtiff/tif_unix.c; sourceTree = SOURCE_ROOT; }; - B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dirwrite.c; path = ../../src/tiff/libtiff/tif_dirwrite.c; sourceTree = SOURCE_ROOT; }; - 292C08C0A1203654ABAA2CB1 /* statlinecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statlinecmn.cpp; path = ../../src/common/statlinecmn.cpp; sourceTree = SOURCE_ROOT; }; - 81708CFA21A03013ACB8DDD7 /* checkbox.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = checkbox.mm; path = ../../src/osx/iphone/checkbox.mm; sourceTree = SOURCE_ROOT; }; - C94DC3402FAE3C4FA776DEEA /* window.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = window.mm; path = ../../src/osx/iphone/window.mm; sourceTree = SOURCE_ROOT; }; - FD0C7FCA25A3312E8F2FCF3C /* LexTeX.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTeX.cxx; path = ../../src/stc/lexilla/lexers/LexTeX.cxx; sourceTree = SOURCE_ROOT; }; - 87799D3168B43EB7B5686826 /* pngrtran.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrtran.c; path = ../../src/png/pngrtran.c; sourceTree = SOURCE_ROOT; }; - 91300EB871CC39ECBC430D48 /* pngget.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngget.c; path = ../../src/png/pngget.c; sourceTree = SOURCE_ROOT; }; - DECAF5DD80383A2CA76EB383 /* jdatasrc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdatasrc.c; path = ../../src/jpeg/jdatasrc.c; sourceTree = SOURCE_ROOT; }; - 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sashwin.cpp; path = ../../src/generic/sashwin.cpp; sourceTree = SOURCE_ROOT; }; - 9CE73979D0933A43830307E4 /* tif_packbits.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_packbits.c; path = ../../src/tiff/libtiff/tif_packbits.c; sourceTree = SOURCE_ROOT; }; - 04082EC1C91334379425802D /* LexConf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexConf.cxx; path = ../../src/stc/lexilla/lexers/LexConf.cxx; sourceTree = SOURCE_ROOT; }; - DFDC805DD3063C389F93642D /* tif_next.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_next.c; path = ../../src/tiff/libtiff/tif_next.c; sourceTree = SOURCE_ROOT; }; + 55EBB18CB4773C788510B14B /* LexEiffel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEiffel.cxx; path = ../../src/stc/lexilla/lexers/LexEiffel.cxx; sourceTree = SOURCE_ROOT; }; + 570D603125ED3A14848FA2E2 /* gaugecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gaugecmn.cpp; path = ../../src/common/gaugecmn.cpp; sourceTree = SOURCE_ROOT; }; + 741578B590AF3F2CABE615EB /* timectrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timectrlg.cpp; path = ../../src/generic/timectrlg.cpp; sourceTree = SOURCE_ROOT; }; + 63867276260C3F4A980E83D8 /* rgncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rgncmn.cpp; path = ../../src/common/rgncmn.cpp; sourceTree = SOURCE_ROOT; }; + 57E4784E521339BEB971D81D /* LexAVS.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVS.cxx; path = ../../src/stc/lexilla/lexers/LexAVS.cxx; sourceTree = SOURCE_ROOT; }; + E6AB648BC5173104A96CAE66 /* xml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xml.cpp; path = ../../src/xml/xml.cpp; sourceTree = SOURCE_ROOT; }; + C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcher_kqueue.cpp; path = ../../src/unix/fswatcher_kqueue.cpp; sourceTree = SOURCE_ROOT; }; + C20E46A504113C899B9DD9B7 /* props.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = props.cpp; path = ../../src/propgrid/props.cpp; sourceTree = SOURCE_ROOT; }; + 6A82EDCFFBAC30098B238957 /* caret.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = caret.cpp; path = ../../src/generic/caret.cpp; sourceTree = SOURCE_ROOT; }; + E1B1FBB2BCC43BA7A45E9438 /* listctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listctrlcmn.cpp; path = ../../src/common/listctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; + E9B31409EC6532FC83B0B957 /* textmeasure.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textmeasure.cpp; path = ../../src/generic/textmeasure.cpp; sourceTree = SOURCE_ROOT; }; + F0905A1EBD653F6D82395602 /* xh_combo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_combo.cpp; path = ../../src/xrc/xh_combo.cpp; sourceTree = SOURCE_ROOT; }; + 8734C52C7559310784396455 /* LexRuby.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRuby.cxx; path = ../../src/stc/lexilla/lexers/LexRuby.cxx; sourceTree = SOURCE_ROOT; }; + A881F49ADCF33C299B041584 /* floatpane.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = floatpane.cpp; path = ../../src/aui/floatpane.cpp; sourceTree = SOURCE_ROOT; }; + 4A5FF9CED1FE36069FDBF636 /* cmdproc.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdproc.cpp; path = ../../src/common/cmdproc.cpp; sourceTree = SOURCE_ROOT; }; + FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_config.c; path = ../../3rdparty/pcre/src/pcre2_config.c; sourceTree = SOURCE_ROOT; }; + FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cpp; path = ../../src/common/stream.cpp; sourceTree = SOURCE_ROOT; }; + FCE8B55EBD6B348B8351AB08 /* LexKVIrc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexKVIrc.cxx; path = ../../src/stc/lexilla/lexers/LexKVIrc.cxx; sourceTree = SOURCE_ROOT; }; 2851EAAEE9B73FE8981912C9 /* LexErrorList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexErrorList.cxx; path = ../../src/stc/lexilla/lexers/LexErrorList.cxx; sourceTree = SOURCE_ROOT; }; - 64B25B87203E3464BCDD277D /* tif_read.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_read.c; path = ../../src/tiff/libtiff/tif_read.c; sourceTree = SOURCE_ROOT; }; + 147800BBCB80346798B35D75 /* xh_stbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_stbox.cpp; path = ../../src/xrc/xh_stbox.cpp; sourceTree = SOURCE_ROOT; }; + 5F84098A475939BB9EE87E70 /* imagbmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagbmp.cpp; path = ../../src/common/imagbmp.cpp; sourceTree = SOURCE_ROOT; }; + 59572A234F0636D78BFD9F6B /* spinctlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinctlg.cpp; path = ../../src/generic/spinctlg.cpp; sourceTree = SOURCE_ROOT; }; + 664736BDE465350C9C4750E9 /* jcmarker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcmarker.c; path = ../../src/jpeg/jcmarker.c; sourceTree = SOURCE_ROOT; }; + C62CD918A09D3FE5B1BF2D17 /* anybutton_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anybutton_osx.cpp; path = ../../src/osx/anybutton_osx.cpp; sourceTree = SOURCE_ROOT; }; + 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmp.cpp; path = ../../src/xrc/xh_bmp.cpp; sourceTree = SOURCE_ROOT; }; + 4969528429903F15882F5391 /* sockosx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sockosx.cpp; path = ../../src/osx/core/sockosx.cpp; sourceTree = SOURCE_ROOT; }; + 726C0457DF1232C793918DC1 /* tif_zip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_zip.c; path = ../../src/tiff/libtiff/tif_zip.c; sourceTree = SOURCE_ROOT; }; + D0817D6A1AF83608B050EBC3 /* fontmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontmap.cpp; path = ../../src/common/fontmap.cpp; sourceTree = SOURCE_ROOT; }; + 86884BC843F6337EABF744BB /* jdapimin.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdapimin.c; path = ../../src/jpeg/jdapimin.c; sourceTree = SOURCE_ROOT; }; + 53D06E47477B3E32BB6B915E /* jcsample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcsample.c; path = ../../src/jpeg/jcsample.c; sourceTree = SOURCE_ROOT; }; + 90928C9893EF34E09EEBA1A1 /* LexHollywood.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHollywood.cxx; path = ../../src/stc/lexilla/lexers/LexHollywood.cxx; sourceTree = SOURCE_ROOT; }; + 071FEABEA61E3B559A47A7DB /* statusbr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statusbr.cpp; path = ../../src/generic/statusbr.cpp; sourceTree = SOURCE_ROOT; }; + 18044326B5B13A98A49732DD /* fontdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontdlg.cpp; path = ../../src/osx/carbon/fontdlg.cpp; sourceTree = SOURCE_ROOT; }; + 58E1F571B01F34D4AB70CA18 /* property.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = property.cpp; path = ../../src/propgrid/property.cpp; sourceTree = SOURCE_ROOT; }; + 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileconf.cpp; path = ../../src/common/fileconf.cpp; sourceTree = SOURCE_ROOT; }; + 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = protocol.cpp; path = ../../src/common/protocol.cpp; sourceTree = SOURCE_ROOT; }; + 9B862D1027C4367BBF44420F /* slider.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = slider.mm; path = ../../src/osx/iphone/slider.mm; sourceTree = SOURCE_ROOT; }; 3088384F07C63A5DB3581656 /* tif_lzma.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_lzma.c; path = ../../src/tiff/libtiff/tif_lzma.c; sourceTree = SOURCE_ROOT; }; - 8D2549709E0133C9A267E3A5 /* evtloop.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = evtloop.mm; path = ../../src/osx/iphone/evtloop.mm; sourceTree = SOURCE_ROOT; }; - 543C896D9A30340A8C2CB7C8 /* combobox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = combobox_osx.cpp; path = ../../src/osx/combobox_osx.cpp; sourceTree = SOURCE_ROOT; }; - E110907DDC13305E88B90086 /* dirctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirctrlcmn.cpp; path = ../../src/common/dirctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = richtextprint.cpp; path = ../../src/richtext/richtextprint.cpp; sourceTree = SOURCE_ROOT; }; - 888BD97139C936679691FF34 /* hash.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hash.cpp; path = ../../src/common/hash.cpp; sourceTree = SOURCE_ROOT; }; - F2024D29170D3B50A4DFDE11 /* base64.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = base64.cpp; path = ../../src/common/base64.cpp; sourceTree = SOURCE_ROOT; }; - 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zipstrm.cpp; path = ../../src/common/zipstrm.cpp; sourceTree = SOURCE_ROOT; }; - 7C80A0223B993BCB80D1C0A0 /* srchctrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchctrl_osx.cpp; path = ../../src/osx/srchctrl_osx.cpp; sourceTree = SOURCE_ROOT; }; - 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_getimage.c; path = ../../src/tiff/libtiff/tif_getimage.c; sourceTree = SOURCE_ROOT; }; - E9B9B85572D0312BBF2878DB /* windowid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = windowid.cpp; path = ../../src/common/windowid.cpp; sourceTree = SOURCE_ROOT; }; - A87662D69F0432FC96701280 /* xh_notbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_notbk.cpp; path = ../../src/xrc/xh_notbk.cpp; sourceTree = SOURCE_ROOT; }; - A3BF8C9FF2D5314591329D0D /* toolbar.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = toolbar.mm; path = ../../src/osx/iphone/toolbar.mm; sourceTree = SOURCE_ROOT; }; - 274A156457C63EC5801029C2 /* CaseConvert.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CaseConvert.cxx; path = ../../src/stc/scintilla/src/CaseConvert.cxx; sourceTree = SOURCE_ROOT; }; - B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wakeuppipe.cpp; path = ../../src/unix/wakeuppipe.cpp; sourceTree = SOURCE_ROOT; }; - 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_richtext.cpp; path = ../../src/xrc/xh_richtext.cpp; sourceTree = SOURCE_ROOT; }; - 950D51915EF83B57B5E8306F /* xh_spin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_spin.cpp; path = ../../src/xrc/xh_spin.cpp; sourceTree = SOURCE_ROOT; }; - 0903EE9B3793303285FF96E3 /* textfile.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfile.cpp; path = ../../src/common/textfile.cpp; sourceTree = SOURCE_ROOT; }; - 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDiff.cxx; path = ../../src/stc/lexilla/lexers/LexDiff.cxx; sourceTree = SOURCE_ROOT; }; - 497861EB7E623C68951D1AB2 /* LexAPDL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAPDL.cxx; path = ../../src/stc/lexilla/lexers/LexAPDL.cxx; sourceTree = SOURCE_ROOT; }; - 54BD19211DBD388AA0DEC7A1 /* stattextcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stattextcmn.cpp; path = ../../src/common/stattextcmn.cpp; sourceTree = SOURCE_ROOT; }; - 693F731B7D1730A79485F9EC /* minifram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = minifram.cpp; path = ../../src/osx/minifram.cpp; sourceTree = SOURCE_ROOT; }; - A881F49ADCF33C299B041584 /* floatpane.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = floatpane.cpp; path = ../../src/aui/floatpane.cpp; sourceTree = SOURCE_ROOT; }; - EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webrequest_urlsession.mm; path = ../../src/osx/webrequest_urlsession.mm; sourceTree = SOURCE_ROOT; }; - 5EA9E372A64B3B808A64B178 /* webrequest.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webrequest.cpp; path = ../../src/common/webrequest.cpp; sourceTree = SOURCE_ROOT; }; - C9A305CEC03B3085B159B617 /* fs_mem.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_mem.cpp; path = ../../src/common/fs_mem.cpp; sourceTree = SOURCE_ROOT; }; - B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_sttxt.cpp; path = ../../src/xrc/xh_sttxt.cpp; sourceTree = SOURCE_ROOT; }; - 49612306912038DDBCABB4DE /* url.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = url.cpp; path = ../../src/common/url.cpp; sourceTree = SOURCE_ROOT; }; - 725574EF98C4301989181CBF /* jctrans.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jctrans.c; path = ../../src/jpeg/jctrans.c; sourceTree = SOURCE_ROOT; }; - 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = event.cpp; path = ../../src/common/event.cpp; sourceTree = SOURCE_ROOT; }; - FEFE1B83470D38D38D0E76B0 /* LexMMIXAL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMMIXAL.cxx; path = ../../src/stc/lexilla/lexers/LexMMIXAL.cxx; sourceTree = SOURCE_ROOT; }; - B5E2D6917EB1352983C7FE85 /* wrapsizer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrapsizer.cpp; path = ../../src/common/wrapsizer.cpp; sourceTree = SOURCE_ROOT; }; - 20E4A10BCD773C84AEC481A1 /* jdmarker.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdmarker.c; path = ../../src/jpeg/jdmarker.c; sourceTree = SOURCE_ROOT; }; - 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_comboctrl.cpp; path = ../../src/xrc/xh_comboctrl.cpp; sourceTree = SOURCE_ROOT; }; - C3784C240C2F330683494926 /* laywin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = laywin.cpp; path = ../../src/generic/laywin.cpp; sourceTree = SOURCE_ROOT; }; - 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmpbt.cpp; path = ../../src/xrc/xh_bmpbt.cpp; sourceTree = SOURCE_ROOT; }; - A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_styledtextctrl.cpp; path = ../../src/xrc/xh_styledtextctrl.cpp; sourceTree = SOURCE_ROOT; }; + 43D416CF0DE334E79A8E48C8 /* LexVisualProlog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVisualProlog.cxx; path = ../../src/stc/lexilla/lexers/LexVisualProlog.cxx; sourceTree = SOURCE_ROOT; }; 2E00E14795F23A8392713A26 /* fontutilcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontutilcmn.cpp; path = ../../src/common/fontutilcmn.cpp; sourceTree = SOURCE_ROOT; }; - C76222F466E831F896A89269 /* LexAU3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAU3.cxx; path = ../../src/stc/lexilla/lexers/LexAU3.cxx; sourceTree = SOURCE_ROOT; }; - 7925E38823563BCDB5565DCF /* treebkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = treebkg.cpp; path = ../../src/generic/treebkg.cpp; sourceTree = SOURCE_ROOT; }; - 29D6506AEA5A323B8735F126 /* pngread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngread.c; path = ../../src/png/pngread.c; sourceTree = SOURCE_ROOT; }; - B61D36546E97371FAC5D4565 /* LexStata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexStata.cxx; path = ../../src/stc/lexilla/lexers/LexStata.cxx; sourceTree = SOURCE_ROOT; }; - CA0D5D47D62A3148BA51B31B /* tif_compress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_compress.c; path = ../../src/tiff/libtiff/tif_compress.c; sourceTree = SOURCE_ROOT; }; - 080597FC0436378E96EDA94B /* m_links.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_links.cpp; path = ../../src/html/m_links.cpp; sourceTree = SOURCE_ROOT; }; - 45E7EC6D0C0E3C878664C0A9 /* fldlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fldlgcmn.cpp; path = ../../src/common/fldlgcmn.cpp; sourceTree = SOURCE_ROOT; }; - B1AA9AF75D233FFC9FC90E7C /* LexNim.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNim.cxx; path = ../../src/stc/lexilla/lexers/LexNim.cxx; sourceTree = SOURCE_ROOT; }; - AA234ACC79743DA797601AA6 /* jcarith.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcarith.c; path = ../../src/jpeg/jcarith.c; sourceTree = SOURCE_ROOT; }; - 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timerunx.cpp; path = ../../src/unix/timerunx.cpp; sourceTree = SOURCE_ROOT; }; - F8AD617806563DE394C15922 /* LexFSharp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexFSharp.cxx; path = ../../src/stc/lexilla/lexers/LexFSharp.cxx; sourceTree = SOURCE_ROOT; }; - 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_ojpeg.c; path = ../../src/tiff/libtiff/tif_ojpeg.c; sourceTree = SOURCE_ROOT; }; - 71DB140E670738839EC42C2B /* Document.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Document.cxx; path = ../../src/stc/scintilla/src/Document.cxx; sourceTree = SOURCE_ROOT; }; - C3019BA65DD73F30A865365F /* frame.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frame.cpp; path = ../../src/osx/carbon/frame.cpp; sourceTree = SOURCE_ROOT; }; - 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_dumpmode.c; path = ../../src/tiff/libtiff/tif_dumpmode.c; sourceTree = SOURCE_ROOT; }; - ECF99DEE2FE432A9B8179ADC /* LexRaku.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexRaku.cxx; path = ../../src/stc/lexilla/lexers/LexRaku.cxx; sourceTree = SOURCE_ROOT; }; - FE3B47058A723243A285594D /* LexMPT.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMPT.cxx; path = ../../src/stc/lexilla/lexers/LexMPT.cxx; sourceTree = SOURCE_ROOT; }; - 6C0129D2DB2D3431B66FD9C3 /* textctrl_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textctrl_osx.cpp; path = ../../src/osx/textctrl_osx.cpp; sourceTree = SOURCE_ROOT; }; - 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_choic.cpp; path = ../../src/xrc/xh_choic.cpp; sourceTree = SOURCE_ROOT; }; - 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calctrlcmn.cpp; path = ../../src/common/calctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - DAAED71A534135A9A61612A6 /* colordlgosx.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = colordlgosx.mm; path = ../../src/osx/carbon/colordlgosx.mm; sourceTree = SOURCE_ROOT; }; - 55EBB18CB4773C788510B14B /* LexEiffel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexEiffel.cxx; path = ../../src/stc/lexilla/lexers/LexEiffel.cxx; sourceTree = SOURCE_ROOT; }; - 2AF7739C389536F79DAA31E5 /* Selection.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Selection.cxx; path = ../../src/stc/scintilla/src/Selection.cxx; sourceTree = SOURCE_ROOT; }; - 1CABAEA3B48333CB88B40F08 /* LexTCMD.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCMD.cxx; path = ../../src/stc/lexilla/lexers/LexTCMD.cxx; sourceTree = SOURCE_ROOT; }; - CCF7564A2B733F759AA8496B /* jdinput.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdinput.c; path = ../../src/jpeg/jdinput.c; sourceTree = SOURCE_ROOT; }; - 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gallery.cpp; path = ../../src/ribbon/gallery.cpp; sourceTree = SOURCE_ROOT; }; - 3CF73F49AEC238C99CE89845 /* deflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = deflate.c; path = ../../src/zlib/deflate.c; sourceTree = SOURCE_ROOT; }; - B4DEA098A05736AE94F01926 /* libwx_osx_iphone.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwx_osx_iphone.a; sourceTree = BUILT_PRODUCTS_DIR; }; - D215A0D67563350CB4EECB06 /* slider_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slider_osx.cpp; path = ../../src/osx/slider_osx.cpp; sourceTree = SOURCE_ROOT; }; - A6636144CDE83E8E85270FAF /* hashmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hashmap.cpp; path = ../../src/common/hashmap.cpp; sourceTree = SOURCE_ROOT; }; - 600740717F7E320F8CA78384 /* scrolbar_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrolbar_osx.cpp; path = ../../src/osx/scrolbar_osx.cpp; sourceTree = SOURCE_ROOT; }; - DE0102314288305D830B9EFE /* LexProps.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexProps.cxx; path = ../../src/stc/lexilla/lexers/LexProps.cxx; sourceTree = SOURCE_ROOT; }; - 69F098E47EBF34368ABAE7ED /* timer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cpp; path = ../../src/osx/core/timer.cpp; sourceTree = SOURCE_ROOT; }; - 4C4649974D8B3A109D1BF145 /* art_internal.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = art_internal.cpp; path = ../../src/ribbon/art_internal.cpp; sourceTree = SOURCE_ROOT; }; - 0EEAD9C3E180305D8899441E /* strvararg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strvararg.cpp; path = ../../src/common/strvararg.cpp; sourceTree = SOURCE_ROOT; }; - 4CB467F9898C3952A68D988B /* zutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = zutil.c; path = ../../src/zlib/zutil.c; sourceTree = SOURCE_ROOT; }; - D11E2223B5AA3E26A21A8817 /* LexOScript.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexOScript.cxx; path = ../../src/stc/lexilla/lexers/LexOScript.cxx; sourceTree = SOURCE_ROOT; }; + 8052B1625907355894CCF263 /* LexillaAccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexillaAccess.cxx; path = ../../src/stc/lexilla/access/LexillaAccess.cxx; sourceTree = SOURCE_ROOT; }; + FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = glcanvas_osx.cpp; path = ../../src/osx/glcanvas_osx.cpp; sourceTree = SOURCE_ROOT; }; + A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrolbarcmn.cpp; path = ../../src/common/scrolbarcmn.cpp; sourceTree = SOURCE_ROOT; }; + 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fswatcherg.cpp; path = ../../src/generic/fswatcherg.cpp; sourceTree = SOURCE_ROOT; }; + B17772732159304AA7312D72 /* dcclient.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcclient.cpp; path = ../../src/osx/carbon/dcclient.cpp; sourceTree = SOURCE_ROOT; }; + B99CA41708513A599AE275A2 /* listbox_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listbox_osx.cpp; path = ../../src/osx/listbox_osx.cpp; sourceTree = SOURCE_ROOT; }; + 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hyperlnkcmn.cpp; path = ../../src/common/hyperlnkcmn.cpp; sourceTree = SOURCE_ROOT; }; + DA5E95D498C53A808A8E2EEB /* Editor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Editor.cxx; path = ../../src/stc/scintilla/src/Editor.cxx; sourceTree = SOURCE_ROOT; }; + 033B94A9AC8A3370A794503F /* extended.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = extended.c; path = ../../src/common/extended.c; sourceTree = SOURCE_ROOT; }; + 12363D1F50FE301DAEE7F04B /* control.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = control.cpp; path = ../../src/ribbon/control.cpp; sourceTree = SOURCE_ROOT; }; 168DB301ACC736FF96D7F581 /* file.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file.cpp; path = ../../src/common/file.cpp; sourceTree = SOURCE_ROOT; }; - AAC12B4456E13F57BEA25A5E /* tif_swab.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_swab.c; path = ../../src/tiff/libtiff/tif_swab.c; sourceTree = SOURCE_ROOT; }; - A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rowheightcache.cpp; path = ../../src/generic/rowheightcache.cpp; sourceTree = SOURCE_ROOT; }; - 3026D20A03E53F1DB40FB35A /* pcre2_context.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_context.c; path = ../../3rdparty/pcre/src/pcre2_context.c; sourceTree = SOURCE_ROOT; }; - E9B992CB6C28339FB0CA5E27 /* tif_write.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_write.c; path = ../../src/tiff/libtiff/tif_write.c; sourceTree = SOURCE_ROOT; }; - 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CallTip.cxx; path = ../../src/stc/scintilla/src/CallTip.cxx; sourceTree = SOURCE_ROOT; }; - C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediactrlcmn.cpp; path = ../../src/common/mediactrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngmem.c; path = ../../src/png/pngmem.c; sourceTree = SOURCE_ROOT; }; - 8744F2C80ECF375999195935 /* LexPB.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPB.cxx; path = ../../src/stc/lexilla/lexers/LexPB.cxx; sourceTree = SOURCE_ROOT; }; - 6BC93D1DE277395592610085 /* propdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propdlg.cpp; path = ../../src/generic/propdlg.cpp; sourceTree = SOURCE_ROOT; }; - C28429A964C337A192D76CC8 /* Style.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Style.cxx; path = ../../src/stc/scintilla/src/Style.cxx; sourceTree = SOURCE_ROOT; }; - EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dircmn.cpp; path = ../../src/common/dircmn.cpp; sourceTree = SOURCE_ROOT; }; - 1C86EC3AA4193E639EB08AA7 /* LexHex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexHex.cxx; path = ../../src/stc/lexilla/lexers/LexHex.cxx; sourceTree = SOURCE_ROOT; }; - 573D0D15EE9E3E629D61EA65 /* jaricom.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jaricom.c; path = ../../src/jpeg/jaricom.c; sourceTree = SOURCE_ROOT; }; - 5FFCF47A161B3E08B19BFE14 /* jdsample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jdsample.c; path = ../../src/jpeg/jdsample.c; sourceTree = SOURCE_ROOT; }; - 2D61240ABD70328BA5789663 /* colourcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colourcmn.cpp; path = ../../src/common/colourcmn.cpp; sourceTree = SOURCE_ROOT; }; - 8FAA77ADAB7833648DA5D079 /* spinctrlcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinctrlcmn.cpp; path = ../../src/common/spinctrlcmn.cpp; sourceTree = SOURCE_ROOT; }; - 772AD4682A3E38538511D341 /* bmpbtncmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpbtncmn.cpp; path = ../../src/common/bmpbtncmn.cpp; sourceTree = SOURCE_ROOT; }; - 9CAA325362C73AC8BE20FAA7 /* pngpread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngpread.c; path = ../../src/png/pngpread.c; sourceTree = SOURCE_ROOT; }; - DE9DBF06A1F43EF2B26445D5 /* dcsvg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcsvg.cpp; path = ../../src/common/dcsvg.cpp; sourceTree = SOURCE_ROOT; }; - 727F25F832AD32D4B12D8E39 /* m_span.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_span.cpp; path = ../../src/html/m_span.cpp; sourceTree = SOURCE_ROOT; }; - 93B77251C0E0382D9A8E113D /* xh_grid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_grid.cpp; path = ../../src/xrc/xh_grid.cpp; sourceTree = SOURCE_ROOT; }; - 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_thunder.c; path = ../../src/tiff/libtiff/tif_thunder.c; sourceTree = SOURCE_ROOT; }; - 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlwin.cpp; path = ../../src/html/htmlwin.cpp; sourceTree = SOURCE_ROOT; }; - FA7029BB5751398AA02D8C24 /* imagtga.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagtga.cpp; path = ../../src/common/imagtga.cpp; sourceTree = SOURCE_ROOT; }; - E685D81FB9FF3081B6C5C321 /* EditModel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EditModel.cxx; path = ../../src/stc/scintilla/src/EditModel.cxx; sourceTree = SOURCE_ROOT; }; - 5FFCB72168FD31DE86A1B674 /* radiobut_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiobut_osx.cpp; path = ../../src/osx/radiobut_osx.cpp; sourceTree = SOURCE_ROOT; }; - D9016355F66D3125919E017D /* listctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listctrl.cpp; path = ../../src/generic/listctrl.cpp; sourceTree = SOURCE_ROOT; }; - F7332A03D93D3DABB050615D /* dir.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dir.cpp; path = ../../src/unix/dir.cpp; sourceTree = SOURCE_ROOT; }; - 8D529E2668C23D94A7706C8A /* textdlgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdlgg.cpp; path = ../../src/generic/textdlgg.cpp; sourceTree = SOURCE_ROOT; }; - 5E2F1BF8904635049BAFD6E1 /* spinbutt_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinbutt_osx.cpp; path = ../../src/osx/spinbutt_osx.cpp; sourceTree = SOURCE_ROOT; }; - F83172EE2DAE352FB969D4F2 /* jcapistd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jcapistd.c; path = ../../src/jpeg/jcapistd.c; sourceTree = SOURCE_ROOT; }; - 19559DDA007D364E838014B5 /* nonownedwnd_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nonownedwnd_osx.cpp; path = ../../src/osx/nonownedwnd_osx.cpp; sourceTree = SOURCE_ROOT; }; - 531B0E5DB9ED393996E3FBB8 /* radiocmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = radiocmn.cpp; path = ../../src/common/radiocmn.cpp; sourceTree = SOURCE_ROOT; }; - D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_menu.cpp; path = ../../src/xrc/xh_menu.cpp; sourceTree = SOURCE_ROOT; }; - 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlreshandler.cpp; path = ../../src/xrc/xmlreshandler.cpp; sourceTree = SOURCE_ROOT; }; - B14D6E7E15FD3C869E341198 /* LexLout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexLout.cxx; path = ../../src/stc/lexilla/lexers/LexLout.cxx; sourceTree = SOURCE_ROOT; }; - 0E7BF9256DF533EBAE2B945E /* WordList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WordList.cxx; path = ../../src/stc/lexilla/lexlib/WordList.cxx; sourceTree = SOURCE_ROOT; }; - 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlrsall.cpp; path = ../../src/xrc/xmlrsall.cpp; sourceTree = SOURCE_ROOT; }; - 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tokenzr.cpp; path = ../../src/common/tokenzr.cpp; sourceTree = SOURCE_ROOT; }; - DC9153A350893820B942D37E /* LexMatlab.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMatlab.cxx; path = ../../src/stc/lexilla/lexers/LexMatlab.cxx; sourceTree = SOURCE_ROOT; }; - AF3DF03795153E039B8F1F87 /* LineMarker.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LineMarker.cxx; path = ../../src/stc/scintilla/src/LineMarker.cxx; sourceTree = SOURCE_ROOT; }; - 5CB4781DF8C432C688F30CDD /* ftp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ftp.cpp; path = ../../src/common/ftp.cpp; sourceTree = SOURCE_ROOT; }; - CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = choicdgg.cpp; path = ../../src/generic/choicdgg.cpp; sourceTree = SOURCE_ROOT; }; - 2AFC4A1CDA473688A590D19F /* utilscocoa.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utilscocoa.mm; path = ../../src/osx/carbon/utilscocoa.mm; sourceTree = SOURCE_ROOT; }; - 36F7955F8075343C8A9953DB /* LexPowerShell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerShell.cxx; path = ../../src/stc/lexilla/lexers/LexPowerShell.cxx; sourceTree = SOURCE_ROOT; }; - 83A94241BCB13767AFEC5946 /* checklstcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checklstcmn.cpp; path = ../../src/common/checklstcmn.cpp; sourceTree = SOURCE_ROOT; }; - 087B66573CD33DA99DA82B1C /* xmlres.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmlres.cpp; path = ../../src/xrc/xmlres.cpp; sourceTree = SOURCE_ROOT; }; - 160EB9744CB63A0B81DC651F /* hid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hid.cpp; path = ../../src/osx/core/hid.cpp; sourceTree = SOURCE_ROOT; }; - 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listbkg.cpp; path = ../../src/generic/listbkg.cpp; sourceTree = SOURCE_ROOT; }; - AA90128E29A03CCCA30F4D35 /* vlbox.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vlbox.cpp; path = ../../src/generic/vlbox.cpp; sourceTree = SOURCE_ROOT; }; - 24DF23D67E693D999B875101 /* toolbkg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbkg.cpp; path = ../../src/generic/toolbkg.cpp; sourceTree = SOURCE_ROOT; }; - 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mimecmn.cpp; path = ../../src/common/mimecmn.cpp; sourceTree = SOURCE_ROOT; }; - 5FDE0AC63C4639E4BFD3B582 /* LexOpal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexOpal.cxx; path = ../../src/stc/lexilla/lexers/LexOpal.cxx; sourceTree = SOURCE_ROOT; }; - B83EDE2D1731311ABDE62F9F /* tif_strip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = tif_strip.c; path = ../../src/tiff/libtiff/tif_strip.c; sourceTree = SOURCE_ROOT; }; - CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = webviewfshandler.cpp; path = ../../src/common/webviewfshandler.cpp; sourceTree = SOURCE_ROOT; }; - 998D611109EC33A9A6A11C5A /* gdicmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdicmn.cpp; path = ../../src/common/gdicmn.cpp; sourceTree = SOURCE_ROOT; }; - B6AADC1056E03A3B80C20C5B /* LexBasic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexBasic.cxx; path = ../../src/stc/lexilla/lexers/LexBasic.cxx; sourceTree = SOURCE_ROOT; }; - 889FFA9573A835F280A21CB4 /* xh_html.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_html.cpp; path = ../../src/xrc/xh_html.cpp; sourceTree = SOURCE_ROOT; }; - 7195E665E0F233839B967FC9 /* timercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timercmn.cpp; path = ../../src/common/timercmn.cpp; sourceTree = SOURCE_ROOT; }; - D73954EB5397301F87881646 /* statboxcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = statboxcmn.cpp; path = ../../src/common/statboxcmn.cpp; sourceTree = SOURCE_ROOT; }; - 76337016F2CA3C85831702E6 /* grid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grid.cpp; path = ../../src/generic/grid.cpp; sourceTree = SOURCE_ROOT; }; - 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = powercmn.cpp; path = ../../src/common/powercmn.cpp; sourceTree = SOURCE_ROOT; }; - 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = mediactrl.mm; path = ../../src/osx/cocoa/mediactrl.mm; sourceTree = SOURCE_ROOT; }; - D73962222F573116BE63576C /* xh_propgrid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_propgrid.cpp; path = ../../src/xrc/xh_propgrid.cpp; sourceTree = SOURCE_ROOT; }; - E0EBCDDF248638B58B01D9CC /* datetime.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datetime.cpp; path = ../../src/common/datetime.cpp; sourceTree = SOURCE_ROOT; }; - DF5A2C3521A43C9CBBB3C878 /* LexerModule.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexerModule.cxx; path = ../../src/stc/lexilla/lexlib/LexerModule.cxx; sourceTree = SOURCE_ROOT; }; - CBA9036479943A4990CEB3AC /* webview_chromium.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webview_chromium.mm; path = ../../src/osx/webview_chromium.mm; sourceTree = SOURCE_ROOT; }; - 4F8E4A9905843A4683A6B460 /* LexProgress.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexProgress.cxx; path = ../../src/stc/lexilla/lexers/LexProgress.cxx; sourceTree = SOURCE_ROOT; }; - BB7661E9E09A397790ED9545 /* sockunix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sockunix.cpp; path = ../../src/unix/sockunix.cpp; sourceTree = SOURCE_ROOT; }; - B4028ABB08C63AB59F5F240B /* m_list.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_list.cpp; path = ../../src/html/m_list.cpp; sourceTree = SOURCE_ROOT; }; - 0BF1F491B8A8376E8E2E8182 /* cursor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cursor.cpp; path = ../../src/osx/carbon/cursor.cpp; sourceTree = SOURCE_ROOT; }; - BFA50405234C30EEA3F77F17 /* filepickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filepickercmn.cpp; path = ../../src/common/filepickercmn.cpp; sourceTree = SOURCE_ROOT; }; - 5ED2105A5A033E3384EBC4ED /* selstore.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selstore.cpp; path = ../../src/generic/selstore.cpp; sourceTree = SOURCE_ROOT; }; - 326723AEB79A305F90D6B41D /* advprops.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = advprops.cpp; path = ../../src/propgrid/advprops.cpp; sourceTree = SOURCE_ROOT; }; - 789F45D14FF23E248FCFB5FA /* utils.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = utils.mm; path = ../../src/osx/iphone/utils.mm; sourceTree = SOURCE_ROOT; }; - 66426B63AA3E3A279936C034 /* grideditors.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grideditors.cpp; path = ../../src/generic/grideditors.cpp; sourceTree = SOURCE_ROOT; }; - DA5E95D498C53A808A8E2EEB /* Editor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Editor.cxx; path = ../../src/stc/scintilla/src/Editor.cxx; sourceTree = SOURCE_ROOT; }; - AB8A747FB60239B9AB710264 /* clrpickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrpickercmn.cpp; path = ../../src/common/clrpickercmn.cpp; sourceTree = SOURCE_ROOT; }; - 1B7308D9C4BA39F19223C82C /* tglbtn_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tglbtn_osx.cpp; path = ../../src/osx/tglbtn_osx.cpp; sourceTree = SOURCE_ROOT; }; - B7581D7140293BAE88E43DBE /* fs_inet.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_inet.cpp; path = ../../src/common/fs_inet.cpp; sourceTree = SOURCE_ROOT; }; - 776CD7F5B0673B4688F2EC92 /* dcgraph.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcgraph.cpp; path = ../../src/common/dcgraph.cpp; sourceTree = SOURCE_ROOT; }; - 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evtloop_cf.cpp; path = ../../src/osx/core/evtloop_cf.cpp; sourceTree = SOURCE_ROOT; }; - A06AB1974DB93EE2999EC75C /* pngrio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pngrio.c; path = ../../src/png/pngrio.c; sourceTree = SOURCE_ROOT; }; - 5FEECFD764E037288CE94FEB /* webview_webkit.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webview_webkit.mm; path = ../../src/osx/webview_webkit.mm; sourceTree = SOURCE_ROOT; }; - EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_wizrd.cpp; path = ../../src/xrc/xh_wizrd.cpp; sourceTree = SOURCE_ROOT; }; - 12363D1F50FE301DAEE7F04B /* control.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = control.cpp; path = ../../src/ribbon/control.cpp; sourceTree = SOURCE_ROOT; }; - 9EF09C7CC5413CC6A5E7B21B /* LexCPP.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCPP.cxx; path = ../../src/stc/lexilla/lexers/LexCPP.cxx; sourceTree = SOURCE_ROOT; }; - 81821049E39B32C6ABCF6820 /* helpdlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdlg.cpp; path = ../../src/html/helpdlg.cpp; sourceTree = SOURCE_ROOT; }; - 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_gauge.cpp; path = ../../src/xrc/xh_gauge.cpp; sourceTree = SOURCE_ROOT; }; + 5AEE6E05595831D3B0FEC57C /* LexDiff.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexDiff.cxx; path = ../../src/stc/lexilla/lexers/LexDiff.cxx; sourceTree = SOURCE_ROOT; }; + C63C964DAFAD311694367C94 /* xh_datectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_datectrl.cpp; path = ../../src/xrc/xh_datectrl.cpp; sourceTree = SOURCE_ROOT; }; 530DC2E26BF2313E8702AD43 /* popupwin.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupwin.cpp; path = ../../src/osx/carbon/popupwin.cpp; sourceTree = SOURCE_ROOT; }; - F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_panel.cpp; path = ../../src/xrc/xh_panel.cpp; sourceTree = SOURCE_ROOT; }; - 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgridpagestate.cpp; path = ../../src/propgrid/propgridpagestate.cpp; sourceTree = SOURCE_ROOT; }; - 81B3DFBB73573FFDBD320334 /* datstrm.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datstrm.cpp; path = ../../src/common/datstrm.cpp; sourceTree = SOURCE_ROOT; }; - D037EA567C253DEEA17E822B /* mousemanager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mousemanager.cpp; path = ../../src/common/mousemanager.cpp; sourceTree = SOURCE_ROOT; }; - 303ACF199BE431BD891C9301 /* overlaycmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = overlaycmn.cpp; path = ../../src/common/overlaycmn.cpp; sourceTree = SOURCE_ROOT; }; - AE856D950B8C369EB0FE13BA /* datectlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datectlg.cpp; path = ../../src/generic/datectlg.cpp; sourceTree = SOURCE_ROOT; }; - 2B5A9DF3206B3954A4B38BFD /* clrpickerg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clrpickerg.cpp; path = ../../src/generic/clrpickerg.cpp; sourceTree = SOURCE_ROOT; }; - 15CBD0AAFEB435429EA96D41 /* LexInno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexInno.cxx; path = ../../src/stc/lexilla/lexers/LexInno.cxx; sourceTree = SOURCE_ROOT; }; - B98B72B3A0A73044B85AED60 /* propgrid.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propgrid.cpp; path = ../../src/propgrid/propgrid.cpp; sourceTree = SOURCE_ROOT; }; - 0C7F18C26877336DBE638D75 /* LexCIL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCIL.cxx; path = ../../src/stc/lexilla/lexers/LexCIL.cxx; sourceTree = SOURCE_ROOT; }; - E6AB648BC5173104A96CAE66 /* xml.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xml.cpp; path = ../../src/xml/xml.cpp; sourceTree = SOURCE_ROOT; }; - F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sysopt.cpp; path = ../../src/common/sysopt.cpp; sourceTree = SOURCE_ROOT; }; - 67DCEEB6861731319C30817F /* cshelp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cshelp.cpp; path = ../../src/common/cshelp.cpp; sourceTree = SOURCE_ROOT; }; - 4FDE5A962FA234FA83A605AD /* Indicator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Indicator.cxx; path = ../../src/stc/scintilla/src/Indicator.cxx; sourceTree = SOURCE_ROOT; }; - B3645350F572364BABF50238 /* containr.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = containr.cpp; path = ../../src/common/containr.cpp; sourceTree = SOURCE_ROOT; }; - EDC7345501033EC3AAD53D5F /* fddlgcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fddlgcmn.cpp; path = ../../src/common/fddlgcmn.cpp; sourceTree = SOURCE_ROOT; }; - B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_toolbk.cpp; path = ../../src/xrc/xh_toolbk.cpp; sourceTree = SOURCE_ROOT; }; + AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_clrpicker.cpp; path = ../../src/xrc/xh_clrpicker.cpp; sourceTree = SOURCE_ROOT; }; + EE959EC7BFDD3A628E856404 /* anidecod.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anidecod.cpp; path = ../../src/common/anidecod.cpp; sourceTree = SOURCE_ROOT; }; + CBA9036479943A4990CEB3AC /* webview_chromium.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = webview_chromium.mm; path = ../../src/osx/webview_chromium.mm; sourceTree = SOURCE_ROOT; }; + A9D5CF9CC4553336916FB27B /* fontpickercmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontpickercmn.cpp; path = ../../src/common/fontpickercmn.cpp; sourceTree = SOURCE_ROOT; }; + F263022F3FEA3F75895B644D /* filesys.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filesys.cpp; path = ../../src/common/filesys.cpp; sourceTree = SOURCE_ROOT; }; + 302A13BC64C238A297F4399F /* brush.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brush.cpp; path = ../../src/osx/brush.cpp; sourceTree = SOURCE_ROOT; }; + 1BC0322549563787A21CE8F1 /* LexNsis.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexNsis.cxx; path = ../../src/stc/lexilla/lexers/LexNsis.cxx; sourceTree = SOURCE_ROOT; }; 2F3EE2E9EE05311497826962 /* LexMySQL.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexMySQL.cxx; path = ../../src/stc/lexilla/lexers/LexMySQL.cxx; sourceTree = SOURCE_ROOT; }; - 7EB95BCFA255323183A996C9 /* m_style.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = m_style.cpp; path = ../../src/html/m_style.cpp; sourceTree = SOURCE_ROOT; }; - FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cpp; path = ../../src/common/stream.cpp; sourceTree = SOURCE_ROOT; }; - 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_stbmp.cpp; path = ../../src/xrc/xh_stbmp.cpp; sourceTree = SOURCE_ROOT; }; - 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdpbase.cpp; path = ../../src/common/stdpbase.cpp; sourceTree = SOURCE_ROOT; }; - 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bmp.cpp; path = ../../src/xrc/xh_bmp.cpp; sourceTree = SOURCE_ROOT; }; - A9E441D48CB73EF2BFD6C384 /* scrolbarcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrolbarcmn.cpp; path = ../../src/common/scrolbarcmn.cpp; sourceTree = SOURCE_ROOT; }; - D1EE17722EA937E88A7F0C01 /* dcbase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dcbase.cpp; path = ../../src/common/dcbase.cpp; sourceTree = SOURCE_ROOT; }; - 9720FFA4490D3AC38E53BE03 /* StyleContext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = StyleContext.cxx; path = ../../src/stc/lexilla/lexlib/StyleContext.cxx; sourceTree = SOURCE_ROOT; }; - D76B3D3BD33E3775BEAB4737 /* LexVerilog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexVerilog.cxx; path = ../../src/stc/lexilla/lexers/LexVerilog.cxx; sourceTree = SOURCE_ROOT; }; - C466F32CCBD13DBC87285B3D /* helpdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdata.cpp; path = ../../src/html/helpdata.cpp; sourceTree = SOURCE_ROOT; }; - 30BBE92ADD8A37C992B4F919 /* LexGAP.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexGAP.cxx; path = ../../src/stc/lexilla/lexers/LexGAP.cxx; sourceTree = SOURCE_ROOT; }; - 59572A234F0636D78BFD9F6B /* spinctlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spinctlg.cpp; path = ../../src/generic/spinctlg.cpp; sourceTree = SOURCE_ROOT; }; - 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hyperlnkcmn.cpp; path = ../../src/common/hyperlnkcmn.cpp; sourceTree = SOURCE_ROOT; }; - 22D9626646773CED82449D5D /* persist.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = persist.cpp; path = ../../src/common/persist.cpp; sourceTree = SOURCE_ROOT; }; - 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dirctrlg.cpp; path = ../../src/generic/dirctrlg.cpp; sourceTree = SOURCE_ROOT; }; - EC28591B403B32B7AFCC079D /* gauge_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gauge_osx.cpp; path = ../../src/osx/gauge_osx.cpp; sourceTree = SOURCE_ROOT; }; - 7013DB195D023C31ADE68546 /* crc32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = crc32.c; path = ../../src/zlib/crc32.c; sourceTree = SOURCE_ROOT; }; - 26D7C4995D7A35A1854B533F /* window_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window_osx.cpp; path = ../../src/osx/window_osx.cpp; sourceTree = SOURCE_ROOT; }; - D0C3A635C8BD3FA6BD47975F /* LexPerl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexPerl.cxx; path = ../../src/stc/lexilla/lexers/LexPerl.cxx; sourceTree = SOURCE_ROOT; }; - F52DCBC0442233738B39138E /* CaseFolder.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CaseFolder.cxx; path = ../../src/stc/scintilla/src/CaseFolder.cxx; sourceTree = SOURCE_ROOT; }; - 7FCA75FE592C3469AE351FBF /* winpars.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winpars.cpp; path = ../../src/html/winpars.cpp; sourceTree = SOURCE_ROOT; }; - A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_string_utils.c; path = ../../3rdparty/pcre/src/pcre2_string_utils.c; sourceTree = SOURCE_ROOT; }; - A1276C0E5D48337489DEE8DF /* LexErlang.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexErlang.cxx; path = ../../src/stc/lexilla/lexers/LexErlang.cxx; sourceTree = SOURCE_ROOT; }; - 375E7A99FF4C38FA9E223772 /* LexAda.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexAda.cxx; path = ../../src/stc/lexilla/lexers/LexAda.cxx; sourceTree = SOURCE_ROOT; }; - AC12D557950A3B0D89D9F2F3 /* fileback.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileback.cpp; path = ../../src/common/fileback.cpp; sourceTree = SOURCE_ROOT; }; - E89AC104BF4F33A083F8B382 /* jccoefct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jccoefct.c; path = ../../src/jpeg/jccoefct.c; sourceTree = SOURCE_ROOT; }; - 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_gdctl.cpp; path = ../../src/xrc/xh_gdctl.cpp; sourceTree = SOURCE_ROOT; }; - 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = pcre2_ucd.c; path = ../../3rdparty/pcre/src/pcre2_ucd.c; sourceTree = SOURCE_ROOT; }; - 757B31FCCA1F381C95B30DF8 /* app.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cpp; path = ../../src/osx/carbon/app.cpp; sourceTree = SOURCE_ROOT; }; - 00BC2298BC7A33B7A68584FE /* bookctrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bookctrl.cpp; path = ../../src/common/bookctrl.cpp; sourceTree = SOURCE_ROOT; }; - C25521AF59B9324EB2809C73 /* XPM.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = XPM.cxx; path = ../../src/stc/scintilla/src/XPM.cxx; sourceTree = SOURCE_ROOT; }; - 16A093604BDB3C22BA66EA89 /* LexCrontab.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LexCrontab.cxx; path = ../../src/stc/lexilla/lexers/LexCrontab.cxx; sourceTree = SOURCE_ROOT; }; - B558F1ED9346332D8C4BDFBC /* headercolcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headercolcmn.cpp; path = ../../src/common/headercolcmn.cpp; sourceTree = SOURCE_ROOT; }; - 972BC9B2B0D438EFB12BCE1E /* rearrangectrl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rearrangectrl.cpp; path = ../../src/common/rearrangectrl.cpp; sourceTree = SOURCE_ROOT; }; - 23FC98E2305230E2990471E3 /* wxcrt.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wxcrt.cpp; path = ../../src/common/wxcrt.cpp; sourceTree = SOURCE_ROOT; }; - BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_chckb.cpp; path = ../../src/xrc/xh_chckb.cpp; sourceTree = SOURCE_ROOT; }; - 87D973CA8D673267BD0844D3 /* paper.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paper.cpp; path = ../../src/common/paper.cpp; sourceTree = SOURCE_ROOT; }; - 6CD29E47B69D3F3482665E77 /* toolbar_osx.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbar_osx.cpp; path = ../../src/osx/toolbar_osx.cpp; sourceTree = SOURCE_ROOT; }; - AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fs_filter.cpp; path = ../../src/common/fs_filter.cpp; sourceTree = SOURCE_ROOT; }; - 0D3BD03BCE953D1B964EDB7A /* colourdata.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colourdata.cpp; path = ../../src/common/colourdata.cpp; sourceTree = SOURCE_ROOT; }; - D4E1DC1869C6327C80D2F5F4 /* uri.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uri.cpp; path = ../../src/common/uri.cpp; sourceTree = SOURCE_ROOT; }; - 30C0FB3166DD31A893AE98E2 /* fontcmn.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontcmn.cpp; path = ../../src/common/fontcmn.cpp; sourceTree = SOURCE_ROOT; }; + 3116006345D833509865FF7F /* xh_bannerwindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_bannerwindow.cpp; path = ../../src/xrc/xh_bannerwindow.cpp; sourceTree = SOURCE_ROOT; }; + 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = jutils.c; path = ../../src/jpeg/jutils.c; sourceTree = SOURCE_ROOT; }; + 194ADD28300E329E80F7892E /* htmprint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmprint.cpp; path = ../../src/html/htmprint.cpp; sourceTree = SOURCE_ROOT; }; + E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xh_frame.cpp; path = ../../src/xrc/xh_frame.cpp; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -1908,501 +1908,53 @@ name = Frameworks; sourceTree = ""; }; - 7650A73F7FC9305EA62DAE86 /* libjpeg */ = { + 2BE6C101F29D318895158F98 /* libscintilla */ = { isa = PBXGroup; children = ( - 573D0D15EE9E3E629D61EA65 /* jaricom.c */, - 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */, - F83172EE2DAE352FB969D4F2 /* jcapistd.c */, - AA234ACC79743DA797601AA6 /* jcarith.c */, - E89AC104BF4F33A083F8B382 /* jccoefct.c */, - 8EFF4707641D3F20AB602ED6 /* jccolor.c */, - 6DBF3053414F3C448312165A /* jcdctmgr.c */, - DC0FFDC7A6163F2DA73B84EB /* jchuff.c */, - AA6C6739C3BD3EFA9CF71102 /* jcinit.c */, - 810EB7316DF3344197C78EC0 /* jcmainct.c */, - 664736BDE465350C9C4750E9 /* jcmarker.c */, - 3E3043D7BE9C33B59E900CCE /* jcmaster.c */, - 8EB76F786D7F3FF286948D22 /* jcomapi.c */, - 2F41EDEB298538CC86FF6DC1 /* jcparam.c */, - 7FE0455EBDC63D82B2D88587 /* jcprepct.c */, - 53D06E47477B3E32BB6B915E /* jcsample.c */, - 725574EF98C4301989181CBF /* jctrans.c */, - 86884BC843F6337EABF744BB /* jdapimin.c */, - 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */, - FA9DD56E399533A5BE7AAD16 /* jdarith.c */, - 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */, - DECAF5DD80383A2CA76EB383 /* jdatasrc.c */, - F1A6F3936A0D31CBB58082BA /* jdcoefct.c */, - 68B81FBDA49D3C1991B6356A /* jdcolor.c */, - A5BBC1E494D33D028CA547FF /* jddctmgr.c */, - 72869747E68E37998CB0A07E /* jdhuff.c */, - CCF7564A2B733F759AA8496B /* jdinput.c */, - B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */, - 20E4A10BCD773C84AEC481A1 /* jdmarker.c */, - ED19EF377E653F71B1876259 /* jdmaster.c */, - 0890779C662C35889A8C6C2E /* jdmerge.c */, - 375FF97B202F3C359402D13E /* jdpostct.c */, - 5FFCF47A161B3E08B19BFE14 /* jdsample.c */, - 4549845C0751356A907C23E0 /* jdtrans.c */, - 108517BCD39230E7A89BC943 /* jerror.c */, - 93D07403FCA530D7A9FD2917 /* jfdctflt.c */, - 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */, - 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */, - 3C131F7BF8A83960ACB26242 /* jidctflt.c */, - A0DCC5EF59143640BE13AD73 /* jidctfst.c */, - 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */, - 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */, - 374E341C8703367686DEDE93 /* jmemnobs.c */, - 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */, - 02D9332D5C5632E981936E29 /* jquant2.c */, - 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */, + C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */, + 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */, + 274A156457C63EC5801029C2 /* CaseConvert.cxx */, + F52DCBC0442233738B39138E /* CaseFolder.cxx */, + E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */, + 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */, + 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */, + B883F991159731DCB2717A21 /* CharacterSet.cxx */, + 5219A792C6A736F193D4A82F /* ContractionState.cxx */, + CDF592CBE5193497A26EF978 /* DBCS.cxx */, + BF1C44D726E63B18A98006EC /* Decoration.cxx */, + 71DB140E670738839EC42C2B /* Document.cxx */, + E685D81FB9FF3081B6C5C321 /* EditModel.cxx */, + 430739CB8B95336ABB372EC7 /* EditView.cxx */, + DA5E95D498C53A808A8E2EEB /* Editor.cxx */, + 4FDE5A962FA234FA83A605AD /* Indicator.cxx */, + E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */, + AF3DF03795153E039B8F1F87 /* LineMarker.cxx */, + F951601E73683F27AD8CA99D /* MarginView.cxx */, + 9389DAF8B91030B7AAB029FF /* PerLine.cxx */, + BCD873D873A53BBF955D8A4E /* PositionCache.cxx */, + E145FC31ED523B4AA5080A61 /* RESearch.cxx */, + 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */, + 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */, + 2AF7739C389536F79DAA31E5 /* Selection.cxx */, + C28429A964C337A192D76CC8 /* Style.cxx */, + 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */, + 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */, + C133B838193A35ABBB803151 /* ViewStyle.cxx */, + C25521AF59B9324EB2809C73 /* XPM.cxx */, ); - name = libjpeg; + name = libscintilla; sourceTree = ""; }; - EB288BE7E74B3328B762A461 /* libtiff */ = { + AA960FB143A63667839CE793 /* qa */ = { isa = PBXGroup; children = ( - 5D2F8259CC99380CB8217DEF /* tif_unix.c */, - D0CDADAF2D893E32A38351E4 /* tif_aux.c */, - F82278F9AF0432529891E6D7 /* tif_close.c */, - 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */, - 149D299A0EDB3D998118EC93 /* tif_color.c */, - CA0D5D47D62A3148BA51B31B /* tif_compress.c */, - E79B2D1F630036129B9677A7 /* tif_dir.c */, - 032A38738B58394E8617617B /* tif_dirinfo.c */, - F6EA240B3DB93D398A990FAD /* tif_dirread.c */, - B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */, - 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */, - 48F1439BF6C3361296F05A33 /* tif_error.c */, - AF7CE00168AB33C994374ABA /* tif_extension.c */, - 30FD1048328234E59D319863 /* tif_fax3.c */, - BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */, - 305614D19CF23CB2B14A5B2E /* tif_flush.c */, - 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */, - F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */, - 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */, - 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */, - 66FDA882451239EA8DF2E0B5 /* tif_luv.c */, - 3088384F07C63A5DB3581656 /* tif_lzma.c */, - 346C68F0CCD23823B78267F0 /* tif_lzw.c */, - DFDC805DD3063C389F93642D /* tif_next.c */, - 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */, - 1731A6096BFC3A468AB4755A /* tif_open.c */, - 9CE73979D0933A43830307E4 /* tif_packbits.c */, - 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */, - 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */, - 64B25B87203E3464BCDD277D /* tif_read.c */, - B83EDE2D1731311ABDE62F9F /* tif_strip.c */, - AAC12B4456E13F57BEA25A5E /* tif_swab.c */, - 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */, - BD88495AF72531A28D2201D0 /* tif_tile.c */, - 3E6F40F4740C3ED29D83E107 /* tif_version.c */, - C83C97A1FCC5345896C9D7DE /* tif_warning.c */, - 3716DA7B0C79360CBA26A71E /* tif_webp.c */, - E9B992CB6C28339FB0CA5E27 /* tif_write.c */, - 726C0457DF1232C793918DC1 /* tif_zip.c */, - 3B98123FD57731139044B064 /* tif_zstd.c */, + 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */, + 182C8AD4F822375495795B43 /* dbgrptg.cpp */, ); - name = libtiff; + name = qa; sourceTree = ""; }; - B1EF68113C6338CFBBED0FBE /* libregex */ = { - isa = PBXGroup; - children = ( - C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */, - BDADEB1DA6433E52972C8934 /* pcre2_compile.c */, - FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */, - 3026D20A03E53F1DB40FB35A /* pcre2_context.c */, - BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */, - 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */, - 25E03E349FC13E4A9428B94E /* pcre2_error.c */, - F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */, - 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */, - 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */, - D016F584D14C31E192DB3179 /* pcre2_maketables.c */, - 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */, - 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */, - A208BFC0C8C43847A9620ADA /* pcre2_newline.c */, - 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */, - 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */, - 2F4CDF9048EC36788619769D /* pcre2_script_run.c */, - BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */, - A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */, - 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */, - FAC42945539F362D91D6F559 /* pcre2_substitute.c */, - 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */, - B60497805D37375EBFCF3D98 /* pcre2_tables.c */, - 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */, - FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */, - 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */, - 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */, - ); - name = libregex; - sourceTree = ""; - }; - 52DDFBAA5ACC394FB6B30E74 /* libzlib */ = { - isa = PBXGroup; - children = ( - 0E45F6DF601A34BCB3CC0206 /* adler32.c */, - D4C4495603293C07A3B09D54 /* compress.c */, - 7013DB195D023C31ADE68546 /* crc32.c */, - 3CF73F49AEC238C99CE89845 /* deflate.c */, - 7A24E9101688368296C21EBE /* gzclose.c */, - 7395814D42CC38F6B8CD81B4 /* gzlib.c */, - BAD4614CABC934D6AFF8D9CD /* gzread.c */, - 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */, - FDB0E2D0966C3E408C4A2D3D /* infback.c */, - 400275BE019D3E5BA47988BE /* inffast.c */, - B5370A676AAC32419D7FDD87 /* inflate.c */, - 9D6B0D32537D35069C7E053F /* inftrees.c */, - 95B4EDF38F8A3E5EBAFF560F /* trees.c */, - 513033E36E643593AC305B3D /* uncompr.c */, - 4CB467F9898C3952A68D988B /* zutil.c */, - ); - name = libzlib; - sourceTree = ""; - }; - E96566B813153B4295AD767B /* stc */ = { - isa = PBXGroup; - children = ( - D0B9C41A4D12345AAA764CAD /* stc.cpp */, - 47FF6D792CA234C395692118 /* PlatWX.cpp */, - 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */, - A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */, - ); - name = stc; - sourceTree = ""; - }; - 2FF0B5E0505D3AEA9A4ACF11 /* adv */ = { - isa = PBXGroup; - children = ( - ); - name = adv; - sourceTree = ""; - }; - 62E50658BDAD369D92294F68 /* webview */ = { - isa = PBXGroup; - children = ( - CBA9036479943A4990CEB3AC /* webview_chromium.mm */, - 5FEECFD764E037288CE94FEB /* webview_webkit.mm */, - 0DA80913C0E33144A42BD30F /* webview.cpp */, - 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */, - CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */, - 2718D06670953933B897B0D8 /* webview_chromium.cpp */, - ); - name = webview; - sourceTree = ""; - }; - 374BD863E6AD33189B7E4040 /* net */ = { - isa = PBXGroup; - children = ( - B7581D7140293BAE88E43DBE /* fs_inet.cpp */, - 5CB4781DF8C432C688F30CDD /* ftp.cpp */, - F84F0DB790A23D92A193D2B4 /* http.cpp */, - 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */, - DE8238DA30FF3FB984511250 /* sckaddr.cpp */, - 56653FACC7D13804A70556AD /* sckfile.cpp */, - 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */, - D784A32C094730FEAA391A9B /* sckstrm.cpp */, - 40CE02524DD4385AB2C3DF95 /* socket.cpp */, - 49612306912038DDBCABB4DE /* url.cpp */, - 5EA9E372A64B3B808A64B178 /* webrequest.cpp */, - 5279968877003A8BB8279765 /* webrequest_curl.cpp */, - DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */, - BB7661E9E09A397790ED9545 /* sockunix.cpp */, - 4969528429903F15882F5391 /* sockosx.cpp */, - EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */, - ); - name = net; - sourceTree = ""; - }; - 2BE6C101F29D318895158F98 /* libscintilla */ = { - isa = PBXGroup; - children = ( - C63C3983BD243D55AF88DD67 /* AutoComplete.cxx */, - 4F58B88D42A93BD0B74ADF75 /* CallTip.cxx */, - 274A156457C63EC5801029C2 /* CaseConvert.cxx */, - F52DCBC0442233738B39138E /* CaseFolder.cxx */, - E860DD54EEBF3119961B7BB1 /* CellBuffer.cxx */, - 5AFB85719CBC3D60BA2EDC2E /* CharClassify.cxx */, - 308B9C05F5A839B5BE8ACBE9 /* CharacterCategory.cxx */, - B883F991159731DCB2717A21 /* CharacterSet.cxx */, - 5219A792C6A736F193D4A82F /* ContractionState.cxx */, - CDF592CBE5193497A26EF978 /* DBCS.cxx */, - BF1C44D726E63B18A98006EC /* Decoration.cxx */, - 71DB140E670738839EC42C2B /* Document.cxx */, - E685D81FB9FF3081B6C5C321 /* EditModel.cxx */, - 430739CB8B95336ABB372EC7 /* EditView.cxx */, - DA5E95D498C53A808A8E2EEB /* Editor.cxx */, - 4FDE5A962FA234FA83A605AD /* Indicator.cxx */, - E72CF5F9C1E53BCFAA2BC253 /* KeyMap.cxx */, - AF3DF03795153E039B8F1F87 /* LineMarker.cxx */, - F951601E73683F27AD8CA99D /* MarginView.cxx */, - 9389DAF8B91030B7AAB029FF /* PerLine.cxx */, - BCD873D873A53BBF955D8A4E /* PositionCache.cxx */, - E145FC31ED523B4AA5080A61 /* RESearch.cxx */, - 7E0DD59CA6F8337C9964F954 /* RunStyles.cxx */, - 9BB9CE48AE853C47A1D157AE /* ScintillaBase.cxx */, - 2AF7739C389536F79DAA31E5 /* Selection.cxx */, - C28429A964C337A192D76CC8 /* Style.cxx */, - 1C4ABE16C5A13979827F4F7C /* UniConversion.cxx */, - 472ED4631A4A33E49DE8DA54 /* UniqueString.cxx */, - C133B838193A35ABBB803151 /* ViewStyle.cxx */, - C25521AF59B9324EB2809C73 /* XPM.cxx */, - ); - name = libscintilla; - sourceTree = ""; - }; - 60328E6EA3793DA990E18FC1 /* xrc */ = { - isa = PBXGroup; - children = ( - BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */, - 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */, - 3116006345D833509865FF7F /* xh_bannerwindow.cpp */, - 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */, - 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */, - 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */, - 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */, - 093B5233861B3F9B8C85762B /* xh_cald.cpp */, - BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */, - EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */, - 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */, - CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */, - AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */, - D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */, - F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */, - F0905A1EBD653F6D82395602 /* xh_combo.cpp */, - 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */, - 616466F521DB3ECAB304289F /* xh_dataview.cpp */, - C63C964DAFAD311694367C94 /* xh_datectrl.cpp */, - BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */, - 06B4A895955B32258DCD62BF /* xh_dlg.cpp */, - 05310A868F0B35999C568681 /* xh_editlbox.cpp */, - 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */, - 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */, - 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */, - E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */, - 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */, - 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */, - 93B77251C0E0382D9A8E113D /* xh_grid.cpp */, - 889FFA9573A835F280A21CB4 /* xh_html.cpp */, - B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */, - 45C65E309F3A39598C043657 /* xh_infobar.cpp */, - B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */, - 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */, - 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */, - 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */, - D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */, - A87662D69F0432FC96701280 /* xh_notbk.cpp */, - 0080254545B9383ABDF2045C /* xh_odcombo.cpp */, - F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */, - 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */, - 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */, - F43AF44465B335479752116D /* xh_radbx.cpp */, - 66411D54BAD338498AC59401 /* xh_scrol.cpp */, - E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */, - 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */, - 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */, - 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */, - 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */, - 950D51915EF83B57B5E8306F /* xh_spin.cpp */, - EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */, - FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */, - FADE850169F7347F83FE1499 /* xh_statbar.cpp */, - 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */, - 147800BBCB80346798B35D75 /* xh_stbox.cpp */, - 5F555177554E398286DBC6FB /* xh_stlin.cpp */, - B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */, - 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */, - CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */, - 25A81E9028793C109D868068 /* xh_timectrl.cpp */, - 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */, - B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */, - 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */, - B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */, - 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */, - EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */, - 087B66573CD33DA99DA82B1C /* xmlres.cpp */, - 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */, - 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */, - ); - name = xrc; - sourceTree = ""; - }; - 60E51BFF5CD2327483201F14 /* html */ = { - isa = PBXGroup; - children = ( - 2E24C6F2A04E30EB95598305 /* chm.cpp */, - 42E433D1700631A8907B8227 /* helpctrl.cpp */, - C466F32CCBD13DBC87285B3D /* helpdata.cpp */, - 81821049E39B32C6ABCF6820 /* helpdlg.cpp */, - 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */, - 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */, - 68E5188DB6003C35A8C7754D /* htmlcell.cpp */, - 2C6C4F5468743265A02D656C /* htmlfilt.cpp */, - 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */, - FCCFF49F92B4323D9181CEDA /* htmltag.cpp */, - 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */, - 194ADD28300E329E80F7892E /* htmprint.cpp */, - 52FE1599218730CC99A3F801 /* m_dflist.cpp */, - B1F3C70512D93501B0478F3E /* m_fonts.cpp */, - ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */, - 548906E4E72935E48CE4AF87 /* m_image.cpp */, - A5EE0B8985443BDCB36F781F /* m_layout.cpp */, - 080597FC0436378E96EDA94B /* m_links.cpp */, - B4028ABB08C63AB59F5F240B /* m_list.cpp */, - 61658C3EABB4341AA38C691E /* m_pre.cpp */, - 727F25F832AD32D4B12D8E39 /* m_span.cpp */, - 7EB95BCFA255323183A996C9 /* m_style.cpp */, - 082CA018FB883999839C1DCE /* m_tables.cpp */, - 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */, - 7FCA75FE592C3469AE351FBF /* winpars.cpp */, - FD5F11A3646F397BA62EB037 /* htmllbox.cpp */, - ); - name = html; - sourceTree = ""; - }; - 83F62FA47C9636169F1E18E8 /* base */ = { - isa = PBXGroup; - children = ( - 4867546E8B8D3C8683A23ED5 /* any.cpp */, - 95A156A823B536DE8476E4F9 /* appbase.cpp */, - 75D0C937F2A03ADA8581A2BB /* arcall.cpp */, - C513377E9E303F778BA9D7ED /* arcfind.cpp */, - 02D2E8B5C89939CE90B99E2B /* archive.cpp */, - A57CF60203F53459A03951A9 /* arrstr.cpp */, - F2024D29170D3B50A4DFDE11 /* base64.cpp */, - 2C904B4BA8273355869812B2 /* clntdata.cpp */, - FBE1C531185131A89EFF7FAF /* cmdline.cpp */, - 4FE0B33481283D3493613B0F /* config.cpp */, - 20B922D61CDB3CCEB59A5194 /* convauto.cpp */, - E0EBCDDF248638B58B01D9CC /* datetime.cpp */, - 864438709B363773B8C3382D /* datetimefmt.cpp */, - 81B3DFBB73573FFDBD320334 /* datstrm.cpp */, - EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */, - D272910EC35531E5B4D6E05B /* dynlib.cpp */, - 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */, - C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */, - 640783FBACA43206B782C77B /* evtloopcmn.cpp */, - 033B94A9AC8A3370A794503F /* extended.c */, - ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */, - 168DB301ACC736FF96D7F581 /* file.cpp */, - AC12D557950A3B0D89D9F2F3 /* fileback.cpp */, - 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */, - 58421C141C9E31C6A7A3C183 /* filefn.cpp */, - BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */, - F263022F3FEA3F75895B644D /* filesys.cpp */, - 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */, - EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */, - 832BBBFE664736D5978420C6 /* fmapbase.cpp */, - 88F2BA2F0598342186A484B5 /* fs_arc.cpp */, - AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */, - 888BD97139C936679691FF34 /* hash.cpp */, - A6636144CDE83E8E85270FAF /* hashmap.cpp */, - DB82939EDC593F9CA95C3098 /* init.cpp */, - AC8BB1AABB3D393EBA527060 /* intl.cpp */, - 2C090A76B6F23E6481A27282 /* ipcbase.cpp */, - 67D76B026121359F9B22F8B0 /* languageinfo.cpp */, - 552757A901E732CAA8E3F16D /* list.cpp */, - EA93D41B11683E758D456531 /* log.cpp */, - 72D7AF345E563587941BD868 /* longlong.cpp */, - 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */, - 9DB43FAB1E563B02ACEFF647 /* module.cpp */, - DC3D1E222FD93A69B1D1366E /* mstream.cpp */, - 6BD8DAB407D231EFA5B2CAE5 /* numformatter.cpp */, - 1731D6708BFE3DE7B101CE74 /* object.cpp */, - 97FFB03FF6793506B246BAC6 /* platinfo.cpp */, - 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */, - B35DA585CFDD32468868E892 /* process.cpp */, - FB46BC22F6B23909A938C561 /* regex.cpp */, - 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */, - F46EC1508C063C8395CE7A95 /* sstream.cpp */, - DE16011AD6323AAC8616F973 /* stdstream.cpp */, - 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */, - 9FEB8204E530329FA085E5B8 /* strconv.cpp */, - FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */, - F7E99B35A98D30818120B002 /* string.cpp */, - F1E724EA70AB35DDB130F84F /* stringops.cpp */, - 0EEAD9C3E180305D8899441E /* strvararg.cpp */, - F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */, - C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */, - 701B84EE7C043B539FF5195A /* textbuf.cpp */, - 0903EE9B3793303285FF96E3 /* textfile.cpp */, - 5B9586328A1F3C4BA0390AA5 /* time.cpp */, - 7195E665E0F233839B967FC9 /* timercmn.cpp */, - 0401B7302088357BB6B7F16F /* timerimpl.cpp */, - 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */, - 6AC666417602346EA583709E /* translation.cpp */, - 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */, - DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */, - D4E1DC1869C6327C80D2F5F4 /* uri.cpp */, - B63EBEE1A04537E7887E9FD0 /* ustring.cpp */, - 31F4B9B03D52339B8F82C114 /* variant.cpp */, - C37866F41B0C31E295AA7FA6 /* wfstream.cpp */, - 23FC98E2305230E2990471E3 /* wxcrt.cpp */, - 607EF0043E723B7B9BE101EA /* wxprintf.cpp */, - 418AD9241B673308BE31DC06 /* xlocale.cpp */, - 25C86D3D4839343BA1D8BDEE /* xti.cpp */, - FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */, - 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */, - B9B5BC858CCF3477895D2786 /* zstream.cpp */, - 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */, - 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */, - 5BE1FB352696346BB642C045 /* secretstore.cpp */, - 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */, - 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */, - E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */, - 7C97C1F26B5A38C49543060C /* mimetype.cpp */, - 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */, - 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */, - D5F9383D1CE931499F339D85 /* strconv_cf.cpp */, - 2ED0C0702D2734D9B08FC31D /* utils_base.mm */, - 5BE1FB352696346BB642C044 /* secretstore.cpp */, - E1B794996B953D00AC7BC2AE /* uilocale.mm */, - 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */, - A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */, - B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */, - F7332A03D93D3DABB050615D /* dir.cpp */, - CA2D9F325F833C408657E7B7 /* dlunix.cpp */, - 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */, - 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */, - 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */, - 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */, - EA2520F427493A22A70A5C09 /* stackwalk.cpp */, - 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */, - AB466912FDA23F8B87A00A3C /* threadpsx.cpp */, - DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */, - B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */, - C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */, - 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */, - 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */, - 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */, - C9A305CEC03B3085B159B617 /* fs_mem.cpp */, - E968913A9A593B258BD8EACB /* msgout.cpp */, - 4188821BBA833CCAA678B234 /* utilscmn.cpp */, - ); - name = base; - sourceTree = ""; - }; - B8F95052522B37AB86DA8917 /* propgrid */ = { - isa = PBXGroup; - children = ( - 326723AEB79A305F90D6B41D /* advprops.cpp */, - A9C7F740A55E39FD890B3C7F /* editors.cpp */, - EBED392D081335FA80523244 /* manager.cpp */, - 58E1F571B01F34D4AB70CA18 /* property.cpp */, - B98B72B3A0A73044B85AED60 /* propgrid.cpp */, - 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */, - 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */, - C20E46A504113C899B9DD9B7 /* props.cpp */, - D73962222F573116BE63576C /* xh_propgrid.cpp */, - ); - name = propgrid; - sourceTree = ""; - }; - 2E7B4F88F81E37B4A9FF6C0F /* core */ = { + 2E7B4F88F81E37B4A9FF6C0F /* core */ = { isa = PBXGroup; children = ( B0665A40F3FC3F218074C63C /* artmac.cpp */, @@ -2490,7 +2042,6 @@ 64DA16CF41C834D7B7642024 /* prntdlgg.cpp */, 071FEABEA61E3B559A47A7DB /* statusbr.cpp */, E9B31409EC6532FC83B0B957 /* textmeasure.cpp */, - F5DAF1F49F0F3F41A427A21D /* icon.cpp */, F582C6B3A5AA3367BB4DBE97 /* statbmp_osx.cpp */, 027D2F04BE933ED6B9BA1518 /* imaglist.cpp */, FE538F33A1423FC2AC9E45F3 /* regiong.cpp */, @@ -2644,83 +2195,631 @@ C562D5885AFF3E15837325CE /* xpmdecod.cpp */, 580AFC66F3003582B43043B1 /* animateg.cpp */, 2F94CF171F4532B89FECF475 /* busyinfo.cpp */, + 5612DBC4125B379DA2B28824 /* buttonbar.cpp */, + CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */, + 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */, + 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */, + CBD7B44E33373BCCB60FC11F /* combog.cpp */, + EEA0945B20913754A54D0FD9 /* dcpsg.cpp */, + 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */, + 2A67053D16D63C588E555C84 /* dragimgg.cpp */, + 2334539088B036BEAB230D1C /* filectrlg.cpp */, + 7273A7E255323EB3B391D997 /* headerctrlg.cpp */, + 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */, + 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */, + C64705CE9398316D87BAB4DC /* logg.cpp */, + D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */, + A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */, + 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */, + BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */, + D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */, + AF76670146413EEFA005206A /* printps.cpp */, + 49CABA38E78D34DFA260AA06 /* renderg.cpp */, + E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */, + 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */, + 5ED2105A5A033E3384EBC4ED /* selstore.cpp */, + 59572A234F0636D78BFD9F6B /* spinctlg.cpp */, + C125FA3837C631A9BE0ED5E7 /* splitter.cpp */, + D46A36564C78312CAC538E93 /* srchctlg.cpp */, + DA2119A7C67D37B290C17989 /* statbmpg.cpp */, + 5DE635F30F3935099AF1486C /* stattextg.cpp */, + 8D529E2668C23D94A7706C8A /* textdlgg.cpp */, + 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */, + 24DF23D67E693D999B875101 /* toolbkg.cpp */, + 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */, + 7925E38823563BCDB5565DCF /* treebkg.cpp */, + AA90128E29A03CCCA30F4D35 /* vlbox.cpp */, + 1629FA905F903324AA5BE72C /* vscroll.cpp */, + 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */, + 3F8836E29C5A370E80CE070E /* splash.cpp */, + 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */, + 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */, + 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */, + 66426B63AA3E3A279936C034 /* grideditors.cpp */, + 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */, + 76337016F2CA3C85831702E6 /* grid.cpp */, + 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */, + CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */, + DF376BC55EA73F5FB7328142 /* helpext.cpp */, + 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */, + 26381308E32A3A179E7A9B40 /* gridsel.cpp */, + 964578C24B9F390AAD08576E /* addremovectrl.cpp */, + B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */, + 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */, + FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */, + 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */, + AE856D950B8C369EB0FE13BA /* datectlg.cpp */, + 36296C259D023EAAA240FC79 /* bannerwindow.cpp */, + 5190E3E110443FD29F2474FC /* treelist.cpp */, + 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */, + A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */, + 6F23140777B733679D2FAAFC /* odcombocmn.cpp */, + 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */, + 6BC93D1DE277395592610085 /* propdlg.cpp */, + 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */, + 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */, + 741578B590AF3F2CABE615EB /* timectrlg.cpp */, + E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */, + B233180893DB3328AF4847DA /* notifmsgcmn.cpp */, + 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */, + 5F3D473DC5123EDAB767045C /* datavgen.cpp */, + 7D90D14874FD38079835AF0B /* editlbox.cpp */, + C3784C240C2F330683494926 /* laywin.cpp */, + 496674699F173A5385EAFF07 /* calctrlg.cpp */, + E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */, + A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */, + 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */, + 741E9B48274638CD9DD73698 /* bmpsvg.cpp */, + ); + name = core; + sourceTree = ""; + }; + 60E51BFF5CD2327483201F14 /* html */ = { + isa = PBXGroup; + children = ( + 2E24C6F2A04E30EB95598305 /* chm.cpp */, + 42E433D1700631A8907B8227 /* helpctrl.cpp */, + C466F32CCBD13DBC87285B3D /* helpdata.cpp */, + 81821049E39B32C6ABCF6820 /* helpdlg.cpp */, + 82A8381819DD37DA9A3830D1 /* helpfrm.cpp */, + 2DBD5DB511C53218B3EF1625 /* helpwnd.cpp */, + 68E5188DB6003C35A8C7754D /* htmlcell.cpp */, + 2C6C4F5468743265A02D656C /* htmlfilt.cpp */, + 1800B1884CC73C78A09E7FF1 /* htmlpars.cpp */, + FCCFF49F92B4323D9181CEDA /* htmltag.cpp */, + 3FEBA7AC7F743EE88352AEBC /* htmlwin.cpp */, + 194ADD28300E329E80F7892E /* htmprint.cpp */, + 52FE1599218730CC99A3F801 /* m_dflist.cpp */, + B1F3C70512D93501B0478F3E /* m_fonts.cpp */, + ECA4A44BEC2F3AED8CF0C911 /* m_hline.cpp */, + 548906E4E72935E48CE4AF87 /* m_image.cpp */, + A5EE0B8985443BDCB36F781F /* m_layout.cpp */, + 080597FC0436378E96EDA94B /* m_links.cpp */, + B4028ABB08C63AB59F5F240B /* m_list.cpp */, + 61658C3EABB4341AA38C691E /* m_pre.cpp */, + 727F25F832AD32D4B12D8E39 /* m_span.cpp */, + 7EB95BCFA255323183A996C9 /* m_style.cpp */, + 082CA018FB883999839C1DCE /* m_tables.cpp */, + 3ABD697F99673F16A0B2D4C1 /* styleparams.cpp */, + 7FCA75FE592C3469AE351FBF /* winpars.cpp */, + FD5F11A3646F397BA62EB037 /* htmllbox.cpp */, + ); + name = html; + sourceTree = ""; + }; + 04311EAB76193D5593D43DBB /* aui */ = { + isa = PBXGroup; + children = ( + 26632A254717372BAA4D514D /* framemanager.cpp */, + BD709DEB71623974B9836D69 /* dockart.cpp */, + A881F49ADCF33C299B041584 /* floatpane.cpp */, + A298576700C33F018616E7BD /* auibook.cpp */, + 05A4437E9697300390FDE14E /* auibar.cpp */, + C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */, + 51054B41BFD83E97BAF76D07 /* tabart.cpp */, + C55AF552EE6931E8BFF7281B /* xh_aui.cpp */, + 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */, + ); + name = aui; + sourceTree = ""; + }; + 60328E6EA3793DA990E18FC1 /* xrc */ = { + isa = PBXGroup; + children = ( + BB60FA0E3524391D8581AD7C /* xh_activityindicator.cpp */, + 8C1E755F2408363288B2CE69 /* xh_animatctrl.cpp */, + 3116006345D833509865FF7F /* xh_bannerwindow.cpp */, + 07CDBBC10C8E37BBA8600DD6 /* xh_bmp.cpp */, + 8826A683573F35EA9789612C /* xh_bmpcbox.cpp */, + 11AE4D94B791344AB6BF6397 /* xh_bmpbt.cpp */, + 0785AD527D033586A7DCE8B8 /* xh_bttn.cpp */, + 093B5233861B3F9B8C85762B /* xh_cald.cpp */, + BB7DBBD53BA837D2B01CE2B6 /* xh_chckb.cpp */, + EA3F8832890138E9AB6E65D8 /* xh_chckl.cpp */, + 89EC3C6F9AEF3F6DA7CEB3B3 /* xh_choic.cpp */, + CCED0C7EF69A31A4A9240D60 /* xh_choicbk.cpp */, + AACFDE3263CE3E728AFC47DF /* xh_clrpicker.cpp */, + D0B70966E9423F198C8CBE65 /* xh_cmdlinkbn.cpp */, + F8638A6CCF773CCFB70DFC29 /* xh_collpane.cpp */, + F0905A1EBD653F6D82395602 /* xh_combo.cpp */, + 5FC445EFDC503C74A5CC6D7D /* xh_comboctrl.cpp */, + 616466F521DB3ECAB304289F /* xh_dataview.cpp */, + C63C964DAFAD311694367C94 /* xh_datectrl.cpp */, + BD169D8019A13A11BDB26214 /* xh_dirpicker.cpp */, + 06B4A895955B32258DCD62BF /* xh_dlg.cpp */, + 05310A868F0B35999C568681 /* xh_editlbox.cpp */, + 60EE4448A28D38F5ADE17B5A /* xh_filectrl.cpp */, + 5C8CEE782CD236A5A9999724 /* xh_filepicker.cpp */, + 87E609641B583666AB9D1D58 /* xh_fontpicker.cpp */, + E5A9B63746753EDFB2EC48D3 /* xh_frame.cpp */, + 9A23D41D747D38BF8AD30067 /* xh_gauge.cpp */, + 84A2E6F103403BBFADD449FE /* xh_gdctl.cpp */, + 93B77251C0E0382D9A8E113D /* xh_grid.cpp */, + 889FFA9573A835F280A21CB4 /* xh_html.cpp */, + B4E4032CA9883CA4B25BE082 /* xh_hyperlink.cpp */, + 45C65E309F3A39598C043657 /* xh_infobar.cpp */, + B4DCCF66D880330A9EE9B6B2 /* xh_listb.cpp */, + 57EB0085AFB93BFC88AC6FFC /* xh_listbk.cpp */, + 5F5D02D60DCA35358B2780C7 /* xh_listc.cpp */, + 9AFCEB1FFA3037458F132CAB /* xh_mdi.cpp */, + D3078CDAEB863CFD84EDD3BB /* xh_menu.cpp */, + A87662D69F0432FC96701280 /* xh_notbk.cpp */, + 0080254545B9383ABDF2045C /* xh_odcombo.cpp */, + F4B85051B7C835A8BF4E3EE1 /* xh_panel.cpp */, + 49BF55FA3427335097F99A2C /* xh_propdlg.cpp */, + 5AACC1EC2E2A33B3ABF5EDCA /* xh_radbt.cpp */, + F43AF44465B335479752116D /* xh_radbx.cpp */, + 66411D54BAD338498AC59401 /* xh_scrol.cpp */, + E97AE22E9F043AB6846B3BE7 /* xh_scwin.cpp */, + 8E7ADC9F00803853B1004529 /* xh_htmllbox.cpp */, + 97C4E26489B034B6AE723D8D /* xh_simplebook.cpp */, + 6E855AB3AB08325980871AB4 /* xh_sizer.cpp */, + 38E0F60AE1F83633A0CC18FC /* xh_slidr.cpp */, + 950D51915EF83B57B5E8306F /* xh_spin.cpp */, + EEADAA811BBF3CBBB9E254FD /* xh_split.cpp */, + FD55F391CD1032DFACA88CFD /* xh_srchctrl.cpp */, + FADE850169F7347F83FE1499 /* xh_statbar.cpp */, + 832DDCA57DEE3FD1B34829EC /* xh_stbmp.cpp */, + 147800BBCB80346798B35D75 /* xh_stbox.cpp */, + 5F555177554E398286DBC6FB /* xh_stlin.cpp */, + B3F1680BBE8331A7B745638C /* xh_sttxt.cpp */, + 53B95C9A1BCB30CC87495DA3 /* xh_text.cpp */, + CDA232B9FFD33B7482E69B58 /* xh_tglbtn.cpp */, + 25A81E9028793C109D868068 /* xh_timectrl.cpp */, + 3BFC1F090EFE30B784CE4C64 /* xh_toolb.cpp */, + B17FC30EF9D035689B68C955 /* xh_toolbk.cpp */, + 21A697F65B1E31168F0A7BD7 /* xh_tree.cpp */, + B912D2E3385E365CAB61A7FF /* xh_treebk.cpp */, + 15FCCD1B587637DDA3C1748A /* xh_unkwn.cpp */, + 4466008861AA37CFB13A46EF /* xh_vlistbox.cpp */, + EBD381E57BAE3F2AA31A68CB /* xh_wizrd.cpp */, + 087B66573CD33DA99DA82B1C /* xmlres.cpp */, + 29922DF1D0D63C33A186E783 /* xmlrsall.cpp */, + 72D1F357DC993BE4AACDC3FD /* xh_bookctrlbase.cpp */, + ); + name = xrc; + sourceTree = ""; + }; + 83F62FA47C9636169F1E18E8 /* base */ = { + isa = PBXGroup; + children = ( + 4867546E8B8D3C8683A23ED5 /* any.cpp */, + 95A156A823B536DE8476E4F9 /* appbase.cpp */, + 75D0C937F2A03ADA8581A2BB /* arcall.cpp */, + C513377E9E303F778BA9D7ED /* arcfind.cpp */, + 02D2E8B5C89939CE90B99E2B /* archive.cpp */, + A57CF60203F53459A03951A9 /* arrstr.cpp */, + F2024D29170D3B50A4DFDE11 /* base64.cpp */, + 2C904B4BA8273355869812B2 /* clntdata.cpp */, + FBE1C531185131A89EFF7FAF /* cmdline.cpp */, + 4FE0B33481283D3493613B0F /* config.cpp */, + 20B922D61CDB3CCEB59A5194 /* convauto.cpp */, + E0EBCDDF248638B58B01D9CC /* datetime.cpp */, + 864438709B363773B8C3382D /* datetimefmt.cpp */, + 81B3DFBB73573FFDBD320334 /* datstrm.cpp */, + EC9B6DFBF2F73917A99361C5 /* dircmn.cpp */, + D272910EC35531E5B4D6E05B /* dynlib.cpp */, + 93BA27DFFB023F2EBD6295E3 /* dynload.cpp */, + C269E9CA99DF3AE5B1BD6AFA /* encconv.cpp */, + 640783FBACA43206B782C77B /* evtloopcmn.cpp */, + 033B94A9AC8A3370A794503F /* extended.c */, + ADA6B65038FB32F7A3EFBB97 /* ffile.cpp */, + 168DB301ACC736FF96D7F581 /* file.cpp */, + AC12D557950A3B0D89D9F2F3 /* fileback.cpp */, + 61DA2A4C0D143CBE804BB8A1 /* fileconf.cpp */, + 58421C141C9E31C6A7A3C183 /* filefn.cpp */, + BAD9A0BFED6A37E4A305E1D7 /* filename.cpp */, + F263022F3FEA3F75895B644D /* filesys.cpp */, + 4438C284ED5C31EF8CC28FF3 /* filtall.cpp */, + EA4AF89C36C53EB4B307DCAB /* filtfind.cpp */, + 832BBBFE664736D5978420C6 /* fmapbase.cpp */, + 88F2BA2F0598342186A484B5 /* fs_arc.cpp */, + AAB58DD0DEC13D68B8708085 /* fs_filter.cpp */, + 888BD97139C936679691FF34 /* hash.cpp */, + A6636144CDE83E8E85270FAF /* hashmap.cpp */, + DB82939EDC593F9CA95C3098 /* init.cpp */, + AC8BB1AABB3D393EBA527060 /* intl.cpp */, + 2C090A76B6F23E6481A27282 /* ipcbase.cpp */, + 67D76B026121359F9B22F8B0 /* languageinfo.cpp */, + 552757A901E732CAA8E3F16D /* list.cpp */, + EA93D41B11683E758D456531 /* log.cpp */, + 72D7AF345E563587941BD868 /* longlong.cpp */, + 2F316F7DD3CB3390A6E50179 /* mimecmn.cpp */, + 9DB43FAB1E563B02ACEFF647 /* module.cpp */, + DC3D1E222FD93A69B1D1366E /* mstream.cpp */, + 6BD8DAB407D231EFA5B2CAE5 /* numformatter.cpp */, + 1731D6708BFE3DE7B101CE74 /* object.cpp */, + 97FFB03FF6793506B246BAC6 /* platinfo.cpp */, + 99BC7A16DBCA36EDA9D6F1DB /* powercmn.cpp */, + B35DA585CFDD32468868E892 /* process.cpp */, + FB46BC22F6B23909A938C561 /* regex.cpp */, + 75BF90BEF2F83BF28EC0458D /* stdpbase.cpp */, + F46EC1508C063C8395CE7A95 /* sstream.cpp */, + DE16011AD6323AAC8616F973 /* stdstream.cpp */, + 8F4F0113872C39FB9D10E411 /* stopwatch.cpp */, + 9FEB8204E530329FA085E5B8 /* strconv.cpp */, + FFDD414DBCC73D0FB6C2C5FD /* stream.cpp */, + F7E99B35A98D30818120B002 /* string.cpp */, + F1E724EA70AB35DDB130F84F /* stringops.cpp */, + 0EEAD9C3E180305D8899441E /* strvararg.cpp */, + F32F6B47EBB23068B1FCDC0D /* sysopt.cpp */, + C0F7BBD216853E718C9F23D9 /* tarstrm.cpp */, + 701B84EE7C043B539FF5195A /* textbuf.cpp */, + 0903EE9B3793303285FF96E3 /* textfile.cpp */, + 5B9586328A1F3C4BA0390AA5 /* time.cpp */, + 7195E665E0F233839B967FC9 /* timercmn.cpp */, + 0401B7302088357BB6B7F16F /* timerimpl.cpp */, + 3720038D64CF3C0B8F642A90 /* tokenzr.cpp */, + 6AC666417602346EA583709E /* translation.cpp */, + 117CD1A3BCB53CEE800787AE /* txtstrm.cpp */, + DB90ADAC10693B6F91E7D4E9 /* unichar.cpp */, + D4E1DC1869C6327C80D2F5F4 /* uri.cpp */, + B63EBEE1A04537E7887E9FD0 /* ustring.cpp */, + 31F4B9B03D52339B8F82C114 /* variant.cpp */, + C37866F41B0C31E295AA7FA6 /* wfstream.cpp */, + 23FC98E2305230E2990471E3 /* wxcrt.cpp */, + 607EF0043E723B7B9BE101EA /* wxprintf.cpp */, + 418AD9241B673308BE31DC06 /* xlocale.cpp */, + 25C86D3D4839343BA1D8BDEE /* xti.cpp */, + FDAEFCE0ED9D30DA94340A3B /* xtistrm.cpp */, + 54FB8A5FCBD0309AAC2E4F70 /* zipstrm.cpp */, + B9B5BC858CCF3477895D2786 /* zstream.cpp */, + 7D2BE094D90D3AFDAE49F589 /* fswatchercmn.cpp */, + 47783A330B2A3B4EBB1CD95D /* fswatcherg.cpp */, + 5BE1FB352696346BB642C044 /* secretstore.cpp */, + 99A9D5F9254D35BE8F4176A4 /* lzmastream.cpp */, + 4E4466371B7E3265AE7B1E0C /* uilocale.cpp */, + E8DAA1B2DE0239B8BBFADBB8 /* fs_data.cpp */, + 7C97C1F26B5A38C49543060C /* mimetype.cpp */, + 5168ADF7BE39351F8F24E1E6 /* cfstring.cpp */, + 5BD6231188AB329CAA5E1171 /* evtloop_cf.cpp */, + D5F9383D1CE931499F339D85 /* strconv_cf.cpp */, + 2ED0C0702D2734D9B08FC31D /* utils_base.mm */, + 5BE1FB352696346BB642C045 /* secretstore.cpp */, + E1B794996B953D00AC7BC2AE /* uilocale.mm */, + 47F784C2BB5A3B5DAD276583 /* fdiodispatcher.cpp */, + A5D569A4DE643DC8B0C28087 /* selectdispatcher.cpp */, + B40E0F6AA0273ACD9BDEAD72 /* appunix.cpp */, + F7332A03D93D3DABB050615D /* dir.cpp */, + CA2D9F325F833C408657E7B7 /* dlunix.cpp */, + 2EA275DD7D1138F9AE988E45 /* epolldispatcher.cpp */, + 9E9B79C8C7C4302AA057843E /* evtloopunix.cpp */, + 3B548B1FF2A238809315C8A9 /* fdiounix.cpp */, + 3D5D8B68EA743F6E97ADF612 /* snglinst.cpp */, + EA2520F427493A22A70A5C09 /* stackwalk.cpp */, + 0CB2CC8E60833A6993BEA321 /* timerunx.cpp */, + AB466912FDA23F8B87A00A3C /* threadpsx.cpp */, + DC75C7251C1732B0B07C7BD3 /* utilsunx.cpp */, + B38F3D4DC6D139BA93401F7A /* wakeuppipe.cpp */, + C019CE87CF9931B0B77C0823 /* fswatcher_kqueue.cpp */, + 5B83407D156C3CC3A66F05A4 /* fswatcher_fsevents.cpp */, + 190409DF8A3C3D9580FBB8AA /* stdpaths.mm */, + 7A34C5BBBA543DC0A50DE1B6 /* event.cpp */, + C9A305CEC03B3085B159B617 /* fs_mem.cpp */, + E968913A9A593B258BD8EACB /* msgout.cpp */, + 4188821BBA833CCAA678B234 /* utilscmn.cpp */, + ); + name = base; + sourceTree = ""; + }; + 7650A73F7FC9305EA62DAE86 /* libjpeg */ = { + isa = PBXGroup; + children = ( + 573D0D15EE9E3E629D61EA65 /* jaricom.c */, + 6EDDEEEC981133E8BA6A3998 /* jcapimin.c */, + F83172EE2DAE352FB969D4F2 /* jcapistd.c */, + AA234ACC79743DA797601AA6 /* jcarith.c */, + E89AC104BF4F33A083F8B382 /* jccoefct.c */, + 8EFF4707641D3F20AB602ED6 /* jccolor.c */, + 6DBF3053414F3C448312165A /* jcdctmgr.c */, + DC0FFDC7A6163F2DA73B84EB /* jchuff.c */, + AA6C6739C3BD3EFA9CF71102 /* jcinit.c */, + 810EB7316DF3344197C78EC0 /* jcmainct.c */, + 664736BDE465350C9C4750E9 /* jcmarker.c */, + 3E3043D7BE9C33B59E900CCE /* jcmaster.c */, + 8EB76F786D7F3FF286948D22 /* jcomapi.c */, + 2F41EDEB298538CC86FF6DC1 /* jcparam.c */, + 7FE0455EBDC63D82B2D88587 /* jcprepct.c */, + 53D06E47477B3E32BB6B915E /* jcsample.c */, + 725574EF98C4301989181CBF /* jctrans.c */, + 86884BC843F6337EABF744BB /* jdapimin.c */, + 1EF327CE8D7E3C11BFC6BD74 /* jdapistd.c */, + FA9DD56E399533A5BE7AAD16 /* jdarith.c */, + 59B19927E27F39ACB1D2BDA3 /* jdatadst.c */, + DECAF5DD80383A2CA76EB383 /* jdatasrc.c */, + F1A6F3936A0D31CBB58082BA /* jdcoefct.c */, + 68B81FBDA49D3C1991B6356A /* jdcolor.c */, + A5BBC1E494D33D028CA547FF /* jddctmgr.c */, + 72869747E68E37998CB0A07E /* jdhuff.c */, + CCF7564A2B733F759AA8496B /* jdinput.c */, + B2D390E5D5BF32D4AAA1E15A /* jdmainct.c */, + 20E4A10BCD773C84AEC481A1 /* jdmarker.c */, + ED19EF377E653F71B1876259 /* jdmaster.c */, + 0890779C662C35889A8C6C2E /* jdmerge.c */, + 375FF97B202F3C359402D13E /* jdpostct.c */, + 5FFCF47A161B3E08B19BFE14 /* jdsample.c */, + 4549845C0751356A907C23E0 /* jdtrans.c */, + 108517BCD39230E7A89BC943 /* jerror.c */, + 93D07403FCA530D7A9FD2917 /* jfdctflt.c */, + 029486D6A2EC3DE0902A6A24 /* jfdctfst.c */, + 90EC2A5B80EE3031BA4087B9 /* jfdctint.c */, + 3C131F7BF8A83960ACB26242 /* jidctflt.c */, + A0DCC5EF59143640BE13AD73 /* jidctfst.c */, + 1DAF0931E4AD3E6581D7FDBC /* jidctint.c */, + 14C2A7E01B4B3B168DB73B4F /* jmemmgr.c */, + 374E341C8703367686DEDE93 /* jmemnobs.c */, + 4BA14FFC0F4B3AE0B4D6B185 /* jquant1.c */, + 02D9332D5C5632E981936E29 /* jquant2.c */, + 5BEC6B3CAFB532CBB9F95D74 /* jutils.c */, + ); + name = libjpeg; + sourceTree = ""; + }; + 816DD323A67F3B299C8F3481 /* opengl */ = { + isa = PBXGroup; + children = ( + E08A51FA8D8A361681B07295 /* glcmn.cpp */, + 35007225BB683683AA7C5E48 /* glcanvas.mm */, + FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */, + ); + name = opengl; + sourceTree = ""; + }; + EB288BE7E74B3328B762A461 /* libtiff */ = { + isa = PBXGroup; + children = ( + 5D2F8259CC99380CB8217DEF /* tif_unix.c */, + D0CDADAF2D893E32A38351E4 /* tif_aux.c */, + F82278F9AF0432529891E6D7 /* tif_close.c */, + 88FF67EB6E7D302A9CDEF660 /* tif_codec.c */, + 149D299A0EDB3D998118EC93 /* tif_color.c */, + CA0D5D47D62A3148BA51B31B /* tif_compress.c */, + E79B2D1F630036129B9677A7 /* tif_dir.c */, + 032A38738B58394E8617617B /* tif_dirinfo.c */, + F6EA240B3DB93D398A990FAD /* tif_dirread.c */, + B9FD5AE12CA9376883AEE4FC /* tif_dirwrite.c */, + 1094F7D0E7A93B0CAC949001 /* tif_dumpmode.c */, + 48F1439BF6C3361296F05A33 /* tif_error.c */, + AF7CE00168AB33C994374ABA /* tif_extension.c */, + 30FD1048328234E59D319863 /* tif_fax3.c */, + BFF8216871643FEA8B5D7804 /* tif_fax3sm.c */, + 305614D19CF23CB2B14A5B2E /* tif_flush.c */, + 3D82E7D38BB43BB886E2BFA0 /* tif_getimage.c */, + F6F01A84F4DE3C9FB9849004 /* tif_jbig.c */, + 29B9C6D27BE83DB384A108ED /* tif_jpeg.c */, + 4F768B23D8B535CE8D0BD343 /* tif_jpeg_12.c */, + 66FDA882451239EA8DF2E0B5 /* tif_luv.c */, + 3088384F07C63A5DB3581656 /* tif_lzma.c */, + 346C68F0CCD23823B78267F0 /* tif_lzw.c */, + DFDC805DD3063C389F93642D /* tif_next.c */, + 1FBC6F8B4CA63A0081D6F34A /* tif_ojpeg.c */, + 1731A6096BFC3A468AB4755A /* tif_open.c */, + 9CE73979D0933A43830307E4 /* tif_packbits.c */, + 4071FF90F1D4336C836B2AE4 /* tif_pixarlog.c */, + 2FA01C426EAF38D3B9ED35AC /* tif_predict.c */, + 64B25B87203E3464BCDD277D /* tif_read.c */, + B83EDE2D1731311ABDE62F9F /* tif_strip.c */, + AAC12B4456E13F57BEA25A5E /* tif_swab.c */, + 68BEC0AB8A933CF2B5ACA149 /* tif_thunder.c */, + BD88495AF72531A28D2201D0 /* tif_tile.c */, + 3E6F40F4740C3ED29D83E107 /* tif_version.c */, + C83C97A1FCC5345896C9D7DE /* tif_warning.c */, + 3716DA7B0C79360CBA26A71E /* tif_webp.c */, + E9B992CB6C28339FB0CA5E27 /* tif_write.c */, + 726C0457DF1232C793918DC1 /* tif_zip.c */, + 3B98123FD57731139044B064 /* tif_zstd.c */, + ); + name = libtiff; + sourceTree = ""; + }; + 42F504C4994C38D7A8F062F4 /* libexpat */ = { + isa = PBXGroup; + children = ( + A92B6033D8233DB1821F193B /* xmlparse.c */, + 59C6B9849FF6325E890942EF /* xmlrole.c */, + 8685B8ED68F23DB0B770FD74 /* xmltok.c */, + ); + name = libexpat; + sourceTree = ""; + }; + 64B126D857113F24BA8C4758 /* richtext */ = { + isa = PBXGroup; + children = ( + 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */, + FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */, + C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */, + 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */, + 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */, + C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */, + 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */, + D30617843F33310089C1F77A /* richtextstyles.cpp */, + BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */, + C69E48C06BD23C178F650E42 /* richtextxml.cpp */, + 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */, + ); + name = richtext; + sourceTree = ""; + }; + 5C5CD199E7573C73AE6F392D /* media */ = { + isa = PBXGroup; + children = ( + C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */, + 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */, + ); + name = media; + sourceTree = ""; + }; + FE1C78F1707A30878CBB2B4B /* ribbon */ = { + isa = PBXGroup; + children = ( + 4C4649974D8B3A109D1BF145 /* art_internal.cpp */, + B540E18F9C91381CA175BABB /* art_msw.cpp */, + DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */, + 9FDDE855D9F83E4891362EB4 /* bar.cpp */, 5612DBC4125B379DA2B28825 /* buttonbar.cpp */, - CF23AF3EFC5731B2A5BCF4A3 /* choicdgg.cpp */, - 09F8B0818C3A3248A26EE05D /* choicbkg.cpp */, - 92F377099B8B37F18C26716B /* collheaderctrlg.cpp */, - CBD7B44E33373BCCB60FC11F /* combog.cpp */, - EEA0945B20913754A54D0FD9 /* dcpsg.cpp */, - 91292D8E11203A6B8E9767DA /* dirctrlg.cpp */, - 2A67053D16D63C588E555C84 /* dragimgg.cpp */, - 2334539088B036BEAB230D1C /* filectrlg.cpp */, - 7273A7E255323EB3B391D997 /* headerctrlg.cpp */, - 9DE6A96FDD5D381D8B33D58E /* infobar.cpp */, - 5E7A77AA776B3B5CAEE3CC90 /* listbkg.cpp */, - C64705CE9398316D87BAB4DC /* logg.cpp */, - D4FC6F0AB2AC34D2B26F8ED8 /* markuptext.cpp */, - A1CB6A4171D4343BB0A9858A /* msgdlgg.cpp */, - 69A7F3F58B1E3812A055C84F /* numdlgg.cpp */, - BEA102FF0FFC33DEAEF2FE14 /* progdlgg.cpp */, - D8F06DEA1AA339ED819B3812 /* preferencesg.cpp */, - AF76670146413EEFA005206A /* printps.cpp */, - 49CABA38E78D34DFA260AA06 /* renderg.cpp */, - E9977457BC7F3A1D93C18A02 /* richmsgdlgg.cpp */, - 3FB6D34C3029357EB64AECAA /* scrlwing.cpp */, - 5ED2105A5A033E3384EBC4ED /* selstore.cpp */, - 59572A234F0636D78BFD9F6B /* spinctlg.cpp */, - C125FA3837C631A9BE0ED5E7 /* splitter.cpp */, - D46A36564C78312CAC538E93 /* srchctlg.cpp */, - DA2119A7C67D37B290C17989 /* statbmpg.cpp */, - 5DE635F30F3935099AF1486C /* stattextg.cpp */, - 8D529E2668C23D94A7706C8A /* textdlgg.cpp */, - 9E8BF36D3A7C309482CBA9EC /* tipwin.cpp */, - 24DF23D67E693D999B875101 /* toolbkg.cpp */, - 7F039CCBBE6C32A09930EBDB /* treectlg.cpp */, - 7925E38823563BCDB5565DCF /* treebkg.cpp */, - AA90128E29A03CCCA30F4D35 /* vlbox.cpp */, - 1629FA905F903324AA5BE72C /* vscroll.cpp */, - 9AD367F1047838A9A7A34DBF /* xmlreshandler.cpp */, - 3F8836E29C5A370E80CE070E /* splash.cpp */, - 924AA3A156F834BCA1A57976 /* notifmsgg.cpp */, - 7906BD74118A3B4DAC515BC2 /* odcombo.cpp */, - 8D0EF4BDCB5F329ABE15EEED /* calctrlcmn.cpp */, - 66426B63AA3E3A279936C034 /* grideditors.cpp */, - 8CF560E06F2A3B6088203D09 /* bmpcboxcmn.cpp */, - 76337016F2CA3C85831702E6 /* grid.cpp */, - 2A1BD6BCA15430CA8A4869EF /* gridctrl.cpp */, - CBCA90340E433DBBAE74EBE1 /* hyperlinkg.cpp */, - DF376BC55EA73F5FB7328142 /* helpext.cpp */, - 917F2666B67E3D2EB84E74F8 /* sashwin.cpp */, - 26381308E32A3A179E7A9B40 /* gridsel.cpp */, - 964578C24B9F390AAD08576E /* addremovectrl.cpp */, - B56A9BF7AE1E3F11A5848297 /* tipdlg.cpp */, - 77D6E66F72443765A2FBE263 /* aboutdlgg.cpp */, - FDD3CE34439B3D2BBD9DC8D3 /* gridcmn.cpp */, - 7A1CE0B28CB73F90AE92B5AB /* richtooltipcmn.cpp */, - AE856D950B8C369EB0FE13BA /* datectlg.cpp */, - 36296C259D023EAAA240FC79 /* bannerwindow.cpp */, - 5190E3E110443FD29F2474FC /* treelist.cpp */, - 95DEEF60B1E9358A8CCCC67E /* datavcmn.cpp */, - A8ABD099BCEA30DCBF7A04F4 /* animatecmn.cpp */, - 6F23140777B733679D2FAAFC /* odcombocmn.cpp */, - 8A7D521FE5B437D7AD5F4B54 /* hyperlnkcmn.cpp */, - 6BC93D1DE277395592610085 /* propdlg.cpp */, - 13FD4A890E9B3BAEBD568C3B /* bmpcboxg.cpp */, - 54710DA2AC4F3262A8A1EA63 /* richtooltipg.cpp */, - 741578B590AF3F2CABE615EB /* timectrlg.cpp */, - E8BD1489D95E3FD78B200B1B /* commandlinkbuttong.cpp */, - B233180893DB3328AF4847DA /* notifmsgcmn.cpp */, - 8F08F70E1EF239999A4D2AC4 /* wizard.cpp */, - 5F3D473DC5123EDAB767045C /* datavgen.cpp */, - 7D90D14874FD38079835AF0B /* editlbox.cpp */, - C3784C240C2F330683494926 /* laywin.cpp */, - 496674699F173A5385EAFF07 /* calctrlg.cpp */, - E8DE97F5A2AD393CBD31AED3 /* creddlgg.cpp */, - A2B7B30FA60633339D8862C6 /* rowheightcache.cpp */, - 26CC5C56BD493346B16854F9 /* bmpbndl.cpp */, - 741E9B48274638CD9DD73698 /* bmpsvg.cpp */, + 12363D1F50FE301DAEE7F04B /* control.cpp */, + 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */, + 59ED0C057D8F388A89DC7177 /* page.cpp */, + 00969CBE3B8F32C78C195619 /* panel.cpp */, + BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */, + B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */, + ); + name = ribbon; + sourceTree = ""; + }; + B1EF68113C6338CFBBED0FBE /* libregex */ = { + isa = PBXGroup; + children = ( + C3904351139F3F0DB4B72F94 /* pcre2_auto_possess.c */, + BDADEB1DA6433E52972C8934 /* pcre2_compile.c */, + FC6A8FAE9CA63EEB8883B6BD /* pcre2_config.c */, + 3026D20A03E53F1DB40FB35A /* pcre2_context.c */, + BCED9B1D0D7E3FBBAC78CE5B /* pcre2_convert.c */, + 96D620AEA83E3444BA0B04C4 /* pcre2_dfa_match.c */, + 25E03E349FC13E4A9428B94E /* pcre2_error.c */, + F0E43FFDC808333AA01EE649 /* pcre2_extuni.c */, + 943C7E9527C03FCDB5966273 /* pcre2_find_bracket.c */, + 7C9F6184015A3BD1B8DA471E /* pcre2_jit_compile.c */, + D016F584D14C31E192DB3179 /* pcre2_maketables.c */, + 3B93115BCC46333BBB31D6F7 /* pcre2_match.c */, + 4E74E9E53454331F8E10ECC5 /* pcre2_match_data.c */, + A208BFC0C8C43847A9620ADA /* pcre2_newline.c */, + 4BFEBC5061693DA0B52BC4AC /* pcre2_ord2utf.c */, + 00DAA69F74D031B6BE9196A8 /* pcre2_pattern_info.c */, + 2F4CDF9048EC36788619769D /* pcre2_script_run.c */, + BD2EBC2CCAE23AD6A1DF783E /* pcre2_serialize.c */, + A6EE037AF43E343E8E1A7555 /* pcre2_string_utils.c */, + 09CCDDC66F683C6B87BEDD2F /* pcre2_study.c */, + FAC42945539F362D91D6F559 /* pcre2_substitute.c */, + 5152B34D06E9343FBFAB3510 /* pcre2_substring.c */, + B60497805D37375EBFCF3D98 /* pcre2_tables.c */, + 70F4EB692873386AAA0A44B0 /* pcre2_ucd.c */, + FAE49A61DFE9375AAB18E8DD /* pcre2_valid_utf.c */, + 95CBA2C736623FFF8629E975 /* pcre2_xclass.c */, + 1895085EBEAE3A708FDD527A /* pcre2_chartables.c */, ); - name = core; + name = libregex; + sourceTree = ""; + }; + 62E50658BDAD369D92294F68 /* webview */ = { + isa = PBXGroup; + children = ( + CBA9036479943A4990CEB3AC /* webview_chromium.mm */, + 5FEECFD764E037288CE94FEB /* webview_webkit.mm */, + 0DA80913C0E33144A42BD30F /* webview.cpp */, + 70112AB00E013A35BE974FF1 /* webviewarchivehandler.cpp */, + CFBDB327E4A236A3ABFA326F /* webviewfshandler.cpp */, + 2718D06670953933B897B0D8 /* webview_chromium.cpp */, + ); + name = webview; + sourceTree = ""; + }; + 6E2C8858F68E3FB0BEFFFCE5 /* libpng */ = { + isa = PBXGroup; + children = ( + AF26BAB1F4733114926F1724 /* png.c */, + 1A0650754DC2358CA5933B28 /* pngerror.c */, + 91300EB871CC39ECBC430D48 /* pngget.c */, + C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */, + 9CAA325362C73AC8BE20FAA7 /* pngpread.c */, + 29D6506AEA5A323B8735F126 /* pngread.c */, + A06AB1974DB93EE2999EC75C /* pngrio.c */, + 87799D3168B43EB7B5686826 /* pngrtran.c */, + 358D0A3AC73F322EA732D020 /* pngrutil.c */, + 5E463A493FD930DE80E58608 /* pngset.c */, + 5B32A13D5B3336098B1B9765 /* pngtrans.c */, + AF9EE701DD653E2299293E5F /* pngwio.c */, + 69A6CAF721E53E83B4820DE6 /* pngwrite.c */, + 0964797530CF3FE7B8DB6242 /* pngwtran.c */, + 45D7558DF5E03A2EB41883F0 /* pngwutil.c */, + 933D7637CAA43F6C99814BC5 /* arm_init.c */, + 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */, + FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */, + 994AF74DF2A13FF09A215853 /* intel_init.c */, + 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */, + ); + name = libpng; + sourceTree = ""; + }; + 374BD863E6AD33189B7E4040 /* net */ = { + isa = PBXGroup; + children = ( + B7581D7140293BAE88E43DBE /* fs_inet.cpp */, + 5CB4781DF8C432C688F30CDD /* ftp.cpp */, + F84F0DB790A23D92A193D2B4 /* http.cpp */, + 7B389A14D6BF3AFD8CCE0807 /* protocol.cpp */, + DE8238DA30FF3FB984511250 /* sckaddr.cpp */, + 56653FACC7D13804A70556AD /* sckfile.cpp */, + 1F6E23CCDC1932BC985EFBD2 /* sckipc.cpp */, + D784A32C094730FEAA391A9B /* sckstrm.cpp */, + 40CE02524DD4385AB2C3DF95 /* socket.cpp */, + 49612306912038DDBCABB4DE /* url.cpp */, + 5EA9E372A64B3B808A64B178 /* webrequest.cpp */, + 5279968877003A8BB8279765 /* webrequest_curl.cpp */, + DDE22D7DDAC93DCABAE5AED0 /* socketiohandler.cpp */, + BB7661E9E09A397790ED9545 /* sockunix.cpp */, + 4969528429903F15882F5391 /* sockosx.cpp */, + EA8CCF32688434EABEEEE04A /* webrequest_urlsession.mm */, + ); + name = net; + sourceTree = ""; + }; + 52DDFBAA5ACC394FB6B30E74 /* libzlib */ = { + isa = PBXGroup; + children = ( + 0E45F6DF601A34BCB3CC0206 /* adler32.c */, + D4C4495603293C07A3B09D54 /* compress.c */, + 7013DB195D023C31ADE68546 /* crc32.c */, + 3CF73F49AEC238C99CE89845 /* deflate.c */, + 7A24E9101688368296C21EBE /* gzclose.c */, + 7395814D42CC38F6B8CD81B4 /* gzlib.c */, + BAD4614CABC934D6AFF8D9CD /* gzread.c */, + 1E4E3EB1CCA53E0EA322A1AF /* gzwrite.c */, + FDB0E2D0966C3E408C4A2D3D /* infback.c */, + 400275BE019D3E5BA47988BE /* inffast.c */, + B5370A676AAC32419D7FDD87 /* inflate.c */, + 9D6B0D32537D35069C7E053F /* inftrees.c */, + 95B4EDF38F8A3E5EBAFF560F /* trees.c */, + 513033E36E643593AC305B3D /* uncompr.c */, + 4CB467F9898C3952A68D988B /* zutil.c */, + ); + name = libzlib; + sourceTree = ""; + }; + 4D98B791E17232D39944F04F /* xml */ = { + isa = PBXGroup; + children = ( + E6AB648BC5173104A96CAE66 /* xml.cpp */, + 4048A3523EC03409BD899BEF /* xtixml.cpp */, + ); + name = xml; + sourceTree = ""; + }; + 2FF0B5E0505D3AEA9A4ACF11 /* adv */ = { + isa = PBXGroup; + children = ( + ); + name = adv; sourceTree = ""; }; 42D7047C48F9386084B46AFA /* liblexilla */ = { @@ -2863,130 +2962,31 @@ name = liblexilla; sourceTree = ""; }; - 6E2C8858F68E3FB0BEFFFCE5 /* libpng */ = { - isa = PBXGroup; - children = ( - AF26BAB1F4733114926F1724 /* png.c */, - 1A0650754DC2358CA5933B28 /* pngerror.c */, - 91300EB871CC39ECBC430D48 /* pngget.c */, - C45AFE6CC20F3ED7A55FC8FA /* pngmem.c */, - 9CAA325362C73AC8BE20FAA7 /* pngpread.c */, - 29D6506AEA5A323B8735F126 /* pngread.c */, - A06AB1974DB93EE2999EC75C /* pngrio.c */, - 87799D3168B43EB7B5686826 /* pngrtran.c */, - 358D0A3AC73F322EA732D020 /* pngrutil.c */, - 5E463A493FD930DE80E58608 /* pngset.c */, - 5B32A13D5B3336098B1B9765 /* pngtrans.c */, - AF9EE701DD653E2299293E5F /* pngwio.c */, - 69A6CAF721E53E83B4820DE6 /* pngwrite.c */, - 0964797530CF3FE7B8DB6242 /* pngwtran.c */, - 45D7558DF5E03A2EB41883F0 /* pngwutil.c */, - 933D7637CAA43F6C99814BC5 /* arm_init.c */, - 39507FA11D8838109A22B7DA /* filter_neon_intrinsics.c */, - FB17368A86EC30E6B843E32F /* palette_neon_intrinsics.c */, - 994AF74DF2A13FF09A215853 /* intel_init.c */, - 9D602B5F09E8314CB9F65C11 /* filter_sse2_intrinsics.c */, - ); - name = libpng; - sourceTree = ""; - }; - 04311EAB76193D5593D43DBB /* aui */ = { - isa = PBXGroup; - children = ( - 26632A254717372BAA4D514D /* framemanager.cpp */, - BD709DEB71623974B9836D69 /* dockart.cpp */, - A881F49ADCF33C299B041584 /* floatpane.cpp */, - A298576700C33F018616E7BD /* auibook.cpp */, - 05A4437E9697300390FDE14E /* auibar.cpp */, - C0155E0C2F6131358D2DA5ED /* tabmdi.cpp */, - 51054B41BFD83E97BAF76D07 /* tabart.cpp */, - C55AF552EE6931E8BFF7281B /* xh_aui.cpp */, - 0CC4C44F4DB833839AD96DBD /* xh_auitoolb.cpp */, - ); - name = aui; - sourceTree = ""; - }; - 816DD323A67F3B299C8F3481 /* opengl */ = { - isa = PBXGroup; - children = ( - E08A51FA8D8A361681B07295 /* glcmn.cpp */, - 35007225BB683683AA7C5E48 /* glcanvas.mm */, - FA59091E3ED83FB781FB9659 /* glcanvas_osx.cpp */, - ); - name = opengl; - sourceTree = ""; - }; - FE1C78F1707A30878CBB2B4B /* ribbon */ = { - isa = PBXGroup; - children = ( - 4C4649974D8B3A109D1BF145 /* art_internal.cpp */, - B540E18F9C91381CA175BABB /* art_msw.cpp */, - DD5E8709C3BC3727BBC7B97A /* art_aui.cpp */, - 9FDDE855D9F83E4891362EB4 /* bar.cpp */, - 5612DBC4125B379DA2B28824 /* buttonbar.cpp */, - 12363D1F50FE301DAEE7F04B /* control.cpp */, - 3F1C1EB5C0B3302C86D91315 /* gallery.cpp */, - 59ED0C057D8F388A89DC7177 /* page.cpp */, - 00969CBE3B8F32C78C195619 /* panel.cpp */, - BE4B0CE56BA23002A5C8AEFF /* toolbar.cpp */, - B6A37A02D28E30CD9B83E134 /* xh_ribbon.cpp */, - ); - name = ribbon; - sourceTree = ""; - }; - 42F504C4994C38D7A8F062F4 /* libexpat */ = { - isa = PBXGroup; - children = ( - A92B6033D8233DB1821F193B /* xmlparse.c */, - 59C6B9849FF6325E890942EF /* xmlrole.c */, - 8685B8ED68F23DB0B770FD74 /* xmltok.c */, - ); - name = libexpat; - sourceTree = ""; - }; - AA960FB143A63667839CE793 /* qa */ = { - isa = PBXGroup; - children = ( - 63F15C5B895F38028FE5D0A5 /* debugrpt.cpp */, - 182C8AD4F822375495795B43 /* dbgrptg.cpp */, - ); - name = qa; - sourceTree = ""; - }; - 4D98B791E17232D39944F04F /* xml */ = { - isa = PBXGroup; - children = ( - E6AB648BC5173104A96CAE66 /* xml.cpp */, - 4048A3523EC03409BD899BEF /* xtixml.cpp */, - ); - name = xml; - sourceTree = ""; - }; - 5C5CD199E7573C73AE6F392D /* media */ = { + E96566B813153B4295AD767B /* stc */ = { isa = PBXGroup; children = ( - C839E49184663A7CBB7EEB06 /* mediactrlcmn.cpp */, - 6A6A16F9C3B03A7B9077D013 /* mediactrl.mm */, + D0B9C41A4D12345AAA764CAD /* stc.cpp */, + 47FF6D792CA234C395692118 /* PlatWX.cpp */, + 8E6F9D4319F639BE89E5A82F /* ScintillaWX.cpp */, + A15C99AD235630CD91B346E5 /* xh_styledtextctrl.cpp */, ); - name = media; + name = stc; sourceTree = ""; }; - 64B126D857113F24BA8C4758 /* richtext */ = { + B8F95052522B37AB86DA8917 /* propgrid */ = { isa = PBXGroup; children = ( - 47F5E77F7B8D3ABBA365F112 /* richtextbuffer.cpp */, - FDEC1C66E6E83C69AF2732DB /* richtextctrl.cpp */, - C978558AE31D3CFA85B3BBE3 /* richtextformatdlg.cpp */, - 7969963AA93537FCA4F54DA7 /* richtexthtml.cpp */, - 1CE9B3DD54AD318FAA821732 /* richtextimagedlg.cpp */, - C4C45D3C63AA37CEBCE83321 /* richtextprint.cpp */, - 23839659AC2A383CB383F0EC /* richtextstyledlg.cpp */, - D30617843F33310089C1F77A /* richtextstyles.cpp */, - BB3FF9FECCB5300A9561CE36 /* richtextsymboldlg.cpp */, - C69E48C06BD23C178F650E42 /* richtextxml.cpp */, - 88C2B895570936A3B4FAF3CF /* xh_richtext.cpp */, + 326723AEB79A305F90D6B41D /* advprops.cpp */, + A9C7F740A55E39FD890B3C7F /* editors.cpp */, + EBED392D081335FA80523244 /* manager.cpp */, + 58E1F571B01F34D4AB70CA18 /* property.cpp */, + B98B72B3A0A73044B85AED60 /* propgrid.cpp */, + 69E742B172463EDFBBFA5AB0 /* propgridiface.cpp */, + 967EF76827CB3CDE87E1E733 /* propgridpagestate.cpp */, + C20E46A504113C899B9DD9B7 /* props.cpp */, + D73962222F573116BE63576C /* xh_propgrid.cpp */, ); - name = richtext; + name = propgrid; sourceTree = ""; }; /* End PBXGroup section */ @@ -3266,7 +3266,6 @@ C005C2D547E735E9B081658E /* prntdlgg.cpp in Sources */, A1AF8FF873D6383996995ECF /* statusbr.cpp in Sources */, 2E059BFE8E3B3D9299D55969 /* textmeasure.cpp in Sources */, - 01D4C5F2147F3942A7CE91AA /* icon.cpp in Sources */, 750C716389AD3ADBABC9D689 /* statbmp_osx.cpp in Sources */, 1EDED99760B23A1999E75C12 /* imaglist.cpp in Sources */, 9519D59421513FF28FF717B6 /* regiong.cpp in Sources */, @@ -3610,6 +3609,7 @@ 3357BD0518F538E9A949F886 /* xh_tree.cpp in Sources */, 46CE8B53D2663927AAE5DF9D /* xh_treebk.cpp in Sources */, C5A8DF376BB13A2A8290C2E5 /* xh_unkwn.cpp in Sources */, + ABBE59AC73E135D48965F209 /* xh_vlistbox.cpp in Sources */, 37DD17F479A1371ABF3589B9 /* xh_wizrd.cpp in Sources */, 1710A4BB0E6339558A187F8D /* xmlres.cpp in Sources */, 135DFCE48FC03D8294D01A89 /* xmlrsall.cpp in Sources */, diff --git a/config.guess b/config.guess index 980b02083815..48a684601bd2 100755 --- a/config.guess +++ b/config.guess @@ -1,10 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2022 Free Software Foundation, Inc. +# Copyright 1992-2024 Free Software Foundation, Inc. # shellcheck disable=SC2006,SC2268 # see below for rationale -timestamp='2022-09-17' +timestamp='2024-07-27' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -47,7 +47,7 @@ me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] -Output the configuration name of the system \`$me' is run on. +Output the configuration name of the system '$me' is run on. Options: -h, --help print this help, then exit @@ -60,13 +60,13 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2022 Free Software Foundation, Inc. +Copyright 1992-2024 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" -Try \`$me --help' for more information." +Try '$me --help' for more information." # Parse command line while test $# -gt 0 ; do @@ -102,8 +102,8 @@ GUESS= # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. -# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still -# use `HOST_CC' if defined, but it is deprecated. +# Historically, 'CC_FOR_BUILD' used to be named 'HOST_CC'. We still +# use 'HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. @@ -123,7 +123,7 @@ set_cc_for_build() { dummy=$tmp/dummy case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in ,,) echo "int x;" > "$dummy.c" - for driver in cc gcc c89 c99 ; do + for driver in cc gcc c17 c99 c89 ; do if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD=$driver break @@ -155,6 +155,9 @@ Linux|GNU|GNU/*) set_cc_for_build cat <<-EOF > "$dummy.c" + #if defined(__ANDROID__) + LIBC=android + #else #include #if defined(__UCLIBC__) LIBC=uclibc @@ -162,6 +165,8 @@ Linux|GNU|GNU/*) LIBC=dietlibc #elif defined(__GLIBC__) LIBC=gnu + #elif defined(__LLVM_LIBC__) + LIBC=llvm #else #include /* First heuristic to detect musl libc. */ @@ -169,6 +174,7 @@ Linux|GNU|GNU/*) LIBC=musl #endif #endif + #endif EOF cc_set_libc=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` eval "$cc_set_libc" @@ -459,7 +465,7 @@ case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in UNAME_RELEASE=`uname -v` ;; esac - # Japanese Language versions have a version number like `4.1.3-JL'. + # Japanese Language versions have a version number like '4.1.3-JL'. SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/-/_/'` GUESS=sparc-sun-sunos$SUN_REL ;; @@ -628,7 +634,8 @@ EOF sed 's/^ //' << EOF > "$dummy.c" #include - main() + int + main () { if (!__power_pc()) exit(1); @@ -712,7 +719,8 @@ EOF #include #include - int main () + int + main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); @@ -904,7 +912,7 @@ EOF fi ;; *:FreeBSD:*:*) - UNAME_PROCESSOR=`/usr/bin/uname -p` + UNAME_PROCESSOR=`uname -p` case $UNAME_PROCESSOR in amd64) UNAME_PROCESSOR=x86_64 ;; @@ -976,7 +984,27 @@ EOF GUESS=$UNAME_MACHINE-unknown-minix ;; aarch64:Linux:*:*) - GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + set_cc_for_build + CPU=$UNAME_MACHINE + LIBCABI=$LIBC + if test "$CC_FOR_BUILD" != no_compiler_found; then + ABI=64 + sed 's/^ //' << EOF > "$dummy.c" + #ifdef __ARM_EABI__ + #ifdef __ARM_PCS_VFP + ABI=eabihf + #else + ABI=eabi + #endif + #endif +EOF + cc_set_abi=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^ABI' | sed 's, ,,g'` + eval "$cc_set_abi" + case $ABI in + eabi | eabihf) CPU=armv8l; LIBCABI=$LIBC$ABI ;; + esac + fi + GUESS=$CPU-unknown-linux-$LIBCABI ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be @@ -1042,6 +1070,15 @@ EOF k1om:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; + kvx:Linux:*:*) + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; + kvx:cos:*:*) + GUESS=$UNAME_MACHINE-unknown-cos + ;; + kvx:mbr:*:*) + GUESS=$UNAME_MACHINE-unknown-mbr + ;; loongarch32:Linux:*:* | loongarch64:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; @@ -1197,7 +1234,7 @@ EOF GUESS=$UNAME_MACHINE-pc-sysv4.2uw$UNAME_VERSION ;; i*86:OS/2:*:*) - # If we were able to find `uname', then EMX Unix compatibility + # If we were able to find 'uname', then EMX Unix compatibility # is probably installed. GUESS=$UNAME_MACHINE-pc-os2-emx ;; @@ -1338,7 +1375,7 @@ EOF GUESS=ns32k-sni-sysv fi ;; - PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + PENTIUM:*:4.0*:*) # Unisys 'ClearPath HMP IX 4000' SVR4/MP effort # says GUESS=i586-unisys-sysv4 ;; @@ -1560,6 +1597,9 @@ EOF *:Unleashed:*:*) GUESS=$UNAME_MACHINE-unknown-unleashed$UNAME_RELEASE ;; + *:Ironclad:*:*) + GUESS=$UNAME_MACHINE-unknown-ironclad + ;; esac # Do we have a guess based on uname results? @@ -1583,6 +1623,7 @@ cat > "$dummy.c" <." version="\ GNU config.sub ($timestamp) -Copyright 1992-2022 Free Software Foundation, Inc. +Copyright 1992-2024 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" -Try \`$me --help' for more information." +Try '$me --help' for more information." # Parse command line while test $# -gt 0 ; do @@ -120,7 +120,6 @@ case $# in esac # Split fields of configuration type -# shellcheck disable=SC2162 saved_IFS=$IFS IFS="-" read field1 field2 field3 field4 <&2 + echo "Invalid configuration '$1': more than four components" >&2 exit 1 ;; *-*-*-*) @@ -142,10 +141,21 @@ case $1 in # parts maybe_os=$field2-$field3 case $maybe_os in - nto-qnx* | linux-* | uclinux-uclibc* \ - | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \ - | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \ - | storm-chaos* | os2-emx* | rtmk-nova* | managarm-*) + cloudabi*-eabi* \ + | kfreebsd*-gnu* \ + | knetbsd*-gnu* \ + | kopensolaris*-gnu* \ + | linux-* \ + | managarm-* \ + | netbsd*-eabi* \ + | netbsd*-gnu* \ + | nto-qnx* \ + | os2-emx* \ + | rtmk-nova* \ + | storm-chaos* \ + | uclinux-gnu* \ + | uclinux-uclibc* \ + | windows-* ) basic_machine=$field1 basic_os=$maybe_os ;; @@ -160,8 +170,12 @@ case $1 in esac ;; *-*) - # A lone config we happen to match not fitting any pattern case $field1-$field2 in + # Shorthands that happen to contain a single dash + convex-c[12] | convex-c3[248]) + basic_machine=$field2-convex + basic_os= + ;; decstation-3100) basic_machine=mips-dec basic_os= @@ -169,28 +183,88 @@ case $1 in *-*) # Second component is usually, but not always the OS case $field2 in - # Prevent following clause from handling this valid os + # Do not treat sunos as a manufacturer sun*os*) basic_machine=$field1 basic_os=$field2 ;; - zephyr*) - basic_machine=$field1-unknown - basic_os=$field2 - ;; # Manufacturers - dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \ - | att* | 7300* | 3300* | delta* | motorola* | sun[234]* \ - | unicom* | ibm* | next | hp | isi* | apollo | altos* \ - | convergent* | ncr* | news | 32* | 3600* | 3100* \ - | hitachi* | c[123]* | convex* | sun | crds | omron* | dg \ - | ultra | tti* | harris | dolphin | highlevel | gould \ - | cbm | ns | masscomp | apple | axis | knuth | cray \ - | microblaze* | sim | cisco \ - | oki | wec | wrs | winbond) + 3100* \ + | 32* \ + | 3300* \ + | 3600* \ + | 7300* \ + | acorn \ + | altos* \ + | apollo \ + | apple \ + | atari \ + | att* \ + | axis \ + | be \ + | bull \ + | cbm \ + | ccur \ + | cisco \ + | commodore \ + | convergent* \ + | convex* \ + | cray \ + | crds \ + | dec* \ + | delta* \ + | dg \ + | digital \ + | dolphin \ + | encore* \ + | gould \ + | harris \ + | highlevel \ + | hitachi* \ + | hp \ + | ibm* \ + | intergraph \ + | isi* \ + | knuth \ + | masscomp \ + | microblaze* \ + | mips* \ + | motorola* \ + | ncr* \ + | news \ + | next \ + | ns \ + | oki \ + | omron* \ + | pc533* \ + | rebel \ + | rom68k \ + | rombug \ + | semi \ + | sequent* \ + | siemens \ + | sgi* \ + | siemens \ + | sim \ + | sni \ + | sony* \ + | stratus \ + | sun \ + | sun[234]* \ + | tektronix \ + | tti* \ + | ultra \ + | unicom* \ + | wec \ + | winbond \ + | wrs) basic_machine=$field1-$field2 basic_os= ;; + zephyr*) + basic_machine=$field1-unknown + basic_os=$field2 + ;; *) basic_machine=$field1 basic_os=$field2 @@ -271,26 +345,6 @@ case $1 in basic_machine=arm-unknown basic_os=cegcc ;; - convex-c1) - basic_machine=c1-convex - basic_os=bsd - ;; - convex-c2) - basic_machine=c2-convex - basic_os=bsd - ;; - convex-c32) - basic_machine=c32-convex - basic_os=bsd - ;; - convex-c34) - basic_machine=c34-convex - basic_os=bsd - ;; - convex-c38) - basic_machine=c38-convex - basic_os=bsd - ;; cray) basic_machine=j90-cray basic_os=unicos @@ -713,15 +767,26 @@ case $basic_machine in vendor=dec basic_os=tops20 ;; - delta | 3300 | motorola-3300 | motorola-delta \ - | 3300-motorola | delta-motorola) + delta | 3300 | delta-motorola | 3300-motorola | motorola-delta | motorola-3300) cpu=m68k vendor=motorola ;; - dpx2*) + # This used to be dpx2*, but that gets the RS6000-based + # DPX/20 and the x86-based DPX/2-100 wrong. See + # https://oldskool.silicium.org/stations/bull_dpx20.htm + # https://www.feb-patrimoine.com/english/bull_dpx2.htm + # https://www.feb-patrimoine.com/english/unix_and_bull.htm + dpx2 | dpx2[23]00 | dpx2[23]xx) cpu=m68k vendor=bull - basic_os=sysv3 + ;; + dpx2100 | dpx21xx) + cpu=i386 + vendor=bull + ;; + dpx20) + cpu=rs6000 + vendor=bull ;; encore | umax | mmax) cpu=ns32k @@ -836,18 +901,6 @@ case $basic_machine in next | m*-next) cpu=m68k vendor=next - case $basic_os in - openstep*) - ;; - nextstep*) - ;; - ns2*) - basic_os=nextstep2 - ;; - *) - basic_os=nextstep3 - ;; - esac ;; np1) cpu=np1 @@ -936,14 +989,13 @@ case $basic_machine in ;; *-*) - # shellcheck disable=SC2162 saved_IFS=$IFS IFS="-" read cpu vendor <&2 + echo "Invalid configuration '$1': machine '$cpu-$vendor' not recognized" 1>&2 exit 1 ;; esac @@ -1306,11 +1491,12 @@ esac # Decode manufacturer-specific aliases for certain operating systems. -if test x$basic_os != x +if test x"$basic_os" != x then # First recognize some ad-hoc cases, or perhaps split kernel-os, or else just # set os. +obj= case $basic_os in gnu/linux*) kernel=linux @@ -1325,7 +1511,6 @@ case $basic_os in os=`echo "$basic_os" | sed -e 's|nto-qnx|qnx|'` ;; *-*) - # shellcheck disable=SC2162 saved_IFS=$IFS IFS="-" read kernel os <&2 + fi + ;; *) - echo Invalid configuration \`"$1"\': OS \`"$os"\' not recognized 1>&2 + echo "Invalid configuration '$1': OS '$os' not recognized" 1>&2 + exit 1 + ;; +esac + +case $obj in + aout* | coff* | elf* | pe*) + ;; + '') + # empty is fine + ;; + *) + echo "Invalid configuration '$1': Machine code format '$obj' not recognized" 1>&2 + exit 1 + ;; +esac + +# Here we handle the constraint that a (synthetic) cpu and os are +# valid only in combination with each other and nowhere else. +case $cpu-$os in + # The "javascript-unknown-ghcjs" triple is used by GHC; we + # accept it here in order to tolerate that, but reject any + # variations. + javascript-ghcjs) + ;; + javascript-* | *-ghcjs) + echo "Invalid configuration '$1': cpu '$cpu' is not valid with os '$os$obj'" 1>&2 exit 1 ;; esac # As a final step for OS-related things, validate the OS-kernel combination # (given a valid OS), if there is a kernel. -case $kernel-$os in - linux-gnu* | linux-dietlibc* | linux-android* | linux-newlib* \ - | linux-musl* | linux-relibc* | linux-uclibc* | linux-mlibc* ) +case $kernel-$os-$obj in + linux-gnu*- | linux-android*- | linux-dietlibc*- | linux-llvm*- \ + | linux-mlibc*- | linux-musl*- | linux-newlib*- \ + | linux-relibc*- | linux-uclibc*- | linux-ohos*- ) + ;; + uclinux-uclibc*- | uclinux-gnu*- ) ;; - uclinux-uclibc* ) + managarm-mlibc*- | managarm-kernel*- ) ;; - managarm-mlibc* | managarm-kernel* ) + windows*-msvc*-) ;; - -dietlibc* | -newlib* | -musl* | -relibc* | -uclibc* | -mlibc* ) + -dietlibc*- | -llvm*- | -mlibc*- | -musl*- | -newlib*- | -relibc*- \ + | -uclibc*- ) # These are just libc implementations, not actual OSes, and thus # require a kernel. - echo "Invalid configuration \`$1': libc \`$os' needs explicit kernel." 1>&2 + echo "Invalid configuration '$1': libc '$os' needs explicit kernel." 1>&2 exit 1 ;; - -kernel* ) - echo "Invalid configuration \`$1': \`$os' needs explicit kernel." 1>&2 + -kernel*- ) + echo "Invalid configuration '$1': '$os' needs explicit kernel." 1>&2 exit 1 ;; - *-kernel* ) - echo "Invalid configuration \`$1': \`$kernel' does not support \`$os'." 1>&2 + *-kernel*- ) + echo "Invalid configuration '$1': '$kernel' does not support '$os'." 1>&2 exit 1 ;; - kfreebsd*-gnu* | kopensolaris*-gnu*) + *-msvc*- ) + echo "Invalid configuration '$1': '$os' needs 'windows'." 1>&2 + exit 1 ;; - vxworks-simlinux | vxworks-simwindows | vxworks-spe) + kfreebsd*-gnu*- | knetbsd*-gnu*- | netbsd*-gnu*- | kopensolaris*-gnu*-) ;; - nto-qnx*) + vxworks-simlinux- | vxworks-simwindows- | vxworks-spe-) ;; - os2-emx) + nto-qnx*-) ;; - *-eabi* | *-gnueabi*) + os2-emx-) ;; - -*) + rtmk-nova-) + ;; + *-eabi*- | *-gnueabi*-) + ;; + none--*) + # None (no kernel, i.e. freestanding / bare metal), + # can be paired with an machine code file format + ;; + -*-) # Blank kernel with real OS is always fine. ;; - *-*) - echo "Invalid configuration \`$1': Kernel \`$kernel' not known to work with OS \`$os'." 1>&2 + --*) + # Blank kernel and OS with real machine code file format is always fine. + ;; + *-*-*) + echo "Invalid configuration '$1': Kernel '$kernel' not known to work with OS '$os'." 1>&2 exit 1 ;; esac @@ -1826,7 +2273,7 @@ case $vendor in *-riscix*) vendor=acorn ;; - *-sunos*) + *-sunos* | *-solaris*) vendor=sun ;; *-cnk* | *-aix*) @@ -1896,7 +2343,7 @@ case $vendor in ;; esac -echo "$cpu-$vendor-${kernel:+$kernel-}$os" +echo "$cpu-$vendor${kernel:+-$kernel}${os:+-$os}${obj:+-$obj}" exit # Local variables: diff --git a/configure b/configure index 9d33d94554ea..0b13d0e7babd 100755 --- a/configure +++ b/configure @@ -995,6 +995,8 @@ LIBTIFF_CFLAGS wxPCRE2_CODE_UNIT_WIDTH LIBPCRE_LIBS LIBPCRE_CFLAGS +PKG_CONFIG_LIBDIR +PKG_CONFIG_PATH PKG_CONFIG AR HAVE_CXX20 @@ -1188,7 +1190,6 @@ enable_fsvolume enable_fswatcher enable_geometry enable_log -enable_longlong enable_mimetype enable_printfposparam enable_secretstore @@ -1391,6 +1392,8 @@ CXX CXXFLAGS CCC PKG_CONFIG +PKG_CONFIG_PATH +PKG_CONFIG_LIBDIR LIBPCRE_CFLAGS LIBPCRE_LIBS LIBTIFF_CFLAGS @@ -2157,7 +2160,6 @@ Optional Features: --enable-fswatcher use wxFileSystemWatcher class --enable-geometry use geometry class --enable-log use logging system - --enable-longlong use wxLongLong class --enable-mimetype use wxMimeTypesManager --enable-printfposparam use wxVsnprintf() which supports positional parameters --enable-secretstore use wxSecretStore class @@ -2408,6 +2410,10 @@ Some influential environment variables: CXX C++ compiler command CXXFLAGS C++ compiler flags PKG_CONFIG path to pkg-config utility + PKG_CONFIG_PATH + directories to add to pkg-config's search path + PKG_CONFIG_LIBDIR + path overriding pkg-config's built-in search path LIBPCRE_CFLAGS C compiler flags for LIBPCRE, overriding pkg-config LIBPCRE_LIBS @@ -7420,35 +7426,6 @@ fi eval "$wx_cv_use_log" - enablestring= - defaultval=$wxUSE_ALL_FEATURES - if test -z "$defaultval"; then - if test x"$enablestring" = xdisable; then - defaultval=yes - else - defaultval=no - fi - fi - - # Check whether --enable-longlong was given. -if test "${enable_longlong+set}" = set; then : - enableval=$enable_longlong; - if test "$enableval" = yes; then - wx_cv_use_longlong='wxUSE_LONGLONG=yes' - else - wx_cv_use_longlong='wxUSE_LONGLONG=no' - fi - -else - - wx_cv_use_longlong='wxUSE_LONGLONG=${'DEFAULT_wxUSE_LONGLONG":-$defaultval}" - -fi - - - eval "$wx_cv_use_longlong" - - enablestring= defaultval=$wxUSE_ALL_FEATURES if test -z "$defaultval"; then @@ -24344,41 +24321,80 @@ if test "$ac_cv_sys_largefile_source" != no; then WXCONFIG_CPPFLAGS="$WXCONFIG_CPPFLAGS -D_LARGEFILE_SOURCE=$ac_cv_sys_largefile_source" fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 $as_echo_n "checking whether byte ordering is bigendian... " >&6; } if ${ac_cv_c_bigendian+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_bigendian=unknown -# See if sys/param.h defines the BYTE_ORDER macro. -cat confdefs.h - <<_ACEOF >conftest.$ac_ext + # See if we're dealing with a universal compiler. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifndef __APPLE_CC__ + not a universal capable compiler + #endif + typedef int dummy; + +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + + # Check for potential -arch flags. It is not universal unless + # there are at least two -arch flags with different values. + ac_arch= + ac_prev= + for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do + if test -n "$ac_prev"; then + case $ac_word in + i?86 | x86_64 | ppc | ppc64) + if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then + ac_arch=$ac_word + else + ac_cv_c_bigendian=universal + break + fi + ;; + esac + ac_prev= + elif test "x$ac_word" = "x-arch"; then + ac_prev=arch + fi + done +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + if test $ac_cv_c_bigendian = unknown; then + # See if sys/param.h defines the BYTE_ORDER macro. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include -#include + #include + int main () { +#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \ + && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \ + && LITTLE_ENDIAN) + bogus endian macros + #endif -#if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN - bogus endian macros -#endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : # It does; now see whether it defined to BIG_ENDIAN or not. -cat confdefs.h - <<_ACEOF >conftest.$ac_ext + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include -#include + #include + int main () { - #if BYTE_ORDER != BIG_ENDIAN - not big endian -#endif + not big endian + #endif + ; return 0; } @@ -24391,25 +24407,110 @@ fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -if test $ac_cv_c_bigendian = unknown; then -if test "$cross_compiling" = yes; then : - ac_cv_c_bigendian=unknown + fi + if test $ac_cv_c_bigendian = unknown; then + # See if defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +int +main () +{ +#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) + bogus endian macros + #endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + # It does; now see whether it defined to _BIG_ENDIAN or not. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +int +main () +{ +#ifndef _BIG_ENDIAN + not big endian + #endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_bigendian=yes +else + ac_cv_c_bigendian=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + if test $ac_cv_c_bigendian = unknown; then + # Compile a test program. + if test "$cross_compiling" = yes; then : + # Try to guess by grepping values from an object file. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +short int ascii_mm[] = + { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; + short int ascii_ii[] = + { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; + int use_ascii (int i) { + return ascii_mm[i] + ascii_ii[i]; + } + short int ebcdic_ii[] = + { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; + short int ebcdic_mm[] = + { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; + int use_ebcdic (int i) { + return ebcdic_mm[i] + ebcdic_ii[i]; + } + extern int foo; + +int +main () +{ +return use_ascii (foo) == use_ebcdic (foo); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then + ac_cv_c_bigendian=yes + fi + if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then + if test "$ac_cv_c_bigendian" = unknown; then + ac_cv_c_bigendian=no + else + # finding both strings is unlikely to happen, but who knows? + ac_cv_c_bigendian=unknown + fi + fi +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -#include +$ac_includes_default int main () { - /* Are we little or big endian? From Harbison&Steele. */ - union - { - long l; - char c[sizeof (long)]; - } u; - u.l = 1; - exit (u.c[sizeof (long) - 1] == 1); + /* Are we little or big endian? From Harbison&Steele. */ + union + { + long int l; + char c[sizeof (long int)]; + } u; + u.l = 1; + return u.c[sizeof (long int) - 1] == 1; ; return 0; @@ -24424,18 +24525,25 @@ rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi -fi + fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5 $as_echo "$ac_cv_c_bigendian" >&6; } -if test $ac_cv_c_bigendian = unknown; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Assuming little-endian target machine - this may be overridden by adding the line \"ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}\" to config.cache file" >&5 -$as_echo "$as_me: WARNING: Assuming little-endian target machine - this may be overridden by adding the line \"ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}\" to config.cache file" >&2;} -fi -if test $ac_cv_c_bigendian = yes; then - $as_echo "#define WORDS_BIGENDIAN 1" >>confdefs.h + case $ac_cv_c_bigendian in #( + yes) + $as_echo "#define WORDS_BIGENDIAN 1" >>confdefs.h +;; #( + no) + ;; #( + universal) -fi +$as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h + + ;; #( + *) + as_fn_error $? "unknown endianness + presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; + esac if test "x$SUNCXX" = xyes; then @@ -24922,8 +25030,13 @@ fi + + + + + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then + if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 @@ -25023,18 +25136,17 @@ fi fi if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.9.0 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 + _pkg_min_version=0.9.0 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - PKG_CONFIG="" - fi - + PKG_CONFIG="" + fi fi if test "$build" != "$host"; then @@ -25084,49 +25196,49 @@ if test "$wxUSE_REGEX" != "no"; then if test "$wxUSE_REGEX" != "builtin"; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBPCRE" >&5 -$as_echo_n "checking for LIBPCRE... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libpcre2-$pcre_suffix" >&5 +$as_echo_n "checking for libpcre2-$pcre_suffix... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$LIBPCRE_CFLAGS"; then - pkg_cv_LIBPCRE_CFLAGS="$LIBPCRE_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBPCRE_CFLAGS"; then + pkg_cv_LIBPCRE_CFLAGS="$LIBPCRE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libpcre2-\$pcre_suffix\""; } >&5 ($PKG_CONFIG --exists --print-errors "libpcre2-$pcre_suffix") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBPCRE_CFLAGS=`$PKG_CONFIG --cflags "libpcre2-$pcre_suffix" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$LIBPCRE_LIBS"; then - pkg_cv_LIBPCRE_LIBS="$LIBPCRE_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBPCRE_LIBS"; then + pkg_cv_LIBPCRE_LIBS="$LIBPCRE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libpcre2-\$pcre_suffix\""; } >&5 ($PKG_CONFIG --exists --print-errors "libpcre2-$pcre_suffix") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBPCRE_LIBS=`$PKG_CONFIG --libs "libpcre2-$pcre_suffix" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -25134,25 +25246,27 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - LIBPCRE_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libpcre2-$pcre_suffix"` + LIBPCRE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libpcre2-$pcre_suffix" 2>&1` else - LIBPCRE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libpcre2-$pcre_suffix"` + LIBPCRE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libpcre2-$pcre_suffix" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$LIBPCRE_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$LIBPCRE_PKG_ERRORS" >&5 wxUSE_REGEX=builtin elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } wxUSE_REGEX=builtin else - LIBPCRE_CFLAGS=$pkg_cv_LIBPCRE_CFLAGS - LIBPCRE_LIBS=$pkg_cv_LIBPCRE_LIBS + LIBPCRE_CFLAGS=$pkg_cv_LIBPCRE_CFLAGS + LIBPCRE_LIBS=$pkg_cv_LIBPCRE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -25872,49 +25986,49 @@ if test "$wxUSE_LIBTIFF" != "no" ; then if test "$wxUSE_LIBTIFF" = "sys" -o "$wxUSE_LIBTIFF" = "yes" ; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBTIFF" >&5 -$as_echo_n "checking for LIBTIFF... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libtiff-4" >&5 +$as_echo_n "checking for libtiff-4... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$LIBTIFF_CFLAGS"; then - pkg_cv_LIBTIFF_CFLAGS="$LIBTIFF_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBTIFF_CFLAGS"; then + pkg_cv_LIBTIFF_CFLAGS="$LIBTIFF_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libtiff-4\""; } >&5 ($PKG_CONFIG --exists --print-errors "libtiff-4") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBTIFF_CFLAGS=`$PKG_CONFIG --cflags "libtiff-4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$LIBTIFF_LIBS"; then - pkg_cv_LIBTIFF_LIBS="$LIBTIFF_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBTIFF_LIBS"; then + pkg_cv_LIBTIFF_LIBS="$LIBTIFF_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libtiff-4\""; } >&5 ($PKG_CONFIG --exists --print-errors "libtiff-4") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBTIFF_LIBS=`$PKG_CONFIG --libs "libtiff-4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -25922,12 +26036,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - LIBTIFF_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libtiff-4"` + LIBTIFF_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libtiff-4" 2>&1` else - LIBTIFF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libtiff-4"` + LIBTIFF_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libtiff-4" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$LIBTIFF_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$LIBTIFF_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found via pkg-config" >&5 @@ -25998,6 +26112,8 @@ fi elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found via pkg-config" >&5 $as_echo "not found via pkg-config" >&6; } @@ -26067,8 +26183,8 @@ fi else - LIBTIFF_CFLAGS=$pkg_cv_LIBTIFF_CFLAGS - LIBTIFF_LIBS=$pkg_cv_LIBTIFF_LIBS + LIBTIFF_CFLAGS=$pkg_cv_LIBTIFF_CFLAGS + LIBTIFF_LIBS=$pkg_cv_LIBTIFF_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -27009,49 +27125,49 @@ if test "$wxUSE_WEBREQUEST" = "yes"; then if test "$wxUSE_LIBCURL" != "no"; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBCURL" >&5 -$as_echo_n "checking for LIBCURL... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libcurl" >&5 +$as_echo_n "checking for libcurl... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$LIBCURL_CFLAGS"; then - pkg_cv_LIBCURL_CFLAGS="$LIBCURL_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBCURL_CFLAGS"; then + pkg_cv_LIBCURL_CFLAGS="$LIBCURL_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcurl\""; } >&5 ($PKG_CONFIG --exists --print-errors "libcurl") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBCURL_CFLAGS=`$PKG_CONFIG --cflags "libcurl" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$LIBCURL_LIBS"; then - pkg_cv_LIBCURL_LIBS="$LIBCURL_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBCURL_LIBS"; then + pkg_cv_LIBCURL_LIBS="$LIBCURL_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcurl\""; } >&5 ($PKG_CONFIG --exists --print-errors "libcurl") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBCURL_LIBS=`$PKG_CONFIG --libs "libcurl" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -27059,12 +27175,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - LIBCURL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libcurl"` + LIBCURL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libcurl" 2>&1` else - LIBCURL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libcurl"` + LIBCURL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libcurl" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$LIBCURL_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$LIBCURL_PKG_ERRORS" >&5 wxUSE_LIBCURL=no @@ -27073,6 +27189,8 @@ $as_echo "not found" >&6; } elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } wxUSE_LIBCURL=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 @@ -27080,8 +27198,8 @@ $as_echo "not found" >&6; } else - LIBCURL_CFLAGS=$pkg_cv_LIBCURL_CFLAGS - LIBCURL_LIBS=$pkg_cv_LIBCURL_LIBS + LIBCURL_CFLAGS=$pkg_cv_LIBCURL_CFLAGS + LIBCURL_LIBS=$pkg_cv_LIBCURL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -27176,49 +27294,49 @@ else if test "$wxGTK_VERSION" = 3 -o "$wxGTK_VERSION" = any; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 -$as_echo_n "checking for GTK... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gtk+-3.0" >&5 +$as_echo_n "checking for gtk+-3.0... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GTK_CFLAGS"; then - pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTK_CFLAGS"; then + pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-3.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GTK_LIBS"; then - pkg_cv_GTK_LIBS="$GTK_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTK_LIBS"; then + pkg_cv_GTK_LIBS="$GTK_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-3.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -27226,14 +27344,14 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtk+-3.0"` + GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-3.0" 2>&1` else - GTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk+-3.0"` + GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-3.0" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$GTK_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$GTK_PKG_ERRORS" >&5 - as_fn_error $? "Package requirements (gtk+-3.0) were not met: + as_fn_error $? "Package requirements (gtk+-3.0) were not met: $GTK_PKG_ERRORS @@ -27242,10 +27360,11 @@ installed software in a non-standard prefix. Alternatively, you may set the environment variables GTK_CFLAGS and GTK_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full @@ -27255,63 +27374,63 @@ Alternatively, you may set the environment variables GTK_CFLAGS and GTK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. -To get pkg-config, see . +To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else - GTK_CFLAGS=$pkg_cv_GTK_CFLAGS - GTK_LIBS=$pkg_cv_GTK_LIBS + GTK_CFLAGS=$pkg_cv_GTK_CFLAGS + GTK_LIBS=$pkg_cv_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - wx_cv_lib_gtk=3 + wx_cv_lib_gtk=3 fi fi if test -z "$wx_cv_lib_gtk"; then if test "$wxGTK_VERSION" = 2 -o "$wxGTK_VERSION" = any; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 -$as_echo_n "checking for GTK... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gtk+-2.0 >= 2.6.0" >&5 +$as_echo_n "checking for gtk+-2.0 >= 2.6.0... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GTK_CFLAGS"; then - pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTK_CFLAGS"; then + pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.6.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.6.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= 2.6.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GTK_LIBS"; then - pkg_cv_GTK_LIBS="$GTK_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTK_LIBS"; then + pkg_cv_GTK_LIBS="$GTK_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.6.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.6.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= 2.6.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -27319,14 +27438,14 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtk+-2.0 >= 2.6.0"` + GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-2.0 >= 2.6.0" 2>&1` else - GTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk+-2.0 >= 2.6.0"` + GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-2.0 >= 2.6.0" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$GTK_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$GTK_PKG_ERRORS" >&5 - as_fn_error $? "Package requirements (gtk+-2.0 >= 2.6.0) were not met: + as_fn_error $? "Package requirements (gtk+-2.0 >= 2.6.0) were not met: $GTK_PKG_ERRORS @@ -27335,10 +27454,11 @@ installed software in a non-standard prefix. Alternatively, you may set the environment variables GTK_CFLAGS and GTK_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full @@ -27348,14 +27468,14 @@ Alternatively, you may set the environment variables GTK_CFLAGS and GTK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. -To get pkg-config, see . +To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else - GTK_CFLAGS=$pkg_cv_GTK_CFLAGS - GTK_LIBS=$pkg_cv_GTK_LIBS + GTK_CFLAGS=$pkg_cv_GTK_CFLAGS + GTK_LIBS=$pkg_cv_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - wx_cv_lib_gtk=2.0 + wx_cv_lib_gtk=2.0 fi fi fi @@ -27363,49 +27483,49 @@ fi if test "$wxGTK_VERSION" = 4 -o "$wxGTK_VERSION" = any; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 -$as_echo_n "checking for GTK... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gtk4" >&5 +$as_echo_n "checking for gtk4... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GTK_CFLAGS"; then - pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTK_CFLAGS"; then + pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk4\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk4") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GTK_LIBS"; then - pkg_cv_GTK_LIBS="$GTK_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTK_LIBS"; then + pkg_cv_GTK_LIBS="$GTK_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk4\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk4") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -27413,14 +27533,14 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtk4"` + GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk4" 2>&1` else - GTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk4"` + GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk4" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$GTK_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$GTK_PKG_ERRORS" >&5 - as_fn_error $? "Package requirements (gtk4) were not met: + as_fn_error $? "Package requirements (gtk4) were not met: $GTK_PKG_ERRORS @@ -27429,10 +27549,11 @@ installed software in a non-standard prefix. Alternatively, you may set the environment variables GTK_CFLAGS and GTK_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full @@ -27442,14 +27563,14 @@ Alternatively, you may set the environment variables GTK_CFLAGS and GTK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. -To get pkg-config, see . +To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else - GTK_CFLAGS=$pkg_cv_GTK_CFLAGS - GTK_LIBS=$pkg_cv_GTK_LIBS + GTK_CFLAGS=$pkg_cv_GTK_CFLAGS + GTK_LIBS=$pkg_cv_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - wx_cv_lib_gtk=4 + wx_cv_lib_gtk=4 fi fi fi @@ -27464,49 +27585,49 @@ fi if test "$wxUSE_THREADS" = "yes"; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTHREAD" >&5 -$as_echo_n "checking for GTHREAD... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gthread-2.0" >&5 +$as_echo_n "checking for gthread-2.0... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GTHREAD_CFLAGS"; then - pkg_cv_GTHREAD_CFLAGS="$GTHREAD_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTHREAD_CFLAGS"; then + pkg_cv_GTHREAD_CFLAGS="$GTHREAD_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gthread-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gthread-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTHREAD_CFLAGS=`$PKG_CONFIG --cflags "gthread-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GTHREAD_LIBS"; then - pkg_cv_GTHREAD_LIBS="$GTHREAD_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTHREAD_LIBS"; then + pkg_cv_GTHREAD_LIBS="$GTHREAD_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gthread-2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gthread-2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTHREAD_LIBS=`$PKG_CONFIG --libs "gthread-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -27514,14 +27635,14 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GTHREAD_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gthread-2.0"` + GTHREAD_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gthread-2.0" 2>&1` else - GTHREAD_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gthread-2.0"` + GTHREAD_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gthread-2.0" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$GTHREAD_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$GTHREAD_PKG_ERRORS" >&5 - as_fn_error $? "Package requirements (gthread-2.0) were not met: + as_fn_error $? "Package requirements (gthread-2.0) were not met: $GTHREAD_PKG_ERRORS @@ -27530,10 +27651,11 @@ installed software in a non-standard prefix. Alternatively, you may set the environment variables GTHREAD_CFLAGS and GTHREAD_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" "$LINENO" 5 +See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full @@ -27543,14 +27665,14 @@ Alternatively, you may set the environment variables GTHREAD_CFLAGS and GTHREAD_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. -To get pkg-config, see . +To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else - GTHREAD_CFLAGS=$pkg_cv_GTHREAD_CFLAGS - GTHREAD_LIBS=$pkg_cv_GTHREAD_LIBS + GTHREAD_CFLAGS=$pkg_cv_GTHREAD_CFLAGS + GTHREAD_LIBS=$pkg_cv_GTHREAD_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - : + fi fi @@ -27773,49 +27895,49 @@ $as_echo "$wx_cv_gdk_wayland" >&6; } if test "$wxUSE_DFB" = 1; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DIRECTFB" >&5 -$as_echo_n "checking for DIRECTFB... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for directfb >= 0.9.23" >&5 +$as_echo_n "checking for directfb >= 0.9.23... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$DIRECTFB_CFLAGS"; then - pkg_cv_DIRECTFB_CFLAGS="$DIRECTFB_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$DIRECTFB_CFLAGS"; then + pkg_cv_DIRECTFB_CFLAGS="$DIRECTFB_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"directfb >= 0.9.23\""; } >&5 ($PKG_CONFIG --exists --print-errors "directfb >= 0.9.23") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags "directfb >= 0.9.23" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$DIRECTFB_LIBS"; then - pkg_cv_DIRECTFB_LIBS="$DIRECTFB_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$DIRECTFB_LIBS"; then + pkg_cv_DIRECTFB_LIBS="$DIRECTFB_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"directfb >= 0.9.23\""; } >&5 ($PKG_CONFIG --exists --print-errors "directfb >= 0.9.23") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_DIRECTFB_LIBS=`$PKG_CONFIG --libs "directfb >= 0.9.23" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -27823,25 +27945,27 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - DIRECTFB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "directfb >= 0.9.23"` + DIRECTFB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "directfb >= 0.9.23" 2>&1` else - DIRECTFB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "directfb >= 0.9.23"` + DIRECTFB_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "directfb >= 0.9.23" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$DIRECTFB_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$DIRECTFB_PKG_ERRORS" >&5 as_fn_error $? "DirectFB not found." "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } as_fn_error $? "DirectFB not found." "$LINENO" 5 else - DIRECTFB_CFLAGS=$pkg_cv_DIRECTFB_CFLAGS - DIRECTFB_LIBS=$pkg_cv_DIRECTFB_LIBS + DIRECTFB_CFLAGS=$pkg_cv_DIRECTFB_CFLAGS + DIRECTFB_LIBS=$pkg_cv_DIRECTFB_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -28564,49 +28688,49 @@ $as_echo "$MICROWIN" >&6; } pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for PANGOXFT" >&5 -$as_echo_n "checking for PANGOXFT... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pangoxft" >&5 +$as_echo_n "checking for pangoxft... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$PANGOXFT_CFLAGS"; then - pkg_cv_PANGOXFT_CFLAGS="$PANGOXFT_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$PANGOXFT_CFLAGS"; then + pkg_cv_PANGOXFT_CFLAGS="$PANGOXFT_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pangoxft\""; } >&5 ($PKG_CONFIG --exists --print-errors "pangoxft") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_PANGOXFT_CFLAGS=`$PKG_CONFIG --cflags "pangoxft" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$PANGOXFT_LIBS"; then - pkg_cv_PANGOXFT_LIBS="$PANGOXFT_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$PANGOXFT_LIBS"; then + pkg_cv_PANGOXFT_LIBS="$PANGOXFT_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pangoxft\""; } >&5 ($PKG_CONFIG --exists --print-errors "pangoxft") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_PANGOXFT_LIBS=`$PKG_CONFIG --libs "pangoxft" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -28614,25 +28738,27 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - PANGOXFT_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "pangoxft"` + PANGOXFT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "pangoxft" 2>&1` else - PANGOXFT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pangoxft"` + PANGOXFT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "pangoxft" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$PANGOXFT_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$PANGOXFT_PKG_ERRORS" >&5 as_fn_error $? "Required pangoxft library not found" "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } as_fn_error $? "Required pangoxft library not found" "$LINENO" 5 else - PANGOXFT_CFLAGS=$pkg_cv_PANGOXFT_CFLAGS - PANGOXFT_LIBS=$pkg_cv_PANGOXFT_LIBS + PANGOXFT_CFLAGS=$pkg_cv_PANGOXFT_CFLAGS + PANGOXFT_LIBS=$pkg_cv_PANGOXFT_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -28645,49 +28771,49 @@ $as_echo "yes" >&6; } fi pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for PANGOFT2" >&5 -$as_echo_n "checking for PANGOFT2... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pangoft2" >&5 +$as_echo_n "checking for pangoft2... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$PANGOFT2_CFLAGS"; then - pkg_cv_PANGOFT2_CFLAGS="$PANGOFT2_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$PANGOFT2_CFLAGS"; then + pkg_cv_PANGOFT2_CFLAGS="$PANGOFT2_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pangoft2\""; } >&5 ($PKG_CONFIG --exists --print-errors "pangoft2") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_PANGOFT2_CFLAGS=`$PKG_CONFIG --cflags "pangoft2" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$PANGOFT2_LIBS"; then - pkg_cv_PANGOFT2_LIBS="$PANGOFT2_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$PANGOFT2_LIBS"; then + pkg_cv_PANGOFT2_LIBS="$PANGOFT2_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pangoft2\""; } >&5 ($PKG_CONFIG --exists --print-errors "pangoft2") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_PANGOFT2_LIBS=`$PKG_CONFIG --libs "pangoft2" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -28695,12 +28821,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - PANGOFT2_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "pangoft2"` + PANGOFT2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "pangoft2" 2>&1` else - PANGOFT2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pangoft2"` + PANGOFT2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "pangoft2" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$PANGOFT2_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$PANGOFT2_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pangoft2 library not found, library will be compiled without printing support" >&5 @@ -28709,6 +28835,8 @@ $as_echo "$as_me: WARNING: pangoft2 library not found, library will be compiled elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pangoft2 library not found, library will be compiled without printing support" >&5 $as_echo "$as_me: WARNING: pangoft2 library not found, library will be compiled without printing support" >&2;} @@ -28716,8 +28844,8 @@ $as_echo "$as_me: WARNING: pangoft2 library not found, library will be compiled else - PANGOFT2_CFLAGS=$pkg_cv_PANGOFT2_CFLAGS - PANGOFT2_LIBS=$pkg_cv_PANGOFT2_LIBS + PANGOFT2_CFLAGS=$pkg_cv_PANGOFT2_CFLAGS + PANGOFT2_LIBS=$pkg_cv_PANGOFT2_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -28953,49 +29081,49 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext else pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT5" >&5 -$as_echo_n "checking for QT5... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test" >&5 +$as_echo_n "checking for Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$QT5_CFLAGS"; then - pkg_cv_QT5_CFLAGS="$QT5_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$QT5_CFLAGS"; then + pkg_cv_QT5_CFLAGS="$QT5_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test\""; } >&5 ($PKG_CONFIG --exists --print-errors "Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_QT5_CFLAGS=`$PKG_CONFIG --cflags "Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$QT5_LIBS"; then - pkg_cv_QT5_LIBS="$QT5_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$QT5_LIBS"; then + pkg_cv_QT5_LIBS="$QT5_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test\""; } >&5 ($PKG_CONFIG --exists --print-errors "Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_QT5_LIBS=`$PKG_CONFIG --libs "Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -29003,25 +29131,27 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - QT5_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test"` + QT5_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test" 2>&1` else - QT5_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test"` + QT5_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "Qt5Core Qt5Widgets Qt5Gui Qt5OpenGL Qt5Test" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$QT5_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$QT5_PKG_ERRORS" >&5 as_fn_error $? "Qt5 libraries are not available" "$LINENO" 5 elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } as_fn_error $? "Qt5 libraries are not available" "$LINENO" 5 else - QT5_CFLAGS=$pkg_cv_QT5_CFLAGS - QT5_LIBS=$pkg_cv_QT5_LIBS + QT5_CFLAGS=$pkg_cv_QT5_CFLAGS + QT5_LIBS=$pkg_cv_QT5_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -29104,8 +29234,13 @@ if test "$wxUSE_DISPLAY" = "yes"; then fl_pkgname=`echo "Xinerama" | tr [:upper:] [:lower:]` + + + + + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then + if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 @@ -29205,64 +29340,63 @@ fi fi if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.9.0 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 + _pkg_min_version=0.9.0 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - PKG_CONFIG="" - fi - + PKG_CONFIG="" + fi fi 6> /dev/null pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Xinerama" >&5 -$as_echo_n "checking for Xinerama... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $fl_pkgname" >&5 +$as_echo_n "checking for $fl_pkgname... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$Xinerama_CFLAGS"; then - pkg_cv_Xinerama_CFLAGS="$Xinerama_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$Xinerama_CFLAGS"; then + pkg_cv_Xinerama_CFLAGS="$Xinerama_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$fl_pkgname\""; } >&5 ($PKG_CONFIG --exists --print-errors "$fl_pkgname") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_Xinerama_CFLAGS=`$PKG_CONFIG --cflags "$fl_pkgname" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$Xinerama_LIBS"; then - pkg_cv_Xinerama_LIBS="$Xinerama_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$Xinerama_LIBS"; then + pkg_cv_Xinerama_LIBS="$Xinerama_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$fl_pkgname\""; } >&5 ($PKG_CONFIG --exists --print-errors "$fl_pkgname") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_Xinerama_LIBS=`$PKG_CONFIG --libs "$fl_pkgname" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -29270,12 +29404,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - Xinerama_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$fl_pkgname"` + Xinerama_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$fl_pkgname" 2>&1` else - Xinerama_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$fl_pkgname"` + Xinerama_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$fl_pkgname" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$Xinerama_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$Xinerama_PKG_ERRORS" >&5 if test "x$ac_find_libraries" = "x"; then @@ -29348,6 +29482,8 @@ $as_echo "no" >&6; } fi elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if test "x$ac_find_libraries" = "x"; then if test "xXineramaQueryScreens" != "x"; then @@ -29419,8 +29555,8 @@ $as_echo "no" >&6; } fi else - Xinerama_CFLAGS=$pkg_cv_Xinerama_CFLAGS - Xinerama_LIBS=$pkg_cv_Xinerama_LIBS + Xinerama_CFLAGS=$pkg_cv_Xinerama_CFLAGS + Xinerama_LIBS=$pkg_cv_Xinerama_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -29475,8 +29611,13 @@ if test "$wxUSE_DISPLAY" = "yes"; then fl_pkgname=`echo "Xxf86vm" | tr [:upper:] [:lower:]` + + + + + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then + if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 @@ -29576,64 +29717,63 @@ fi fi if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.9.0 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 + _pkg_min_version=0.9.0 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - PKG_CONFIG="" - fi - + PKG_CONFIG="" + fi fi 6> /dev/null pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Xxf86vm" >&5 -$as_echo_n "checking for Xxf86vm... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $fl_pkgname" >&5 +$as_echo_n "checking for $fl_pkgname... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$Xxf86vm_CFLAGS"; then - pkg_cv_Xxf86vm_CFLAGS="$Xxf86vm_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$Xxf86vm_CFLAGS"; then + pkg_cv_Xxf86vm_CFLAGS="$Xxf86vm_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$fl_pkgname\""; } >&5 ($PKG_CONFIG --exists --print-errors "$fl_pkgname") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_Xxf86vm_CFLAGS=`$PKG_CONFIG --cflags "$fl_pkgname" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$Xxf86vm_LIBS"; then - pkg_cv_Xxf86vm_LIBS="$Xxf86vm_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$Xxf86vm_LIBS"; then + pkg_cv_Xxf86vm_LIBS="$Xxf86vm_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$fl_pkgname\""; } >&5 ($PKG_CONFIG --exists --print-errors "$fl_pkgname") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_Xxf86vm_LIBS=`$PKG_CONFIG --libs "$fl_pkgname" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -29641,12 +29781,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - Xxf86vm_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$fl_pkgname"` + Xxf86vm_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$fl_pkgname" 2>&1` else - Xxf86vm_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$fl_pkgname"` + Xxf86vm_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$fl_pkgname" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$Xxf86vm_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$Xxf86vm_PKG_ERRORS" >&5 if test "x$ac_find_libraries" = "x"; then @@ -29719,6 +29859,8 @@ $as_echo "no" >&6; } fi elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if test "x$ac_find_libraries" = "x"; then if test "xXF86VidModeQueryExtension" != "x"; then @@ -29790,8 +29932,8 @@ $as_echo "no" >&6; } fi else - Xxf86vm_CFLAGS=$pkg_cv_Xxf86vm_CFLAGS - Xxf86vm_LIBS=$pkg_cv_Xxf86vm_LIBS + Xxf86vm_CFLAGS=$pkg_cv_Xxf86vm_CFLAGS + Xxf86vm_LIBS=$pkg_cv_Xxf86vm_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -29841,8 +29983,13 @@ if test "$wxUSE_DETECT_SM" = "yes"; then fl_pkgname=`echo "SM" | tr [:upper:] [:lower:]` + + + + + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then + if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 @@ -29942,64 +30089,63 @@ fi fi if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.9.0 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 + _pkg_min_version=0.9.0 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - PKG_CONFIG="" - fi - + PKG_CONFIG="" + fi fi 6> /dev/null pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for SM" >&5 -$as_echo_n "checking for SM... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $fl_pkgname" >&5 +$as_echo_n "checking for $fl_pkgname... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$SM_CFLAGS"; then - pkg_cv_SM_CFLAGS="$SM_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$SM_CFLAGS"; then + pkg_cv_SM_CFLAGS="$SM_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$fl_pkgname\""; } >&5 ($PKG_CONFIG --exists --print-errors "$fl_pkgname") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SM_CFLAGS=`$PKG_CONFIG --cflags "$fl_pkgname" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$SM_LIBS"; then - pkg_cv_SM_LIBS="$SM_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$SM_LIBS"; then + pkg_cv_SM_LIBS="$SM_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$fl_pkgname\""; } >&5 ($PKG_CONFIG --exists --print-errors "$fl_pkgname") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SM_LIBS=`$PKG_CONFIG --libs "$fl_pkgname" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -30007,12 +30153,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - SM_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$fl_pkgname"` + SM_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$fl_pkgname" 2>&1` else - SM_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$fl_pkgname"` + SM_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$fl_pkgname" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$SM_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$SM_PKG_ERRORS" >&5 if test "x$ac_find_libraries" = "x"; then @@ -30085,6 +30231,8 @@ $as_echo "no" >&6; } fi elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if test "x$ac_find_libraries" = "x"; then if test "xSmcOpenConnection" != "x"; then @@ -30156,8 +30304,8 @@ $as_echo "no" >&6; } fi else - SM_CFLAGS=$pkg_cv_SM_CFLAGS - SM_LIBS=$pkg_cv_SM_LIBS + SM_CFLAGS=$pkg_cv_SM_CFLAGS + SM_LIBS=$pkg_cv_SM_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -30263,8 +30411,13 @@ if test "x$ac_cv_header_GL_gl_h" = xyes; then : fl_pkgname=`echo "GL" | tr [:upper:] [:lower:]` + + + + + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then + if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 @@ -30364,64 +30517,63 @@ fi fi if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.9.0 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 + _pkg_min_version=0.9.0 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - PKG_CONFIG="" - fi - + PKG_CONFIG="" + fi fi 6> /dev/null pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GL" >&5 -$as_echo_n "checking for GL... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $fl_pkgname" >&5 +$as_echo_n "checking for $fl_pkgname... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GL_CFLAGS"; then - pkg_cv_GL_CFLAGS="$GL_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GL_CFLAGS"; then + pkg_cv_GL_CFLAGS="$GL_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$fl_pkgname\""; } >&5 ($PKG_CONFIG --exists --print-errors "$fl_pkgname") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GL_CFLAGS=`$PKG_CONFIG --cflags "$fl_pkgname" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GL_LIBS"; then - pkg_cv_GL_LIBS="$GL_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GL_LIBS"; then + pkg_cv_GL_LIBS="$GL_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$fl_pkgname\""; } >&5 ($PKG_CONFIG --exists --print-errors "$fl_pkgname") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GL_LIBS=`$PKG_CONFIG --libs "$fl_pkgname" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -30429,12 +30581,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$fl_pkgname"` + GL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$fl_pkgname" 2>&1` else - GL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$fl_pkgname"` + GL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$fl_pkgname" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$GL_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$GL_PKG_ERRORS" >&5 if test "x$ac_find_libraries" = "x"; then @@ -30507,6 +30659,8 @@ $as_echo "no" >&6; } fi elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if test "x$ac_find_libraries" = "x"; then if test "xglBegin" != "x"; then @@ -30578,8 +30732,8 @@ $as_echo "no" >&6; } fi else - GL_CFLAGS=$pkg_cv_GL_CFLAGS - GL_LIBS=$pkg_cv_GL_LIBS + GL_CFLAGS=$pkg_cv_GL_CFLAGS + GL_LIBS=$pkg_cv_GL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -30624,49 +30778,49 @@ fi if test "$wxUSE_GLCANVAS_EGL" != "no"; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for EGL" >&5 -$as_echo_n "checking for EGL... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egl >= 1.5" >&5 +$as_echo_n "checking for egl >= 1.5... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$EGL_CFLAGS"; then - pkg_cv_EGL_CFLAGS="$EGL_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$EGL_CFLAGS"; then + pkg_cv_EGL_CFLAGS="$EGL_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"egl >= 1.5\""; } >&5 ($PKG_CONFIG --exists --print-errors "egl >= 1.5") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_EGL_CFLAGS=`$PKG_CONFIG --cflags "egl >= 1.5" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$EGL_LIBS"; then - pkg_cv_EGL_LIBS="$EGL_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$EGL_LIBS"; then + pkg_cv_EGL_LIBS="$EGL_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"egl >= 1.5\""; } >&5 ($PKG_CONFIG --exists --print-errors "egl >= 1.5") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_EGL_LIBS=`$PKG_CONFIG --libs "egl >= 1.5" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -30674,12 +30828,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - EGL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "egl >= 1.5"` + EGL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "egl >= 1.5" 2>&1` else - EGL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "egl >= 1.5"` + EGL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "egl >= 1.5" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$EGL_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$EGL_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: EGL 1.5+ not available. Will use GLX." >&5 @@ -30687,14 +30841,16 @@ $as_echo "$as_me: EGL 1.5+ not available. Will use GLX." >&6;} elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: EGL 1.5+ not available. Will use GLX." >&5 $as_echo "$as_me: EGL 1.5+ not available. Will use GLX." >&6;} else - EGL_CFLAGS=$pkg_cv_EGL_CFLAGS - EGL_LIBS=$pkg_cv_EGL_LIBS + EGL_CFLAGS=$pkg_cv_EGL_CFLAGS + EGL_LIBS=$pkg_cv_EGL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -30703,49 +30859,49 @@ $as_echo "yes" >&6; } pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for WAYLAND_EGL" >&5 -$as_echo_n "checking for WAYLAND_EGL... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for wayland-egl" >&5 +$as_echo_n "checking for wayland-egl... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$WAYLAND_EGL_CFLAGS"; then - pkg_cv_WAYLAND_EGL_CFLAGS="$WAYLAND_EGL_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$WAYLAND_EGL_CFLAGS"; then + pkg_cv_WAYLAND_EGL_CFLAGS="$WAYLAND_EGL_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"wayland-egl\""; } >&5 ($PKG_CONFIG --exists --print-errors "wayland-egl") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_WAYLAND_EGL_CFLAGS=`$PKG_CONFIG --cflags "wayland-egl" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$WAYLAND_EGL_LIBS"; then - pkg_cv_WAYLAND_EGL_LIBS="$WAYLAND_EGL_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$WAYLAND_EGL_LIBS"; then + pkg_cv_WAYLAND_EGL_LIBS="$WAYLAND_EGL_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"wayland-egl\""; } >&5 ($PKG_CONFIG --exists --print-errors "wayland-egl") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_WAYLAND_EGL_LIBS=`$PKG_CONFIG --libs "wayland-egl" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -30753,21 +30909,23 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - WAYLAND_EGL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "wayland-egl"` + WAYLAND_EGL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "wayland-egl" 2>&1` else - WAYLAND_EGL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "wayland-egl"` + WAYLAND_EGL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "wayland-egl" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$WAYLAND_EGL_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$WAYLAND_EGL_PKG_ERRORS" >&5 - : + : elif test $pkg_failed = untried; then - : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + : else - WAYLAND_EGL_CFLAGS=$pkg_cv_WAYLAND_EGL_CFLAGS - WAYLAND_EGL_LIBS=$pkg_cv_WAYLAND_EGL_LIBS + WAYLAND_EGL_CFLAGS=$pkg_cv_WAYLAND_EGL_CFLAGS + WAYLAND_EGL_LIBS=$pkg_cv_WAYLAND_EGL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -30794,8 +30952,13 @@ $as_echo "$as_me: wxGLCanvas will not have Wayland support" >&6;} fl_pkgname=`echo "MesaGL" | tr [:upper:] [:lower:]` + + + + + if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then + if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 @@ -30895,64 +31058,63 @@ fi fi if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.9.0 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 + _pkg_min_version=0.9.0 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - PKG_CONFIG="" - fi - + PKG_CONFIG="" + fi fi 6> /dev/null pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for MesaGL" >&5 -$as_echo_n "checking for MesaGL... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $fl_pkgname" >&5 +$as_echo_n "checking for $fl_pkgname... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$MesaGL_CFLAGS"; then - pkg_cv_MesaGL_CFLAGS="$MesaGL_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MesaGL_CFLAGS"; then + pkg_cv_MesaGL_CFLAGS="$MesaGL_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$fl_pkgname\""; } >&5 ($PKG_CONFIG --exists --print-errors "$fl_pkgname") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_MesaGL_CFLAGS=`$PKG_CONFIG --cflags "$fl_pkgname" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$MesaGL_LIBS"; then - pkg_cv_MesaGL_LIBS="$MesaGL_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$MesaGL_LIBS"; then + pkg_cv_MesaGL_LIBS="$MesaGL_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$fl_pkgname\""; } >&5 ($PKG_CONFIG --exists --print-errors "$fl_pkgname") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_MesaGL_LIBS=`$PKG_CONFIG --libs "$fl_pkgname" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -30960,12 +31122,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - MesaGL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$fl_pkgname"` + MesaGL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$fl_pkgname" 2>&1` else - MesaGL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$fl_pkgname"` + MesaGL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$fl_pkgname" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$MesaGL_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$MesaGL_PKG_ERRORS" >&5 if test "x$ac_find_libraries" = "x"; then @@ -31038,6 +31200,8 @@ $as_echo "no" >&6; } fi elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if test "x$ac_find_libraries" = "x"; then if test "xglEnable" != "x"; then @@ -31109,8 +31273,8 @@ $as_echo "no" >&6; } fi else - MesaGL_CFLAGS=$pkg_cv_MesaGL_CFLAGS - MesaGL_LIBS=$pkg_cv_MesaGL_LIBS + MesaGL_CFLAGS=$pkg_cv_MesaGL_CFLAGS + MesaGL_LIBS=$pkg_cv_MesaGL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -35327,49 +35491,49 @@ if test "$wxUSE_GTK" = 1; then if test "$USE_WIN32" != 1 -a "$USE_DARWIN" != 1; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XKBCOMMON" >&5 -$as_echo_n "checking for XKBCOMMON... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for xkbcommon" >&5 +$as_echo_n "checking for xkbcommon... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$XKBCOMMON_CFLAGS"; then - pkg_cv_XKBCOMMON_CFLAGS="$XKBCOMMON_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$XKBCOMMON_CFLAGS"; then + pkg_cv_XKBCOMMON_CFLAGS="$XKBCOMMON_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xkbcommon\""; } >&5 ($PKG_CONFIG --exists --print-errors "xkbcommon") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_XKBCOMMON_CFLAGS=`$PKG_CONFIG --cflags "xkbcommon" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$XKBCOMMON_LIBS"; then - pkg_cv_XKBCOMMON_LIBS="$XKBCOMMON_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$XKBCOMMON_LIBS"; then + pkg_cv_XKBCOMMON_LIBS="$XKBCOMMON_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xkbcommon\""; } >&5 ($PKG_CONFIG --exists --print-errors "xkbcommon") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_XKBCOMMON_LIBS=`$PKG_CONFIG --libs "xkbcommon" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -35377,12 +35541,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - XKBCOMMON_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "xkbcommon"` + XKBCOMMON_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "xkbcommon" 2>&1` else - XKBCOMMON_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "xkbcommon"` + XKBCOMMON_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "xkbcommon" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$XKBCOMMON_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$XKBCOMMON_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libxkbcommon not found, key codes in key events may be incorrect" >&5 @@ -35390,14 +35554,16 @@ $as_echo "$as_me: WARNING: libxkbcommon not found, key codes in key events may b elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libxkbcommon not found, key codes in key events may be incorrect" >&5 $as_echo "$as_me: WARNING: libxkbcommon not found, key codes in key events may be incorrect" >&2;} else - XKBCOMMON_CFLAGS=$pkg_cv_XKBCOMMON_CFLAGS - XKBCOMMON_LIBS=$pkg_cv_XKBCOMMON_LIBS + XKBCOMMON_CFLAGS=$pkg_cv_XKBCOMMON_CFLAGS + XKBCOMMON_LIBS=$pkg_cv_XKBCOMMON_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -35416,49 +35582,49 @@ if test "$wxUSE_SECRETSTORE" = "yes"; then if test "$wxUSE_MSW" != "1" -a "$wxUSE_OSX_COCOA" != 1; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBSECRET" >&5 -$as_echo_n "checking for LIBSECRET... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libsecret-1" >&5 +$as_echo_n "checking for libsecret-1... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$LIBSECRET_CFLAGS"; then - pkg_cv_LIBSECRET_CFLAGS="$LIBSECRET_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBSECRET_CFLAGS"; then + pkg_cv_LIBSECRET_CFLAGS="$LIBSECRET_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsecret-1\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsecret-1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSECRET_CFLAGS=`$PKG_CONFIG --cflags "libsecret-1" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$LIBSECRET_LIBS"; then - pkg_cv_LIBSECRET_LIBS="$LIBSECRET_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBSECRET_LIBS"; then + pkg_cv_LIBSECRET_LIBS="$LIBSECRET_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsecret-1\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsecret-1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSECRET_LIBS=`$PKG_CONFIG --libs "libsecret-1" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -35466,12 +35632,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - LIBSECRET_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libsecret-1"` + LIBSECRET_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsecret-1" 2>&1` else - LIBSECRET_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libsecret-1"` + LIBSECRET_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsecret-1" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$LIBSECRET_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$LIBSECRET_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libsecret not found, wxSecretStore won't be available" >&5 @@ -35480,6 +35646,8 @@ $as_echo "$as_me: WARNING: libsecret not found, wxSecretStore won't be available elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libsecret not found, wxSecretStore won't be available" >&5 $as_echo "$as_me: WARNING: libsecret not found, wxSecretStore won't be available" >&2;} @@ -35487,8 +35655,8 @@ $as_echo "$as_me: WARNING: libsecret not found, wxSecretStore won't be available else - LIBSECRET_CFLAGS=$pkg_cv_LIBSECRET_CFLAGS - LIBSECRET_LIBS=$pkg_cv_LIBSECRET_LIBS + LIBSECRET_CFLAGS=$pkg_cv_LIBSECRET_CFLAGS + LIBSECRET_LIBS=$pkg_cv_LIBSECRET_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -35516,49 +35684,49 @@ if test "$wxUSE_SPELLCHECK" = "yes"; then if test "$WXGTK3" = 1; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GSPELL" >&5 -$as_echo_n "checking for GSPELL... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gspell-1" >&5 +$as_echo_n "checking for gspell-1... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GSPELL_CFLAGS"; then - pkg_cv_GSPELL_CFLAGS="$GSPELL_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GSPELL_CFLAGS"; then + pkg_cv_GSPELL_CFLAGS="$GSPELL_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gspell-1\""; } >&5 ($PKG_CONFIG --exists --print-errors "gspell-1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GSPELL_CFLAGS=`$PKG_CONFIG --cflags "gspell-1" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GSPELL_LIBS"; then - pkg_cv_GSPELL_LIBS="$GSPELL_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GSPELL_LIBS"; then + pkg_cv_GSPELL_LIBS="$GSPELL_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gspell-1\""; } >&5 ($PKG_CONFIG --exists --print-errors "gspell-1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GSPELL_LIBS=`$PKG_CONFIG --libs "gspell-1" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -35566,12 +35734,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GSPELL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gspell-1"` + GSPELL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gspell-1" 2>&1` else - GSPELL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gspell-1"` + GSPELL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gspell-1" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$GSPELL_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$GSPELL_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: gspell-1 not found, spell checking in wxTextCtrl won't be available" >&5 @@ -35580,6 +35748,8 @@ $as_echo "$as_me: WARNING: gspell-1 not found, spell checking in wxTextCtrl won' elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: gspell-1 not found, spell checking in wxTextCtrl won't be available" >&5 $as_echo "$as_me: WARNING: gspell-1 not found, spell checking in wxTextCtrl won't be available" >&2;} @@ -35587,8 +35757,8 @@ $as_echo "$as_me: WARNING: gspell-1 not found, spell checking in wxTextCtrl won' else - GSPELL_CFLAGS=$pkg_cv_GSPELL_CFLAGS - GSPELL_LIBS=$pkg_cv_GSPELL_LIBS + GSPELL_CFLAGS=$pkg_cv_GSPELL_CFLAGS + GSPELL_LIBS=$pkg_cv_GSPELL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -35714,49 +35884,49 @@ if test "$wxUSE_SOUND" = "yes"; then if test "$wxUSE_LIBSDL" != "no"; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for SDL" >&5 -$as_echo_n "checking for SDL... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sdl2 >= 2.0.0" >&5 +$as_echo_n "checking for sdl2 >= 2.0.0... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$SDL_CFLAGS"; then - pkg_cv_SDL_CFLAGS="$SDL_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$SDL_CFLAGS"; then + pkg_cv_SDL_CFLAGS="$SDL_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sdl2 >= 2.0.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "sdl2 >= 2.0.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SDL_CFLAGS=`$PKG_CONFIG --cflags "sdl2 >= 2.0.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$SDL_LIBS"; then - pkg_cv_SDL_LIBS="$SDL_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$SDL_LIBS"; then + pkg_cv_SDL_LIBS="$SDL_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sdl2 >= 2.0.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "sdl2 >= 2.0.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SDL_LIBS=`$PKG_CONFIG --libs "sdl2 >= 2.0.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -35764,12 +35934,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - SDL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "sdl2 >= 2.0.0"` + SDL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "sdl2 >= 2.0.0" 2>&1` else - SDL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "sdl2 >= 2.0.0"` + SDL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "sdl2 >= 2.0.0" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$SDL_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$SDL_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: SDL 2.0 not available. Falling back to 1.2." >&5 @@ -36035,6 +36205,8 @@ rm -f core conftest.err conftest.$ac_objext \ elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: SDL 2.0 not available. Falling back to 1.2." >&5 $as_echo "$as_me: SDL 2.0 not available. Falling back to 1.2." >&6;} @@ -36299,8 +36471,8 @@ rm -f core conftest.err conftest.$ac_objext \ else - SDL_CFLAGS=$pkg_cv_SDL_CFLAGS - SDL_LIBS=$pkg_cv_SDL_LIBS + SDL_CFLAGS=$pkg_cv_SDL_CFLAGS + SDL_LIBS=$pkg_cv_SDL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -36335,49 +36507,49 @@ if test "$wxUSE_GTK" = 1; then fi pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTKPRINT" >&5 -$as_echo_n "checking for GTKPRINT... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $gtk_unix_print" >&5 +$as_echo_n "checking for $gtk_unix_print... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GTKPRINT_CFLAGS"; then - pkg_cv_GTKPRINT_CFLAGS="$GTKPRINT_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTKPRINT_CFLAGS"; then + pkg_cv_GTKPRINT_CFLAGS="$GTKPRINT_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$gtk_unix_print\""; } >&5 ($PKG_CONFIG --exists --print-errors "$gtk_unix_print") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTKPRINT_CFLAGS=`$PKG_CONFIG --cflags "$gtk_unix_print" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GTKPRINT_LIBS"; then - pkg_cv_GTKPRINT_LIBS="$GTKPRINT_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GTKPRINT_LIBS"; then + pkg_cv_GTKPRINT_LIBS="$GTKPRINT_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$gtk_unix_print\""; } >&5 ($PKG_CONFIG --exists --print-errors "$gtk_unix_print") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTKPRINT_LIBS=`$PKG_CONFIG --libs "$gtk_unix_print" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -36385,12 +36557,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GTKPRINT_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$gtk_unix_print"` + GTKPRINT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$gtk_unix_print" 2>&1` else - GTKPRINT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$gtk_unix_print"` + GTKPRINT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$gtk_unix_print" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$GTKPRINT_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$GTKPRINT_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: GTK printing support not found (GTK+ >= 2.10), library will use GNOME printing support or standard PostScript printing" >&5 @@ -36399,6 +36571,8 @@ $as_echo "$as_me: WARNING: GTK printing support not found (GTK+ >= 2.10), librar elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: GTK printing support not found (GTK+ >= 2.10), library will use GNOME printing support or standard PostScript printing" >&5 $as_echo "$as_me: WARNING: GTK printing support not found (GTK+ >= 2.10), library will use GNOME printing support or standard PostScript printing" >&2;} @@ -36406,8 +36580,8 @@ $as_echo "$as_me: WARNING: GTK printing support not found (GTK+ >= 2.10), librar else - GTKPRINT_CFLAGS=$pkg_cv_GTKPRINT_CFLAGS - GTKPRINT_LIBS=$pkg_cv_GTKPRINT_LIBS + GTKPRINT_CFLAGS=$pkg_cv_GTKPRINT_CFLAGS + GTKPRINT_LIBS=$pkg_cv_GTKPRINT_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -36426,49 +36600,49 @@ fi pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOMEVFS" >&5 -$as_echo_n "checking for GNOMEVFS... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gnome-vfs-2.0 >= 2.0" >&5 +$as_echo_n "checking for gnome-vfs-2.0 >= 2.0... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GNOMEVFS_CFLAGS"; then - pkg_cv_GNOMEVFS_CFLAGS="$GNOMEVFS_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GNOMEVFS_CFLAGS"; then + pkg_cv_GNOMEVFS_CFLAGS="$GNOMEVFS_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-vfs-2.0 >= 2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnome-vfs-2.0 >= 2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNOMEVFS_CFLAGS=`$PKG_CONFIG --cflags "gnome-vfs-2.0 >= 2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GNOMEVFS_LIBS"; then - pkg_cv_GNOMEVFS_LIBS="$GNOMEVFS_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GNOMEVFS_LIBS"; then + pkg_cv_GNOMEVFS_LIBS="$GNOMEVFS_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-vfs-2.0 >= 2.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnome-vfs-2.0 >= 2.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GNOMEVFS_LIBS=`$PKG_CONFIG --libs "gnome-vfs-2.0 >= 2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -36476,12 +36650,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GNOMEVFS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gnome-vfs-2.0 >= 2.0"` + GNOMEVFS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gnome-vfs-2.0 >= 2.0" 2>&1` else - GNOMEVFS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gnome-vfs-2.0 >= 2.0"` + GNOMEVFS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gnome-vfs-2.0 >= 2.0" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$GNOMEVFS_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$GNOMEVFS_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libgnomevfs not found, library won't be able to associate MIME type" >&5 @@ -36490,6 +36664,8 @@ $as_echo "$as_me: WARNING: libgnomevfs not found, library won't be able to assoc elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libgnomevfs not found, library won't be able to associate MIME type" >&5 $as_echo "$as_me: WARNING: libgnomevfs not found, library won't be able to associate MIME type" >&2;} @@ -36497,8 +36673,8 @@ $as_echo "$as_me: WARNING: libgnomevfs not found, library won't be able to assoc else - GNOMEVFS_CFLAGS=$pkg_cv_GNOMEVFS_CFLAGS - GNOMEVFS_LIBS=$pkg_cv_GNOMEVFS_LIBS + GNOMEVFS_CFLAGS=$pkg_cv_GNOMEVFS_CFLAGS + GNOMEVFS_LIBS=$pkg_cv_GNOMEVFS_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -36517,49 +36693,49 @@ fi HAVE_LIBNOTIFY=0 pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBNOTIFY" >&5 -$as_echo_n "checking for LIBNOTIFY... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libnotify >= 0.7" >&5 +$as_echo_n "checking for libnotify >= 0.7... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$LIBNOTIFY_CFLAGS"; then - pkg_cv_LIBNOTIFY_CFLAGS="$LIBNOTIFY_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBNOTIFY_CFLAGS"; then + pkg_cv_LIBNOTIFY_CFLAGS="$LIBNOTIFY_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libnotify >= 0.7\""; } >&5 ($PKG_CONFIG --exists --print-errors "libnotify >= 0.7") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBNOTIFY_CFLAGS=`$PKG_CONFIG --cflags "libnotify >= 0.7" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$LIBNOTIFY_LIBS"; then - pkg_cv_LIBNOTIFY_LIBS="$LIBNOTIFY_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBNOTIFY_LIBS"; then + pkg_cv_LIBNOTIFY_LIBS="$LIBNOTIFY_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libnotify >= 0.7\""; } >&5 ($PKG_CONFIG --exists --print-errors "libnotify >= 0.7") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBNOTIFY_LIBS=`$PKG_CONFIG --libs "libnotify >= 0.7" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -36567,59 +36743,59 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libnotify >= 0.7"` + LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libnotify >= 0.7" 2>&1` else - LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libnotify >= 0.7"` + LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libnotify >= 0.7" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$LIBNOTIFY_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$LIBNOTIFY_PKG_ERRORS" >&5 pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBNOTIFY" >&5 -$as_echo_n "checking for LIBNOTIFY... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libnotify >= 0.4" >&5 +$as_echo_n "checking for libnotify >= 0.4... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$LIBNOTIFY_CFLAGS"; then - pkg_cv_LIBNOTIFY_CFLAGS="$LIBNOTIFY_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBNOTIFY_CFLAGS"; then + pkg_cv_LIBNOTIFY_CFLAGS="$LIBNOTIFY_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libnotify >= 0.4\""; } >&5 ($PKG_CONFIG --exists --print-errors "libnotify >= 0.4") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBNOTIFY_CFLAGS=`$PKG_CONFIG --cflags "libnotify >= 0.4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$LIBNOTIFY_LIBS"; then - pkg_cv_LIBNOTIFY_LIBS="$LIBNOTIFY_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBNOTIFY_LIBS"; then + pkg_cv_LIBNOTIFY_LIBS="$LIBNOTIFY_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libnotify >= 0.4\""; } >&5 ($PKG_CONFIG --exists --print-errors "libnotify >= 0.4") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBNOTIFY_LIBS=`$PKG_CONFIG --libs "libnotify >= 0.4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -36627,12 +36803,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libnotify >= 0.4"` + LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libnotify >= 0.4" 2>&1` else - LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libnotify >= 0.4"` + LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libnotify >= 0.4" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$LIBNOTIFY_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$LIBNOTIFY_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libnotify not found, wxNotificationMessage will use generic implementation." >&5 @@ -36641,6 +36817,8 @@ $as_echo "$as_me: WARNING: libnotify not found, wxNotificationMessage will use g elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libnotify not found, wxNotificationMessage will use generic implementation." >&5 $as_echo "$as_me: WARNING: libnotify not found, wxNotificationMessage will use generic implementation." >&2;} @@ -36648,61 +36826,63 @@ $as_echo "$as_me: WARNING: libnotify not found, wxNotificationMessage will use g else - LIBNOTIFY_CFLAGS=$pkg_cv_LIBNOTIFY_CFLAGS - LIBNOTIFY_LIBS=$pkg_cv_LIBNOTIFY_LIBS + LIBNOTIFY_CFLAGS=$pkg_cv_LIBNOTIFY_CFLAGS + LIBNOTIFY_LIBS=$pkg_cv_LIBNOTIFY_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - HAVE_LIBNOTIFY=1 + HAVE_LIBNOTIFY=1 fi elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBNOTIFY" >&5 -$as_echo_n "checking for LIBNOTIFY... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libnotify >= 0.4" >&5 +$as_echo_n "checking for libnotify >= 0.4... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$LIBNOTIFY_CFLAGS"; then - pkg_cv_LIBNOTIFY_CFLAGS="$LIBNOTIFY_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBNOTIFY_CFLAGS"; then + pkg_cv_LIBNOTIFY_CFLAGS="$LIBNOTIFY_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libnotify >= 0.4\""; } >&5 ($PKG_CONFIG --exists --print-errors "libnotify >= 0.4") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBNOTIFY_CFLAGS=`$PKG_CONFIG --cflags "libnotify >= 0.4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$LIBNOTIFY_LIBS"; then - pkg_cv_LIBNOTIFY_LIBS="$LIBNOTIFY_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$LIBNOTIFY_LIBS"; then + pkg_cv_LIBNOTIFY_LIBS="$LIBNOTIFY_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libnotify >= 0.4\""; } >&5 ($PKG_CONFIG --exists --print-errors "libnotify >= 0.4") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBNOTIFY_LIBS=`$PKG_CONFIG --libs "libnotify >= 0.4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -36710,12 +36890,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libnotify >= 0.4"` + LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libnotify >= 0.4" 2>&1` else - LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libnotify >= 0.4"` + LIBNOTIFY_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libnotify >= 0.4" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$LIBNOTIFY_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$LIBNOTIFY_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libnotify not found, wxNotificationMessage will use generic implementation." >&5 @@ -36724,6 +36904,8 @@ $as_echo "$as_me: WARNING: libnotify not found, wxNotificationMessage will use g elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libnotify not found, wxNotificationMessage will use generic implementation." >&5 $as_echo "$as_me: WARNING: libnotify not found, wxNotificationMessage will use generic implementation." >&2;} @@ -36731,17 +36913,17 @@ $as_echo "$as_me: WARNING: libnotify not found, wxNotificationMessage will use g else - LIBNOTIFY_CFLAGS=$pkg_cv_LIBNOTIFY_CFLAGS - LIBNOTIFY_LIBS=$pkg_cv_LIBNOTIFY_LIBS + LIBNOTIFY_CFLAGS=$pkg_cv_LIBNOTIFY_CFLAGS + LIBNOTIFY_LIBS=$pkg_cv_LIBNOTIFY_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - HAVE_LIBNOTIFY=1 + HAVE_LIBNOTIFY=1 fi else - LIBNOTIFY_CFLAGS=$pkg_cv_LIBNOTIFY_CFLAGS - LIBNOTIFY_LIBS=$pkg_cv_LIBNOTIFY_LIBS + LIBNOTIFY_CFLAGS=$pkg_cv_LIBNOTIFY_CFLAGS + LIBNOTIFY_LIBS=$pkg_cv_LIBNOTIFY_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -37084,11 +37266,6 @@ if test "$wxUSE_LOG" = "yes"; then SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS keyboard" fi -if test "$wxUSE_LONGLONG" = "yes"; then - $as_echo "#define wxUSE_LONGLONG 1" >>confdefs.h - -fi - if test "$wxUSE_GEOMETRY" = "yes"; then $as_echo "#define wxUSE_GEOMETRY 1" >>confdefs.h @@ -38180,49 +38357,49 @@ if test "$wxUSE_UIACTIONSIMULATOR" = "yes" ; then if test "$wxUSE_XTEST" = "yes" ; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XTST" >&5 -$as_echo_n "checking for XTST... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for xtst" >&5 +$as_echo_n "checking for xtst... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$XTST_CFLAGS"; then - pkg_cv_XTST_CFLAGS="$XTST_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$XTST_CFLAGS"; then + pkg_cv_XTST_CFLAGS="$XTST_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xtst\""; } >&5 ($PKG_CONFIG --exists --print-errors "xtst") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_XTST_CFLAGS=`$PKG_CONFIG --cflags "xtst" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$XTST_LIBS"; then - pkg_cv_XTST_LIBS="$XTST_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$XTST_LIBS"; then + pkg_cv_XTST_LIBS="$XTST_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xtst\""; } >&5 ($PKG_CONFIG --exists --print-errors "xtst") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_XTST_LIBS=`$PKG_CONFIG --libs "xtst" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -38230,12 +38407,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - XTST_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "xtst"` + XTST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "xtst" 2>&1` else - XTST_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "xtst"` + XTST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "xtst" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$XTST_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$XTST_PKG_ERRORS" >&5 if test "$WXGTK3" = 1; then @@ -38247,6 +38424,8 @@ $as_echo "$as_me: WARNING: XTest not found, disabling wxUIActionSimulator" >&2;} elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if test "$WXGTK3" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: XTest not found, disabling wxUIActionSimulator" >&5 @@ -38257,8 +38436,8 @@ $as_echo "$as_me: WARNING: XTest not found, disabling wxUIActionSimulator" >&2;} else - XTST_CFLAGS=$pkg_cv_XTST_CFLAGS - XTST_LIBS=$pkg_cv_XTST_LIBS + XTST_CFLAGS=$pkg_cv_XTST_CFLAGS + XTST_LIBS=$pkg_cv_XTST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -38763,49 +38942,49 @@ if test "$wxUSE_PRIVATE_FONTS" = "yes"; then if test "$wxUSE_PRIVATE_FONTS" = "yes"; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for PRIVATE_FONTS" >&5 -$as_echo_n "checking for PRIVATE_FONTS... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fontconfig >= 2.8.0 pangoft2 >= 1.38.0" >&5 +$as_echo_n "checking for fontconfig >= 2.8.0 pangoft2 >= 1.38.0... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$PRIVATE_FONTS_CFLAGS"; then - pkg_cv_PRIVATE_FONTS_CFLAGS="$PRIVATE_FONTS_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$PRIVATE_FONTS_CFLAGS"; then + pkg_cv_PRIVATE_FONTS_CFLAGS="$PRIVATE_FONTS_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"fontconfig >= 2.8.0 pangoft2 >= 1.38.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "fontconfig >= 2.8.0 pangoft2 >= 1.38.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_PRIVATE_FONTS_CFLAGS=`$PKG_CONFIG --cflags "fontconfig >= 2.8.0 pangoft2 >= 1.38.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$PRIVATE_FONTS_LIBS"; then - pkg_cv_PRIVATE_FONTS_LIBS="$PRIVATE_FONTS_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$PRIVATE_FONTS_LIBS"; then + pkg_cv_PRIVATE_FONTS_LIBS="$PRIVATE_FONTS_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"fontconfig >= 2.8.0 pangoft2 >= 1.38.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "fontconfig >= 2.8.0 pangoft2 >= 1.38.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_PRIVATE_FONTS_LIBS=`$PKG_CONFIG --libs "fontconfig >= 2.8.0 pangoft2 >= 1.38.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -38813,21 +38992,23 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - PRIVATE_FONTS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "fontconfig >= 2.8.0 pangoft2 >= 1.38.0"` + PRIVATE_FONTS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "fontconfig >= 2.8.0 pangoft2 >= 1.38.0" 2>&1` else - PRIVATE_FONTS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "fontconfig >= 2.8.0 pangoft2 >= 1.38.0"` + PRIVATE_FONTS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "fontconfig >= 2.8.0 pangoft2 >= 1.38.0" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$PRIVATE_FONTS_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$PRIVATE_FONTS_PKG_ERRORS" >&5 - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: run-time font loading won't be supported by wxFont" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: run-time font loading won't be supported by wxFont" >&5 $as_echo "$as_me: WARNING: run-time font loading won't be supported by wxFont" >&2;} elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: run-time font loading won't be supported by wxFont" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: run-time font loading won't be supported by wxFont" >&5 $as_echo "$as_me: WARNING: run-time font loading won't be supported by wxFont" >&2;} else - PRIVATE_FONTS_CFLAGS=$pkg_cv_PRIVATE_FONTS_CFLAGS - PRIVATE_FONTS_LIBS=$pkg_cv_PRIVATE_FONTS_LIBS + PRIVATE_FONTS_CFLAGS=$pkg_cv_PRIVATE_FONTS_CFLAGS + PRIVATE_FONTS_LIBS=$pkg_cv_PRIVATE_FONTS_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -39097,49 +39278,49 @@ if test "$wxUSE_WEBVIEW" = "yes"; then if test "$WXGTK3" = 1; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for WEBKIT" >&5 -$as_echo_n "checking for WEBKIT... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for webkit2gtk-4.1" >&5 +$as_echo_n "checking for webkit2gtk-4.1... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$WEBKIT_CFLAGS"; then - pkg_cv_WEBKIT_CFLAGS="$WEBKIT_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$WEBKIT_CFLAGS"; then + pkg_cv_WEBKIT_CFLAGS="$WEBKIT_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"webkit2gtk-4.1\""; } >&5 ($PKG_CONFIG --exists --print-errors "webkit2gtk-4.1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_WEBKIT_CFLAGS=`$PKG_CONFIG --cflags "webkit2gtk-4.1" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$WEBKIT_LIBS"; then - pkg_cv_WEBKIT_LIBS="$WEBKIT_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$WEBKIT_LIBS"; then + pkg_cv_WEBKIT_LIBS="$WEBKIT_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"webkit2gtk-4.1\""; } >&5 ($PKG_CONFIG --exists --print-errors "webkit2gtk-4.1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_WEBKIT_LIBS=`$PKG_CONFIG --libs "webkit2gtk-4.1" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -39147,25 +39328,27 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - WEBKIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "webkit2gtk-4.1"` + WEBKIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "webkit2gtk-4.1" 2>&1` else - WEBKIT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "webkit2gtk-4.1"` + WEBKIT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "webkit2gtk-4.1" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$WEBKIT_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$WEBKIT_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: webkit2gtk-4.1 not found, falling back to webkit2gtk-4.0" >&5 $as_echo "$as_me: WARNING: webkit2gtk-4.1 not found, falling back to webkit2gtk-4.0" >&2;} elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: webkit2gtk-4.1 not found, falling back to webkit2gtk-4.0" >&5 $as_echo "$as_me: WARNING: webkit2gtk-4.1 not found, falling back to webkit2gtk-4.0" >&2;} else - WEBKIT_CFLAGS=$pkg_cv_WEBKIT_CFLAGS - WEBKIT_LIBS=$pkg_cv_WEBKIT_LIBS + WEBKIT_CFLAGS=$pkg_cv_WEBKIT_CFLAGS + WEBKIT_LIBS=$pkg_cv_WEBKIT_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -39177,49 +39360,49 @@ fi if test "$USE_WEBVIEW_WEBKIT2" = 0; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for WEBKIT" >&5 -$as_echo_n "checking for WEBKIT... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for webkit2gtk-4.0" >&5 +$as_echo_n "checking for webkit2gtk-4.0... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$WEBKIT_CFLAGS"; then - pkg_cv_WEBKIT_CFLAGS="$WEBKIT_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$WEBKIT_CFLAGS"; then + pkg_cv_WEBKIT_CFLAGS="$WEBKIT_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"webkit2gtk-4.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "webkit2gtk-4.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_WEBKIT_CFLAGS=`$PKG_CONFIG --cflags "webkit2gtk-4.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$WEBKIT_LIBS"; then - pkg_cv_WEBKIT_LIBS="$WEBKIT_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$WEBKIT_LIBS"; then + pkg_cv_WEBKIT_LIBS="$WEBKIT_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"webkit2gtk-4.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "webkit2gtk-4.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_WEBKIT_LIBS=`$PKG_CONFIG --libs "webkit2gtk-4.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -39227,25 +39410,27 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - WEBKIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "webkit2gtk-4.0"` + WEBKIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "webkit2gtk-4.0" 2>&1` else - WEBKIT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "webkit2gtk-4.0"` + WEBKIT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "webkit2gtk-4.0" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$WEBKIT_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$WEBKIT_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: webkit2gtk-4.0 not found, falling back to webkitgtk" >&5 $as_echo "$as_me: WARNING: webkit2gtk-4.0 not found, falling back to webkitgtk" >&2;} elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: webkit2gtk-4.0 not found, falling back to webkitgtk" >&5 $as_echo "$as_me: WARNING: webkit2gtk-4.0 not found, falling back to webkitgtk" >&2;} else - WEBKIT_CFLAGS=$pkg_cv_WEBKIT_CFLAGS - WEBKIT_LIBS=$pkg_cv_WEBKIT_LIBS + WEBKIT_CFLAGS=$pkg_cv_WEBKIT_CFLAGS + WEBKIT_LIBS=$pkg_cv_WEBKIT_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -39263,49 +39448,49 @@ fi fi pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for WEBKIT" >&5 -$as_echo_n "checking for WEBKIT... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $webkitgtk >= 1.3.1" >&5 +$as_echo_n "checking for $webkitgtk >= 1.3.1... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$WEBKIT_CFLAGS"; then - pkg_cv_WEBKIT_CFLAGS="$WEBKIT_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$WEBKIT_CFLAGS"; then + pkg_cv_WEBKIT_CFLAGS="$WEBKIT_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$webkitgtk >= 1.3.1\""; } >&5 ($PKG_CONFIG --exists --print-errors "$webkitgtk >= 1.3.1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_WEBKIT_CFLAGS=`$PKG_CONFIG --cflags "$webkitgtk >= 1.3.1" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$WEBKIT_LIBS"; then - pkg_cv_WEBKIT_LIBS="$WEBKIT_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$WEBKIT_LIBS"; then + pkg_cv_WEBKIT_LIBS="$WEBKIT_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$webkitgtk >= 1.3.1\""; } >&5 ($PKG_CONFIG --exists --print-errors "$webkitgtk >= 1.3.1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_WEBKIT_LIBS=`$PKG_CONFIG --libs "$webkitgtk >= 1.3.1" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -39313,25 +39498,27 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - WEBKIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$webkitgtk >= 1.3.1"` + WEBKIT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$webkitgtk >= 1.3.1" 2>&1` else - WEBKIT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$webkitgtk >= 1.3.1"` + WEBKIT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$webkitgtk >= 1.3.1" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$WEBKIT_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$WEBKIT_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: webkitgtk not found." >&5 $as_echo "$as_me: WARNING: webkitgtk not found." >&2;} elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: webkitgtk not found." >&5 $as_echo "$as_me: WARNING: webkitgtk not found." >&2;} else - WEBKIT_CFLAGS=$pkg_cv_WEBKIT_CFLAGS - WEBKIT_LIBS=$pkg_cv_WEBKIT_LIBS + WEBKIT_CFLAGS=$pkg_cv_WEBKIT_CFLAGS + WEBKIT_LIBS=$pkg_cv_WEBKIT_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -39759,49 +39946,49 @@ fi if test "$wxUSE_CAIRO" = "yes" -o "$wx_needs_cairo" = 1; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for CAIRO" >&5 -$as_echo_n "checking for CAIRO... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for cairo >= 1.2" >&5 +$as_echo_n "checking for cairo >= 1.2... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$CAIRO_CFLAGS"; then - pkg_cv_CAIRO_CFLAGS="$CAIRO_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$CAIRO_CFLAGS"; then + pkg_cv_CAIRO_CFLAGS="$CAIRO_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cairo >= 1.2\""; } >&5 ($PKG_CONFIG --exists --print-errors "cairo >= 1.2") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CAIRO_CFLAGS=`$PKG_CONFIG --cflags "cairo >= 1.2" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$CAIRO_LIBS"; then - pkg_cv_CAIRO_LIBS="$CAIRO_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$CAIRO_LIBS"; then + pkg_cv_CAIRO_LIBS="$CAIRO_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cairo >= 1.2\""; } >&5 ($PKG_CONFIG --exists --print-errors "cairo >= 1.2") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CAIRO_LIBS=`$PKG_CONFIG --libs "cairo >= 1.2" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -39809,23 +39996,25 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - CAIRO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "cairo >= 1.2"` + CAIRO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "cairo >= 1.2" 2>&1` else - CAIRO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "cairo >= 1.2"` + CAIRO_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "cairo >= 1.2" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$CAIRO_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$CAIRO_PKG_ERRORS" >&5 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else - CAIRO_CFLAGS=$pkg_cv_CAIRO_CFLAGS - CAIRO_LIBS=$pkg_cv_CAIRO_LIBS + CAIRO_CFLAGS=$pkg_cv_CAIRO_CFLAGS + CAIRO_LIBS=$pkg_cv_CAIRO_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -39974,49 +40163,49 @@ if test "$wxUSE_MEDIACTRL" = "yes" -o "$wxUSE_MEDIACTRL" = "auto"; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GST" >&5 -$as_echo_n "checking for GST... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION gstreamer-player-$GST_VERSION >= 1.7.2.1" >&5 +$as_echo_n "checking for gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION gstreamer-player-$GST_VERSION >= 1.7.2.1... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GST_CFLAGS"; then - pkg_cv_GST_CFLAGS="$GST_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GST_CFLAGS"; then + pkg_cv_GST_CFLAGS="$GST_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-\$GST_VERSION gstreamer-video-\$GST_VERSION gstreamer-player-\$GST_VERSION >= 1.7.2.1\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION gstreamer-player-$GST_VERSION >= 1.7.2.1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GST_CFLAGS=`$PKG_CONFIG --cflags "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION gstreamer-player-$GST_VERSION >= 1.7.2.1" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GST_LIBS"; then - pkg_cv_GST_LIBS="$GST_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GST_LIBS"; then + pkg_cv_GST_LIBS="$GST_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-\$GST_VERSION gstreamer-video-\$GST_VERSION gstreamer-player-\$GST_VERSION >= 1.7.2.1\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION gstreamer-player-$GST_VERSION >= 1.7.2.1") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GST_LIBS=`$PKG_CONFIG --libs "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION gstreamer-player-$GST_VERSION >= 1.7.2.1" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -40024,12 +40213,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GST_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION gstreamer-player-$GST_VERSION >= 1.7.2.1"` + GST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION gstreamer-player-$GST_VERSION >= 1.7.2.1" 2>&1` else - GST_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION gstreamer-player-$GST_VERSION >= 1.7.2.1"` + GST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION gstreamer-player-$GST_VERSION >= 1.7.2.1" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$GST_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$GST_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: GStreamer 1.7.2+ not available. Not using GstPlayer and falling back to 1.0" >&5 @@ -40037,14 +40226,16 @@ $as_echo "$as_me: GStreamer 1.7.2+ not available. Not using GstPlayer and fallin elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: GStreamer 1.7.2+ not available. Not using GstPlayer and falling back to 1.0" >&5 $as_echo "$as_me: GStreamer 1.7.2+ not available. Not using GstPlayer and falling back to 1.0" >&6;} else - GST_CFLAGS=$pkg_cv_GST_CFLAGS - GST_LIBS=$pkg_cv_GST_LIBS + GST_CFLAGS=$pkg_cv_GST_CFLAGS + GST_LIBS=$pkg_cv_GST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -40057,49 +40248,49 @@ fi if test $wxUSE_GSTREAMER = "no"; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GST" >&5 -$as_echo_n "checking for GST... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION" >&5 +$as_echo_n "checking for gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GST_CFLAGS"; then - pkg_cv_GST_CFLAGS="$GST_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GST_CFLAGS"; then + pkg_cv_GST_CFLAGS="$GST_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-\$GST_VERSION gstreamer-video-\$GST_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GST_CFLAGS=`$PKG_CONFIG --cflags "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GST_LIBS"; then - pkg_cv_GST_LIBS="$GST_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GST_LIBS"; then + pkg_cv_GST_LIBS="$GST_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-\$GST_VERSION gstreamer-video-\$GST_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GST_LIBS=`$PKG_CONFIG --libs "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -40107,12 +40298,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GST_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION"` + GST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION" 2>&1` else - GST_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION"` + GST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gstreamer-$GST_VERSION gstreamer-video-$GST_VERSION" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$GST_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$GST_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: GStreamer 1.0 not available, falling back to 0.10" >&5 @@ -40123,6 +40314,8 @@ $as_echo "$as_me: WARNING: GStreamer 1.0 not available, falling back to 0.10" >& elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: GStreamer 1.0 not available, falling back to 0.10" >&5 $as_echo "$as_me: WARNING: GStreamer 1.0 not available, falling back to 0.10" >&2;} @@ -40132,8 +40325,8 @@ $as_echo "$as_me: WARNING: GStreamer 1.0 not available, falling back to 0.10" >& else - GST_CFLAGS=$pkg_cv_GST_CFLAGS - GST_LIBS=$pkg_cv_GST_LIBS + GST_CFLAGS=$pkg_cv_GST_CFLAGS + GST_LIBS=$pkg_cv_GST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -40145,49 +40338,49 @@ fi if test $GST_VERSION_MINOR = "10"; then pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GST" >&5 -$as_echo_n "checking for GST... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION" >&5 +$as_echo_n "checking for gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION... " >&6; } -if test -n "$PKG_CONFIG"; then - if test -n "$GST_CFLAGS"; then - pkg_cv_GST_CFLAGS="$GST_CFLAGS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GST_CFLAGS"; then + pkg_cv_GST_CFLAGS="$GST_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-\$GST_VERSION gstreamer-plugins-base-\$GST_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GST_CFLAGS=`$PKG_CONFIG --cflags "gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi -if test -n "$PKG_CONFIG"; then - if test -n "$GST_LIBS"; then - pkg_cv_GST_LIBS="$GST_LIBS" - else - if test -n "$PKG_CONFIG" && \ +if test -n "$GST_LIBS"; then + pkg_cv_GST_LIBS="$GST_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-\$GST_VERSION gstreamer-plugins-base-\$GST_VERSION\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GST_LIBS=`$PKG_CONFIG --libs "gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi - fi -else - pkg_failed=untried + else + pkg_failed=untried fi if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes @@ -40195,12 +40388,12 @@ else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GST_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION"` + GST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION" 2>&1` else - GST_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION"` + GST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION" 2>&1` fi - # Put the nasty error message in config.log where it belongs - echo "$GST_PKG_ERRORS" >&5 + # Put the nasty error message in config.log where it belongs + echo "$GST_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: GStreamer 0.10 not available" >&5 @@ -40208,14 +40401,16 @@ $as_echo "$as_me: WARNING: GStreamer 0.10 not available" >&2;} elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: GStreamer 0.10 not available" >&5 $as_echo "$as_me: WARNING: GStreamer 0.10 not available" >&2;} else - GST_CFLAGS=$pkg_cv_GST_CFLAGS - GST_LIBS=$pkg_cv_GST_LIBS + GST_CFLAGS=$pkg_cv_GST_CFLAGS + GST_LIBS=$pkg_cv_GST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } @@ -43359,6 +43554,7 @@ LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs + ax_dir="3rdparty/pcre" # Convert the path to the subdirectory into a shell variable name. diff --git a/configure.ac b/configure.ac index 73707d666819..cc428bfe35ac 100644 --- a/configure.ac +++ b/configure.ac @@ -722,7 +722,6 @@ WX_ARG_FEATURE(fsvolume, [ --enable-fsvolume use wxFSVolume class], WX_ARG_FEATURE(fswatcher, [ --enable-fswatcher use wxFileSystemWatcher class], wxUSE_FSWATCHER) WX_ARG_FEATURE(geometry, [ --enable-geometry use geometry class], wxUSE_GEOMETRY) WX_ARG_FEATURE(log, [ --enable-log use logging system], wxUSE_LOG) -WX_ARG_FEATURE(longlong, [ --enable-longlong use wxLongLong class], wxUSE_LONGLONG) WX_ARG_FEATURE(mimetype, [ --enable-mimetype use wxMimeTypesManager], wxUSE_MIMETYPE) WX_ARG_FEATURE(printfposparam,[ --enable-printfposparam use wxVsnprintf() which supports positional parameters], wxUSE_PRINTF_POS_PARAMS) WX_ARG_FEATURE(secretstore, [ --enable-secretstore use wxSecretStore class], wxUSE_SECRETSTORE) @@ -1759,8 +1758,7 @@ if test "$ac_cv_sys_largefile_source" != no; then WXCONFIG_CPPFLAGS="$WXCONFIG_CPPFLAGS -D_LARGEFILE_SOURCE=$ac_cv_sys_largefile_source" fi -dnl check for bytesex stuff (don't use AC_C_BIGENDIAN to allow cross-compiling) -WX_C_BIGENDIAN +AC_C_BIGENDIAN dnl With Sun CC, temporaries have block scope by default. This flag is needed dnl to get the expression scope behaviour that conforms to the standard. @@ -5474,10 +5472,6 @@ if test "$wxUSE_LOG" = "yes"; then SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS keyboard" fi -if test "$wxUSE_LONGLONG" = "yes"; then - AC_DEFINE(wxUSE_LONGLONG) -fi - if test "$wxUSE_GEOMETRY" = "yes"; then AC_DEFINE(wxUSE_GEOMETRY) fi diff --git a/docs/changes.txt b/docs/changes.txt index 47683dd9b073..cf98b6a78f24 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -108,6 +108,11 @@ Changes in behaviour not resulting in compilation errors platforms with RTF support. If you need to save/load plain text even for the files with the .rtf extension, specify wxTEXT_TYPE_PLAIN explicitly. +- wxClientDC and wxPaintDC now correctly offset their origin by wxFrame + toolbar, if any. This is consistent with the behaviour of the other ports + but may require removing any compensation for not doing this before that may + be present in the application code. + Changes in behaviour which may result in build errors ----------------------------------------------------- @@ -186,6 +191,11 @@ Changes in behaviour which may result in build errors override these functions must be updated to use the new argument type too. Simply replacing wxDC with wxReadOnlyDC should be sufficient. +- wxSizer::Detach() takes wxWindowBase pointer now instead of wxWindow. + This only matters if you override this virtual function in your own classes + deriving from wxSizer, please change the function in the derived class to + take wxWindowBase pointer too in this case. + 3.3.0: (released 2022-??-??) ---------------------------- diff --git a/docs/doxygen/mainpages/cat_classes.h b/docs/doxygen/mainpages/cat_classes.h index ffcbf1acf67d..e31094743407 100644 --- a/docs/doxygen/mainpages/cat_classes.h +++ b/docs/doxygen/mainpages/cat_classes.h @@ -292,11 +292,13 @@ Related Overviews: @ref overview_dc @li wxBufferedPaintDC: A helper device context for double buffered drawing inside @b OnPaint(). @li wxClientDC: A device context to access the client area outside - @b OnPaint() events + @b OnPaint() events (doesn't work on many modern systems, deprecated). @li wxPaintDC: A device context to access the client area inside @b OnPaint() events -@li wxWindowDC: A device context to access the non-client area -@li wxScreenDC: A device context to access the entire screen +@li wxWindowDC: A device context to access the non-client area (Windows-only, + deprecated). +@li wxScreenDC: A device context to access the entire screen (doesn't work on + many modern systems, deprecated). @li wxDC: The device context base class @li wxMemoryDC: A device context for drawing into bitmaps @li wxMetafileDC: A device context for drawing into metafiles diff --git a/docs/doxygen/mainpages/const_cpp.h b/docs/doxygen/mainpages/const_cpp.h index 10a398fc9fe8..3c8ecd019cf3 100644 --- a/docs/doxygen/mainpages/const_cpp.h +++ b/docs/doxygen/mainpages/const_cpp.h @@ -194,13 +194,9 @@ Currently the following symbols exist: @itemdef{wxHAS_LARGE_FFILES, Defined if wxFFile supports files more than 4GB in size (notice that you must include @c wx/filefn.h before testing for this symbol).} -@itemdef{wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG, Defined if compiler supports a - 64 bit integer type (available as @c wxLongLong_t) and this type is - different from long. Notice that, provided wxUSE_LONGLONG is not turned - off, some 64 bit type is always available to wxWidgets programs and this - symbol only indicates a presence of such primitive type. It is useful to - decide whether some function should be overloaded for both - long and long long types.} +@itemdef{wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG, Defined if the long + long and long types are different. This can be useful + to decide whether some function should be overloaded for both types or not.} @itemdef{wxHAS_MULTIPLE_FILEDLG_FILTERS, Defined if wxFileDialog supports multiple ('|'-separated) filters.} @itemdef{wxHAS_NATIVE_ANIMATIONCTRL, Defined if native wxAnimationCtrl class is being used (this symbol only exists in wxWidgets 3.1.4 and later).} @itemdef{wxHAS_NATIVE_DATAVIEWCTRL, Defined if native wxDataViewCtrl class is being used (this symbol only exists in wxWidgets 3.1.4 and later).} diff --git a/docs/doxygen/mainpages/const_wxusedef.h b/docs/doxygen/mainpages/const_wxusedef.h index d42c74dea419..4f31c6c648cd 100644 --- a/docs/doxygen/mainpages/const_wxusedef.h +++ b/docs/doxygen/mainpages/const_wxusedef.h @@ -154,9 +154,6 @@ This table summarizes some of the global build features affecting the entire @itemdef{wxUSE_LOG_DIALOG, Use wxLogDialog class.} @itemdef{wxUSE_LOGGUI, Use wxLogGui class.} @itemdef{wxUSE_LOGWINDOW, Use wxLogFrame class.} -@itemdef{wxUSE_LONGLONG, Use wxLongLong class.} -@itemdef{wxUSE_LONGLONG_NATIVE, Use native long long type in wxLongLong implementation.} -@itemdef{wxUSE_LONGLONG_WX, Use generic wxLongLong implementation.} @itemdef{wxUSE_MARKUP, Provide wxControl::SetLabelMarkup() method.} @itemdef{wxUSE_MDI, Use wxMDIParentFrame, and wxMDIChildFrame} @itemdef{wxUSE_MDI_ARCHITECTURE, Use MDI-based document-view classes.} diff --git a/docs/doxygen/overviews/html.h b/docs/doxygen/overviews/html.h index 8fc387e61ad9..78a8af23b50f 100644 --- a/docs/doxygen/overviews/html.h +++ b/docs/doxygen/overviews/html.h @@ -578,6 +578,7 @@ you can use @c "text-align", @c "width", @c "vertical-align" and @c "background" with all elements and for @c SPAN elements a few other styles are additionally recognized: +- @c background-color - @c color - @c font-family - @c font-size (only in point units) diff --git a/docs/doxygen/overviews/xrc_format.h b/docs/doxygen/overviews/xrc_format.h index 7d377bd218f0..8dded1d243c7 100644 --- a/docs/doxygen/overviews/xrc_format.h +++ b/docs/doxygen/overviews/xrc_format.h @@ -405,6 +405,10 @@ When using SVG file you must also specify @c default_size attribute @code new.svg @endcode +Note that, unlike most of the other sizes in XRC, this size is expressed in +DPI-independent pixels and is not scaled by DPI scaling factor. Because of +this, it can't be specified in dialog units, which are, by definition, +DPI-dependent, but only in pixels as shown above. Alternatively, it is possible to specify the bitmap using wxArtProvider IDs. In this case, the property element has no textual value (filename) and instead diff --git a/docs/qt/install.md b/docs/qt/install.md index 3901361d812c..c7780cbe608f 100644 --- a/docs/qt/install.md +++ b/docs/qt/install.md @@ -115,7 +115,23 @@ for Windows (ran from Git Bash, or any other Unix-like shell): ../configure --with-qt --enable-debug QT5_CUSTOM_DIR=c:/Qt/5.11.0/mingw53_32 -Building wxGT on Android {#qt_android} + +Building wxQT using MSVC on Windows {#qt_build_windows_msvc} +----------------------------------- + +To build wxQt using MSVC you need to use CMake, please see +[CMake build instructions](@ref overview_cmake) for all the details, but in +short you just need to pass `-DwxBUILD_TOOLKIT=qt` to it when configuring. +CMake uses `Qt5_Dir` variable to find Qt installation, so you need to set it +to something like `c:\Qt\5.14.2\5.14.2\msvc2017_64` before running + + cmake -S . -B build/qt -DwxBUILD_TOOLKIT=qt -DwxBUILD_SAMPLES=SOME + +(the last option is not required but recommended to allow you to build the +minimal sample to test your build). + + +Building wxQT on Android {#qt_android} -------------------------- Download Android Native Development Kit (NDK), standalone Android Software diff --git a/docs/qt/readme.txt b/docs/qt/readme.txt index e63c52f5097e..132150858089 100644 --- a/docs/qt/readme.txt +++ b/docs/qt/readme.txt @@ -12,14 +12,15 @@ main wxWidgets homepage at: https://www.wxwidgets.org/ -Information on how to install can be found in the file -INSTALL.txt, but if you cannot wait, this should work on -many systems: +More information on how to install can be found in the file +install.md in this directory, but this works in a Unix-like +environment, including Cygwin/MSYS2 under Windows: mkdir build_qt cd build_qt ../configure --with-qt make + # Optionally su make install ldconfig @@ -30,12 +31,12 @@ different builds of it (for example with and without debug) in parallel. If you build in the source directory, don't forget to do "make clean" before changing the configuration! -When you run into problems, please read the INSTALL.txt and +When you run into problems, please read the install.md and follow those instructions. If you still don't have any success, please send a bug report to one of our mailing list, INCLUDING A DESCRIPTION OF YOUR SYSTEM AND YOUR PROBLEM, SUCH AS YOUR -VERSION OF GTK, WXGTK, WHAT DISTRIBUTION YOU USE AND WHAT ERROR -WAS REPORTED. I know this has no effect, but I tried... +VERSION OF QT, WXQT, WHAT DISTRIBUTION YOU USE AND WHAT ERROR +WAS REPORTED. Please send problems concerning installation, feature requests, bug reports or comments to the wxWidgets users list. These can diff --git a/include/wx/android/setup.h b/include/wx/android/setup.h index a0c5b26b8716..1137481604ea 100644 --- a/include/wx/android/setup.h +++ b/include/wx/android/setup.h @@ -322,19 +322,6 @@ // non GUI features selection // ---------------------------------------------------------------------------- -// Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit -// integer which is implemented in terms of native 64 bit integers if any or -// uses emulation otherwise. -// -// This class is required by wxDateTime and so you should enable it if you want -// to use wxDateTime. For most modern platforms, it will use the native 64 bit -// integers in which case (almost) all of its functions are inline and it -// almost does not take any space, so there should be no reason to switch it -// off. -// -// Recommended setting: 1 -#define wxUSE_LONGLONG 1 - // Set wxUSE_BASE64 to 1, to compile in Base64 support. This is required for // storing binary data in wxConfig on most platforms. // @@ -421,8 +408,6 @@ // Set wxUSE_DATETIME to 1 to compile the wxDateTime and related classes which // allow to manipulate dates, times and time intervals. // -// Requires: wxUSE_LONGLONG -// // Default is 1 // // Recommended setting: 1 diff --git a/include/wx/any.h b/include/wx/any.h index 192c4a82af66..44c3330461cb 100644 --- a/include/wx/any.h +++ b/include/wx/any.h @@ -30,9 +30,7 @@ union wxAnyValueBuffer { union Alignment { - #if wxHAS_INT64 wxInt64 m_int64; - #endif long double m_longDouble; void ( *m_funcPtr )(void); void ( wxAnyValueBuffer::*m_mFuncPtr )(void); @@ -410,14 +408,8 @@ _WX_ANY_DEFINE_SUB_TYPE(T, CLSTYPE)\ // Integer value types // -#ifdef wxLongLong_t - typedef wxLongLong_t wxAnyBaseIntType; - typedef wxULongLong_t wxAnyBaseUintType; -#else - typedef long wxAnyBaseIntType; - typedef unsigned long wxAnyBaseUintType; -#endif - +typedef wxLongLong_t wxAnyBaseIntType; +typedef wxULongLong_t wxAnyBaseUintType; class WXDLLIMPEXP_BASE wxAnyValueTypeImplInt : public wxAnyValueTypeImplBase @@ -453,17 +445,13 @@ WX_ANY_DEFINE_SUB_TYPE(signed long, Int) WX_ANY_DEFINE_SUB_TYPE(signed int, Int) WX_ANY_DEFINE_SUB_TYPE(signed short, Int) WX_ANY_DEFINE_SUB_TYPE(signed char, Int) -#ifdef wxLongLong_t WX_ANY_DEFINE_SUB_TYPE(wxLongLong_t, Int) -#endif WX_ANY_DEFINE_SUB_TYPE(unsigned long, Uint) WX_ANY_DEFINE_SUB_TYPE(unsigned int, Uint) WX_ANY_DEFINE_SUB_TYPE(unsigned short, Uint) WX_ANY_DEFINE_SUB_TYPE(unsigned char, Uint) -#ifdef wxLongLong_t WX_ANY_DEFINE_SUB_TYPE(wxULongLong_t, Uint) -#endif // @@ -916,9 +904,7 @@ class wxAny WXANY_IMPLEMENT_INT_EQ_OP(signed short, unsigned short) WXANY_IMPLEMENT_INT_EQ_OP(signed int, unsigned int) WXANY_IMPLEMENT_INT_EQ_OP(signed long, unsigned long) -#ifdef wxLongLong_t WXANY_IMPLEMENT_INT_EQ_OP(wxLongLong_t, wxULongLong_t) -#endif wxGCC_WARNING_SUPPRESS(float-equal) diff --git a/include/wx/archive.h b/include/wx/archive.h index aa454efc52cf..ff1d1402a2c5 100644 --- a/include/wx/archive.h +++ b/include/wx/archive.h @@ -217,9 +217,9 @@ class wxArchiveIterator wxArchiveIterator& operator =(const wxArchiveIterator& it) { if (it.m_rep) - it.m_rep.AddRef(); + it.m_rep->AddRef(); if (m_rep) - this->m_rep.UnRef(); + m_rep->UnRef(); m_rep = it.m_rep; return *this; } diff --git a/include/wx/arrstr.h b/include/wx/arrstr.h index b3dea15437d9..8a3223211df9 100644 --- a/include/wx/arrstr.h +++ b/include/wx/arrstr.h @@ -65,7 +65,7 @@ inline int wxCMPFUNC_CONV wxNaturalStringSortDescending(const wxString& s1, cons typedef int (wxCMPFUNC_CONV *CMPFUNCwxString)(wxString*, wxString*); -class WXDLLIMPEXP_BASE wxArrayString : public wxBaseArray +class WXDLLIMPEXP_BASE wxWARN_UNUSED wxArrayString : public wxBaseArray { public: // type of function used by wxArrayString::Sort() @@ -155,7 +155,7 @@ class WXDLLIMPEXP_BASE wxSortedArrayString : public wxSortedArrayStringBase #include #include "wx/afterstd.h" -class WXDLLIMPEXP_BASE wxArrayString +class WXDLLIMPEXP_BASE wxWARN_UNUSED wxArrayString { public: // type of function used by wxArrayString::Sort() diff --git a/include/wx/aui/auibook.h b/include/wx/aui/auibook.h index a8e34736fb0b..3b79c231ab22 100644 --- a/include/wx/aui/auibook.h +++ b/include/wx/aui/auibook.h @@ -87,13 +87,13 @@ class WXDLLIMPEXP_AUI wxAuiNotebookEvent : public wxBookCtrlEvent class WXDLLIMPEXP_AUI wxAuiNotebookPage { public: - wxWindow* window; // page's associated window + wxWindow* window = nullptr; // page's associated window wxString caption; // caption displayed on the tab wxString tooltip; // tooltip displayed when hovering over tab title wxBitmapBundle bitmap;// tab's bitmap wxRect rect; // tab's hit rectangle - bool active; // true if the page is currently active - bool hover; // true if mouse hovering over tab + bool active = false; // true if the page is currently active + bool hover = false; // true if mouse hovering over tab }; class WXDLLIMPEXP_AUI wxAuiTabContainerButton @@ -334,6 +334,8 @@ class WXDLLIMPEXP_AUI wxAuiNotebook : public wxCompositeBookCtrlBase const wxAuiManager& GetAuiManager() const { return m_mgr; } + void SetManagerFlags(unsigned int flags) { m_mgr.SetFlags(flags); } + // Sets the normal font void SetNormalFont(const wxFont& font); diff --git a/include/wx/aui/framemanager.h b/include/wx/aui/framemanager.h index fdb412eabad6..c57a91068755 100644 --- a/include/wx/aui/framemanager.h +++ b/include/wx/aui/framemanager.h @@ -128,6 +128,8 @@ class wxAuiPaneInfo; class wxAuiDockInfo; class wxAuiDockArt; class wxAuiManagerEvent; +class wxAuiSerializer; +class wxAuiDeserializer; using wxAuiDockUIPartArray = wxBaseArray; using wxAuiDockInfoArray = wxBaseArray; @@ -452,6 +454,12 @@ class WXDLLIMPEXP_AUI wxAuiManager : public wxEvtHandler void Update(); + // Serialize or restore the whole layout using the provided serializer. + void SaveLayout(wxAuiSerializer& serializer) const; + void LoadLayout(wxAuiDeserializer& deserializer); + + // Older functions using bespoke text format, prefer using the ones using + // wxAuiSerializer and wxAuiDeserializer above instead in the new code. wxString SavePaneInfo(const wxAuiPaneInfo& pane); void LoadPaneInfo(wxString panePart, wxAuiPaneInfo &pane); wxString SavePerspective(); @@ -477,13 +485,17 @@ class WXDLLIMPEXP_AUI wxAuiManager : public wxEvtHandler wxRect CalculateHintRect( wxWindow* paneWindow, const wxPoint& pt, - const wxPoint& offset); + const wxPoint& offset = wxPoint{}); void DrawHintRect( wxWindow* paneWindow, const wxPoint& pt, - const wxPoint& offset); + const wxPoint& offset = wxPoint{}); + void UpdateHint(const wxRect& rect); + + // These functions are public for compatibility reasons, but should never + // be called directly, use UpdateHint() above instead. virtual void ShowHint(const wxRect& rect); virtual void HideHint(); @@ -622,6 +634,10 @@ class WXDLLIMPEXP_AUI wxAuiManager : public wxEvtHandler // m_actionPart. If m_actionPart is null, returns wxNOT_FOUND. int GetActionPartIndex() const; + // This flag is set to true if Update() is called while the window is + // minimized, in which case we postpone updating it until it is restored. + bool m_updateOnRestore = false; + #ifndef SWIG wxDECLARE_EVENT_TABLE(); wxDECLARE_CLASS(wxAuiManager); diff --git a/include/wx/aui/serializer.h b/include/wx/aui/serializer.h new file mode 100644 index 000000000000..1b720d744e8d --- /dev/null +++ b/include/wx/aui/serializer.h @@ -0,0 +1,109 @@ +/////////////////////////////////////////////////////////////////////////////// +// Name: wx/aui/serializer.h +// Purpose: Declaration of wxAuiSerializer and wxAuiDeserializer classes. +// Author: Vadim Zeitlin +// Created: 2024-01-20 +// Copyright: (c) 2024 Vadim Zeitlin +// Licence: wxWindows licence +/////////////////////////////////////////////////////////////////////////////// + +#ifndef _WX_AUI_SERIALIZER_H_ +#define _WX_AUI_SERIALIZER_H_ + +// ---------------------------------------------------------------------------- +// Classes used to save/load wxAuiManager layout. +// ---------------------------------------------------------------------------- + +// wxAuiSerializer is used with wxAuiManager::SaveLayout(). +// +// This is an abstract base class, you need to inherit from it and override its +// pure virtual functions in your derived class. +// +// If any of the functions of the derived class throw an exception, it is +// propagated out of wxAuiManager::SaveLayout() and it's callers responsibility +// to handle it. +class wxAuiSerializer +{ +public: + // Trivial default ctor. + wxAuiSerializer() = default; + + // Trivial but virtual dtor for a base class. + virtual ~wxAuiSerializer() = default; + + + // Called before doing anything else, does nothing by default. + virtual void BeforeSave() { } + + // Called before starting to save information about the panes, does nothing + // by default. + virtual void BeforeSavePanes() { } + + // Save information about the given pane. + virtual void SavePane(const wxAuiPaneInfo& pane) = 0; + + // Called after the last call to SavePane(), does nothing by default. + virtual void AfterSavePanes() { } + + // Called before starting to save information about the docks, does nothing + // by default. + virtual void BeforeSaveDocks() { } + + // Save information about the given dock. + virtual void SaveDock(const wxAuiDockInfo& dock) = 0; + + // Called after the last call to SaveDock(), does nothing by default. + virtual void AfterSaveDocks() { } + + // Called after saving everything, does nothing by default. + virtual void AfterSave() { } +}; + +// wxAuiDeserializer is used with wxAuiManager::LoadLayout(). +// +// As wxAuiSerializer, this is an abstract base class, you need to inherit from +// it and override its pure virtual functions in your derived class. +// +// Derived class function also may throw and, if any of them other than +// AfterLoad() does, the existing layout is not changed, i.e. +// wxAuiManager::LoadLayout() is exception-safe. +class wxAuiDeserializer +{ +public: + // Ctor takes the manager for which we're restoring the layout, it must + // remain valid for the lifetime of this object. + explicit wxAuiDeserializer(wxAuiManager& manager) : m_manager(manager) { } + + // Trivial but virtual dtor for a base class. + virtual ~wxAuiDeserializer() = default; + + + // Called before doing anything else, does nothing by default. + virtual void BeforeLoad() { } + + // Load information about all the panes previously saved with SavePane(). + virtual std::vector LoadPanes() = 0; + + // Create the window to be managed by the given pane: this is called if any + // of the panes returned by LoadPanes() doesn't exist in the existing + // layout and allows to create windows on the fly. + // + // If this function returns nullptr, the pane is not added to the manager. + virtual wxWindow* CreatePaneWindow(const wxAuiPaneInfo& WXUNUSED(pane)) + { + return nullptr; + } + + // Load information about all the docks previously saved with SaveDock(). + virtual std::vector LoadDocks() = 0; + + // Called after restoring everything, calls Update() on the manager by + // default. + virtual void AfterLoad() { m_manager.Update(); } + +protected: + // The manager for which we're restoring the layout. + wxAuiManager& m_manager; +}; + +#endif // _WX_AUI_SERIALIZER_H_ diff --git a/include/wx/chkconf.h b/include/wx/chkconf.h index 9cf435a3f223..2bb9c6ee424b 100644 --- a/include/wx/chkconf.h +++ b/include/wx/chkconf.h @@ -184,14 +184,6 @@ # endif #endif /* !defined(wxUSE_LOG) */ -#ifndef wxUSE_LONGLONG -# ifdef wxABORT_ON_CONFIG_ERROR -# error "wxUSE_LONGLONG must be defined, please read comment near the top of this file." -# else -# define wxUSE_LONGLONG 0 -# endif -#endif /* !defined(wxUSE_LONGLONG) */ - #ifndef wxUSE_MIMETYPE # ifdef wxABORT_ON_CONFIG_ERROR # error "wxUSE_MIMETYPE must be defined, please read comment near the top of this file." @@ -1431,17 +1423,6 @@ # endif #endif /* wxUSE_FS_INET */ -#if wxUSE_STOPWATCH || wxUSE_DATETIME -# if !wxUSE_LONGLONG -# ifdef wxABORT_ON_CONFIG_ERROR -# error "wxUSE_STOPWATCH and wxUSE_DATETIME require wxUSE_LONGLONG" -# else -# undef wxUSE_LONGLONG -# define wxUSE_LONGLONG 1 -# endif -# endif -#endif /* wxUSE_STOPWATCH */ - #if wxUSE_MIMETYPE && !wxUSE_TEXTFILE # ifdef wxABORT_ON_CONFIG_ERROR # error "wxUSE_MIMETYPE requires wxUSE_TEXTFILE" @@ -2333,17 +2314,6 @@ # endif #endif /* wxUSE_PRIVATE_FONTS */ -#if wxUSE_MEDIACTRL -# if !wxUSE_LONGLONG -# ifdef wxABORT_ON_CONFIG_ERROR -# error "wxMediaCtrl requires wxUSE_LONGLONG" -# else -# undef wxUSE_LONGLONG -# define wxUSE_LONGLONG 1 -# endif -# endif -#endif /* wxUSE_MEDIACTRL */ - #if wxUSE_STC # if !wxUSE_STOPWATCH # ifdef wxABORT_ON_CONFIG_ERROR @@ -2373,14 +2343,6 @@ # define wxUSE_RICHTEXT 0 # endif # endif -# if !wxUSE_LONGLONG -# ifdef wxABORT_ON_CONFIG_ERROR -# error "wxRichTextCtrl requires wxUSE_LONGLONG" -# else -# undef wxUSE_LONGLONG -# define wxUSE_LONGLONG 1 -# endif -# endif # if !wxUSE_VARIANT # ifdef wxABORT_ON_CONFIG_ERROR # error "wxRichTextCtrl requires wxUSE_VARIANT" diff --git a/include/wx/dataview.h b/include/wx/dataview.h index a6dea8b9664a..e800ed52db02 100644 --- a/include/wx/dataview.h +++ b/include/wx/dataview.h @@ -489,20 +489,28 @@ enum wxDataViewColumnFlags class WXDLLIMPEXP_CORE wxDataViewColumnBase : public wxSettableHeaderColumn { public: - // ctor for the text columns: takes ownership of renderer + // Both ctors take ownership of the renderer pointer. + // + // Note that the derived class must call m_renderer->SetOwner(this) on its + // own because we can't do it here, as SetOwner() requires a pointer to the + // full column object and not just the base one. + + // ctor for the text columns wxDataViewColumnBase(wxDataViewRenderer *renderer, unsigned int model_column) + : m_renderer(renderer), + m_model_column(model_column) { - Init(renderer, model_column); } // ctor for the bitmap columns wxDataViewColumnBase(const wxBitmapBundle& bitmap, wxDataViewRenderer *renderer, unsigned int model_column) - : m_bitmap(bitmap) + : m_renderer(renderer), + m_model_column(model_column), + m_bitmap(bitmap) { - Init(renderer, model_column); } virtual ~wxDataViewColumnBase(); @@ -532,11 +540,7 @@ class WXDLLIMPEXP_CORE wxDataViewColumnBase : public wxSettableHeaderColumn wxDataViewRenderer *m_renderer; int m_model_column; wxBitmapBundle m_bitmap; - wxDataViewCtrl *m_owner; - -private: - // common part of all ctors - void Init(wxDataViewRenderer *renderer, unsigned int model_column); + wxDataViewCtrl *m_owner = nullptr; }; // --------------------------------------------------------- diff --git a/include/wx/datetime.h b/include/wx/datetime.h index 55292f008408..65bda23164c6 100644 --- a/include/wx/datetime.h +++ b/include/wx/datetime.h @@ -126,7 +126,7 @@ extern WXDLLIMPEXP_DATA_BASE(const wxDateTime) wxDefaultDateTime; // wxDateTime represents an absolute moment in the time // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_BASE wxDateTime +class WXDLLIMPEXP_BASE wxWARN_UNUSED wxDateTime { public: // types diff --git a/include/wx/datstrm.h b/include/wx/datstrm.h index c54d79aa8eed..53390c627a78 100644 --- a/include/wx/datstrm.h +++ b/include/wx/datstrm.h @@ -74,12 +74,8 @@ class WXDLLIMPEXP_BASE wxDataInputStream : public wxDataStreamBase bool IsOk() { return m_input->IsOk(); } -#if wxHAS_INT64 wxUint64 Read64(); -#endif -#if wxUSE_LONGLONG wxLongLong ReadLL(); -#endif wxUint32 Read32(); wxUint16 Read16(); wxUint8 Read8(); @@ -87,18 +83,12 @@ class WXDLLIMPEXP_BASE wxDataInputStream : public wxDataStreamBase float ReadFloat(); wxString ReadString(); -#if wxHAS_INT64 void Read64(wxUint64 *buffer, size_t size); void Read64(wxInt64 *buffer, size_t size); -#endif -#if defined(wxLongLong_t) && wxUSE_LONGLONG void Read64(wxULongLong *buffer, size_t size); void Read64(wxLongLong *buffer, size_t size); -#endif -#if wxUSE_LONGLONG void ReadLL(wxULongLong *buffer, size_t size); void ReadLL(wxLongLong *buffer, size_t size); -#endif void Read32(wxUint32 *buffer, size_t size); void Read16(wxUint16 *buffer, size_t size); void Read8(wxUint8 *buffer, size_t size); @@ -112,14 +102,10 @@ class WXDLLIMPEXP_BASE wxDataInputStream : public wxDataStreamBase wxDataInputStream& operator>>(wxUint8& c); wxDataInputStream& operator>>(wxUint16& i); wxDataInputStream& operator>>(wxUint32& i); -#if wxHAS_INT64 wxDataInputStream& operator>>(wxUint64& i); wxDataInputStream& operator>>(wxInt64& i); -#endif -#if defined(wxLongLong_t) && wxUSE_LONGLONG wxDataInputStream& operator>>(wxULongLong& i); wxDataInputStream& operator>>(wxLongLong& i); -#endif wxDataInputStream& operator>>(double& d); wxDataInputStream& operator>>(float& f); @@ -136,14 +122,10 @@ class WXDLLIMPEXP_BASE wxDataOutputStream : public wxDataStreamBase bool IsOk() { return m_output->IsOk(); } -#if wxHAS_INT64 void Write64(wxUint64 i); void Write64(wxInt64 i); -#endif -#if wxUSE_LONGLONG void WriteLL(const wxLongLong &ll); void WriteLL(const wxULongLong &ll); -#endif void Write32(wxUint32 i); void Write16(wxUint16 i); void Write8(wxUint8 i); @@ -151,18 +133,12 @@ class WXDLLIMPEXP_BASE wxDataOutputStream : public wxDataStreamBase void WriteFloat(float f); void WriteString(const wxString& string); -#if wxHAS_INT64 void Write64(const wxUint64 *buffer, size_t size); void Write64(const wxInt64 *buffer, size_t size); -#endif -#if defined(wxLongLong_t) && wxUSE_LONGLONG void Write64(const wxULongLong *buffer, size_t size); void Write64(const wxLongLong *buffer, size_t size); -#endif -#if wxUSE_LONGLONG void WriteLL(const wxULongLong *buffer, size_t size); void WriteLL(const wxLongLong *buffer, size_t size); -#endif void Write32(const wxUint32 *buffer, size_t size); void Write16(const wxUint16 *buffer, size_t size); void Write8(const wxUint8 *buffer, size_t size); @@ -176,14 +152,10 @@ class WXDLLIMPEXP_BASE wxDataOutputStream : public wxDataStreamBase wxDataOutputStream& operator<<(wxUint8 c); wxDataOutputStream& operator<<(wxUint16 i); wxDataOutputStream& operator<<(wxUint32 i); -#if wxHAS_INT64 wxDataOutputStream& operator<<(wxUint64 i); wxDataOutputStream& operator<<(wxInt64 i); -#endif -#if defined(wxLongLong_t) && wxUSE_LONGLONG wxDataOutputStream& operator<<(const wxULongLong &i); wxDataOutputStream& operator<<(const wxLongLong &i); -#endif wxDataOutputStream& operator<<(double d); wxDataOutputStream& operator<<(float f); diff --git a/include/wx/dcscreen.h b/include/wx/dcscreen.h index 21bdb984c9db..b297838159f0 100644 --- a/include/wx/dcscreen.h +++ b/include/wx/dcscreen.h @@ -13,6 +13,7 @@ #include "wx/defs.h" #include "wx/dc.h" +// This class is obsolete and doesn't work, don't use it. class WXDLLIMPEXP_CORE wxScreenDC : public wxDC { public: diff --git a/include/wx/defs.h b/include/wx/defs.h index 069a59816e13..6ebb179dc2ac 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -282,8 +282,8 @@ typedef short int WXTYPE; /* wxWARN_UNUSED is used as an attribute to a class, stating that unused instances should be warned about (in case such warnings are enabled in the first place) */ -#ifdef __has_cpp_attribute - #if __has_cpp_attribute(warn_unused) +#ifdef __has_attribute /* __has_cpp_attribute(warn_unused) would return false with Clang, */ + #if __has_attribute(warn_unused) /* so use __has_attribute instead */ #define wxWARN_UNUSED __attribute__((warn_unused)) #endif #endif @@ -1128,51 +1128,27 @@ typedef double wxDouble; (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24))) /* machine specific byte swapping */ -#ifdef wxLongLong_t - #define wxUINT64_SWAP_ALWAYS(val) \ - ((wxUint64) ( \ - (((wxUint64) (val) & (wxUint64) wxULL(0x00000000000000ff)) << 56) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x000000000000ff00)) << 40) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x0000000000ff0000)) << 24) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x00000000ff000000)) << 8) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x000000ff00000000)) >> 8) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x0000ff0000000000)) >> 24) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x00ff000000000000)) >> 40) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0xff00000000000000)) >> 56))) - - #define wxINT64_SWAP_ALWAYS(val) \ - ((wxInt64) ( \ - (((wxUint64) (val) & (wxUint64) wxULL(0x00000000000000ff)) << 56) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x000000000000ff00)) << 40) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x0000000000ff0000)) << 24) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x00000000ff000000)) << 8) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x000000ff00000000)) >> 8) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x0000ff0000000000)) >> 24) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0x00ff000000000000)) >> 40) | \ - (((wxUint64) (val) & (wxUint64) wxULL(0xff00000000000000)) >> 56))) -#elif wxUSE_LONGLONG /* !wxLongLong_t */ - #define wxUINT64_SWAP_ALWAYS(val) \ - ((wxUint64) ( \ - ((wxULongLong(val) & wxULongLong(0L, 0x000000ffU)) << 56) | \ - ((wxULongLong(val) & wxULongLong(0L, 0x0000ff00U)) << 40) | \ - ((wxULongLong(val) & wxULongLong(0L, 0x00ff0000U)) << 24) | \ - ((wxULongLong(val) & wxULongLong(0L, 0xff000000U)) << 8) | \ - ((wxULongLong(val) & wxULongLong(0x000000ffL, 0U)) >> 8) | \ - ((wxULongLong(val) & wxULongLong(0x0000ff00L, 0U)) >> 24) | \ - ((wxULongLong(val) & wxULongLong(0x00ff0000L, 0U)) >> 40) | \ - ((wxULongLong(val) & wxULongLong(0xff000000L, 0U)) >> 56))) - - #define wxINT64_SWAP_ALWAYS(val) \ - ((wxInt64) ( \ - ((wxLongLong(val) & wxLongLong(0L, 0x000000ffU)) << 56) | \ - ((wxLongLong(val) & wxLongLong(0L, 0x0000ff00U)) << 40) | \ - ((wxLongLong(val) & wxLongLong(0L, 0x00ff0000U)) << 24) | \ - ((wxLongLong(val) & wxLongLong(0L, 0xff000000U)) << 8) | \ - ((wxLongLong(val) & wxLongLong(0x000000ffL, 0U)) >> 8) | \ - ((wxLongLong(val) & wxLongLong(0x0000ff00L, 0U)) >> 24) | \ - ((wxLongLong(val) & wxLongLong(0x00ff0000L, 0U)) >> 40) | \ - ((wxLongLong(val) & wxLongLong(0xff000000L, 0U)) >> 56))) -#endif /* wxLongLong_t/!wxLongLong_t */ +#define wxUINT64_SWAP_ALWAYS(val) \ + ((wxUint64) ( \ + (((wxUint64) (val) & (wxUint64) wxULL(0x00000000000000ff)) << 56) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x000000000000ff00)) << 40) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x0000000000ff0000)) << 24) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x00000000ff000000)) << 8) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x000000ff00000000)) >> 8) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x0000ff0000000000)) >> 24) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x00ff000000000000)) >> 40) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0xff00000000000000)) >> 56))) + +#define wxINT64_SWAP_ALWAYS(val) \ + ((wxInt64) ( \ + (((wxUint64) (val) & (wxUint64) wxULL(0x00000000000000ff)) << 56) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x000000000000ff00)) << 40) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x0000000000ff0000)) << 24) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x00000000ff000000)) << 8) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x000000ff00000000)) >> 8) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x0000ff0000000000)) >> 24) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0x00ff000000000000)) >> 40) | \ + (((wxUint64) (val) & (wxUint64) wxULL(0xff00000000000000)) >> 56))) #ifdef WORDS_BIGENDIAN #define wxUINT16_SWAP_ON_BE(val) wxUINT16_SWAP_ALWAYS(val) @@ -1183,17 +1159,16 @@ typedef double wxDouble; #define wxINT32_SWAP_ON_BE(val) wxINT32_SWAP_ALWAYS(val) #define wxUINT32_SWAP_ON_LE(val) (val) #define wxINT32_SWAP_ON_LE(val) (val) - #if wxHAS_INT64 - #define wxUINT64_SWAP_ON_BE(val) wxUINT64_SWAP_ALWAYS(val) - #define wxUINT64_SWAP_ON_LE(val) (val) - #define wxINT64_SWAP_ON_BE(val) wxINT64_SWAP_ALWAYS(val) - #define wxINT64_SWAP_ON_LE(val) (val) - - #define wxUINT64_SWAP_ON_BE_IN_PLACE(val) val = wxUINT64_SWAP_ALWAYS(val) - #define wxINT64_SWAP_ON_BE_IN_PLACE(val) val = wxINT64_SWAP_ALWAYS(val) - #define wxUINT64_SWAP_ON_LE_IN_PLACE(val) - #define wxINT64_SWAP_ON_LE_IN_PLACE(val) - #endif + + #define wxUINT64_SWAP_ON_BE(val) wxUINT64_SWAP_ALWAYS(val) + #define wxUINT64_SWAP_ON_LE(val) (val) + #define wxINT64_SWAP_ON_BE(val) wxINT64_SWAP_ALWAYS(val) + #define wxINT64_SWAP_ON_LE(val) (val) + + #define wxUINT64_SWAP_ON_BE_IN_PLACE(val) val = wxUINT64_SWAP_ALWAYS(val) + #define wxINT64_SWAP_ON_BE_IN_PLACE(val) val = wxINT64_SWAP_ALWAYS(val) + #define wxUINT64_SWAP_ON_LE_IN_PLACE(val) + #define wxINT64_SWAP_ON_LE_IN_PLACE(val) #define wxUINT16_SWAP_ON_BE_IN_PLACE(val) val = wxUINT16_SWAP_ALWAYS(val) #define wxINT16_SWAP_ON_BE_IN_PLACE(val) val = wxINT16_SWAP_ALWAYS(val) @@ -1212,16 +1187,14 @@ typedef double wxDouble; #define wxINT32_SWAP_ON_LE(val) wxINT32_SWAP_ALWAYS(val) #define wxUINT32_SWAP_ON_BE(val) (val) #define wxINT32_SWAP_ON_BE(val) (val) - #if wxHAS_INT64 - #define wxUINT64_SWAP_ON_LE(val) wxUINT64_SWAP_ALWAYS(val) - #define wxUINT64_SWAP_ON_BE(val) (val) - #define wxINT64_SWAP_ON_LE(val) wxINT64_SWAP_ALWAYS(val) - #define wxINT64_SWAP_ON_BE(val) (val) - #define wxUINT64_SWAP_ON_BE_IN_PLACE(val) - #define wxINT64_SWAP_ON_BE_IN_PLACE(val) - #define wxUINT64_SWAP_ON_LE_IN_PLACE(val) val = wxUINT64_SWAP_ALWAYS(val) - #define wxINT64_SWAP_ON_LE_IN_PLACE(val) val = wxINT64_SWAP_ALWAYS(val) - #endif + #define wxUINT64_SWAP_ON_LE(val) wxUINT64_SWAP_ALWAYS(val) + #define wxUINT64_SWAP_ON_BE(val) (val) + #define wxINT64_SWAP_ON_LE(val) wxINT64_SWAP_ALWAYS(val) + #define wxINT64_SWAP_ON_BE(val) (val) + #define wxUINT64_SWAP_ON_BE_IN_PLACE(val) + #define wxINT64_SWAP_ON_BE_IN_PLACE(val) + #define wxUINT64_SWAP_ON_LE_IN_PLACE(val) val = wxUINT64_SWAP_ALWAYS(val) + #define wxINT64_SWAP_ON_LE_IN_PLACE(val) val = wxINT64_SWAP_ALWAYS(val) #define wxUINT16_SWAP_ON_BE_IN_PLACE(val) #define wxINT16_SWAP_ON_BE_IN_PLACE(val) diff --git a/include/wx/dir.h b/include/wx/dir.h index ed0633a40304..7b6ff74b342b 100644 --- a/include/wx/dir.h +++ b/include/wx/dir.h @@ -44,10 +44,8 @@ enum wxDirTraverseResult wxDIR_CONTINUE // continue into this directory }; -#if wxUSE_LONGLONG // error code of wxDir::GetTotalSize() extern WXDLLIMPEXP_DATA_BASE(const wxULongLong) wxInvalidSize; -#endif // wxUSE_LONGLONG // ---------------------------------------------------------------------------- // wxDirTraverser: helper class for wxDir::Traverse() @@ -159,10 +157,8 @@ class WXDLLIMPEXP_BASE wxDir const wxString& filespec, int flags = wxDIR_DEFAULT); -#if wxUSE_LONGLONG // returns the size of all directories recursively found in given path static wxULongLong GetTotalSize(const wxString &dir, wxArrayString *filesSkipped = nullptr); -#endif // wxUSE_LONGLONG // static utilities for directory management diff --git a/include/wx/event.h b/include/wx/event.h index a7670bd0f5da..f4879fe6600e 100644 --- a/include/wx/event.h +++ b/include/wx/event.h @@ -45,6 +45,7 @@ class WXDLLIMPEXP_FWD_BASE wxEventFilter; #if wxUSE_GUI class WXDLLIMPEXP_FWD_CORE wxDC; class WXDLLIMPEXP_FWD_CORE wxMenu; + class WXDLLIMPEXP_FWD_CORE wxMenuItem; class WXDLLIMPEXP_FWD_CORE wxReadOnlyDC; class WXDLLIMPEXP_FWD_CORE wxWindow; class WXDLLIMPEXP_FWD_CORE wxWindowBase; @@ -2576,12 +2577,12 @@ class WXDLLIMPEXP_CORE wxInitDialogEvent : public wxEvent class WXDLLIMPEXP_CORE wxMenuEvent : public wxEvent { public: - wxMenuEvent(wxEventType type = wxEVT_NULL, int winid = 0, wxMenu* menu = nullptr) + wxMenuEvent(wxEventType type = wxEVT_NULL, int winid = 0, wxMenu* menu = nullptr, wxMenuItem* menuItem = nullptr) : wxEvent(winid, type) - { m_menuId = winid; m_menu = menu; } + { m_menuId = winid; m_menu = menu; m_menuItem = menuItem; } wxMenuEvent(const wxMenuEvent& event) : wxEvent(event) - { m_menuId = event.m_menuId; m_menu = event.m_menu; } + { m_menuId = event.m_menuId; m_menu = event.m_menu; m_menuItem = event.m_menuItem; } // only for wxEVT_MENU_HIGHLIGHT int GetMenuId() const { return m_menuId; } @@ -2592,11 +2593,14 @@ class WXDLLIMPEXP_CORE wxMenuEvent : public wxEvent // only for wxEVT_MENU_OPEN/CLOSE wxMenu* GetMenu() const { return m_menu; } + wxMenuItem* GetMenuItem() const { return m_menuItem; } + virtual wxEvent *Clone() const override { return new wxMenuEvent(*this); } private: - int m_menuId; - wxMenu* m_menu; + int m_menuId; + wxMenu* m_menu; + wxMenuItem* m_menuItem; wxDECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMenuEvent); }; @@ -3008,9 +3012,7 @@ class WXDLLIMPEXP_CORE wxUpdateUIEvent : public wxCommandEvent bool m_isCheckable; bool m_is3State; wxString m_text; -#if wxUSE_LONGLONG static wxLongLong sm_lastUpdate; -#endif static long sm_updateInterval; static wxUpdateUIMode sm_updateMode; diff --git a/include/wx/filename.h b/include/wx/filename.h index 8b05ccacf670..813d767b516a 100644 --- a/include/wx/filename.h +++ b/include/wx/filename.h @@ -121,10 +121,8 @@ enum wxFILE_EXISTS_ANY = 0x1FFF // check for existence of anything }; -#if wxUSE_LONGLONG // error code of wxFileName::GetSize() extern WXDLLIMPEXP_DATA_BASE(const wxULongLong) wxInvalidSize; -#endif // wxUSE_LONGLONG @@ -595,7 +593,6 @@ class WXDLLIMPEXP_BASE wxFileName // File size -#if wxUSE_LONGLONG // returns the size of the given filename wxULongLong GetSize() const; static wxULongLong GetSize(const wxString &file); @@ -610,7 +607,6 @@ class WXDLLIMPEXP_BASE wxFileName const wxString& nullsize = wxGetTranslation(wxASCII_STR("Not available")), int precision = 1, wxSizeConvention conv = wxSIZE_CONV_TRADITIONAL); -#endif // wxUSE_LONGLONG // deprecated methods, don't use any more diff --git a/include/wx/frame.h b/include/wx/frame.h index a15ac59e27fa..a3fc4875d31e 100644 --- a/include/wx/frame.h +++ b/include/wx/frame.h @@ -178,6 +178,8 @@ class WXDLLIMPEXP_CORE wxFrameBase : public wxTopLevelWindow virtual void DoGiveHelp(const wxString& text, bool show); #endif + virtual void RemoveChild(wxWindowBase *child) override; + virtual bool IsClientAreaChild(const wxWindow *child) const override { return !IsOneOfBars(child) && wxTopLevelWindow::IsClientAreaChild(child); diff --git a/include/wx/gdicmn.h b/include/wx/gdicmn.h index 363cdd5070cd..5996ea5f8591 100644 --- a/include/wx/gdicmn.h +++ b/include/wx/gdicmn.h @@ -270,7 +270,7 @@ enum wxEllipsizeMode // wxSize // --------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxSize +class WXDLLIMPEXP_CORE wxWARN_UNUSED wxSize { public: // members are public for compatibility, don't use them directly. @@ -450,7 +450,7 @@ class WXDLLIMPEXP_CORE wxSize // Point classes: with real or integer coordinates // --------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxRealPoint +class WXDLLIMPEXP_CORE wxWARN_UNUSED wxRealPoint { public: double x; @@ -600,7 +600,7 @@ class WXDLLIMPEXP_CORE wxRealPoint // wxPoint: 2D point with integer coordinates // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxPoint +class WXDLLIMPEXP_CORE wxWARN_UNUSED wxPoint { public: int x, y; @@ -766,7 +766,7 @@ WX_DECLARE_LIST_WITH_DECL(wxPoint, wxPointList, class WXDLLIMPEXP_CORE); // wxRect // --------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxRect +class WXDLLIMPEXP_CORE wxWARN_UNUSED wxRect { public: wxRect() diff --git a/include/wx/generic/colour.h b/include/wx/generic/colour.h index 6e27bc6df2a1..bd7a10fdb063 100644 --- a/include/wx/generic/colour.h +++ b/include/wx/generic/colour.h @@ -13,7 +13,7 @@ #include "wx/object.h" // Colour -class WXDLLIMPEXP_CORE wxColour: public wxColourBase +class WXDLLIMPEXP_CORE wxWARN_UNUSED wxColour: public wxColourBase { public: // constructors diff --git a/include/wx/generic/icon.h b/include/wx/generic/icon.h index 14fe70acfe65..d231ad0bd8b2 100644 --- a/include/wx/generic/icon.h +++ b/include/wx/generic/icon.h @@ -19,9 +19,9 @@ class WXDLLIMPEXP_CORE wxIcon: public wxBitmap { public: - wxIcon(); + wxIcon() = default; - wxIcon(const char* const* bits); + wxIcon(const char* const* bits) : wxBitmap(bits) { } // For compatibility with wxMSW where desired size is sometimes required to // distinguish between multiple icons in a resource. @@ -49,7 +49,11 @@ class WXDLLIMPEXP_CORE wxIcon: public wxBitmap // create from bitmap (which should have a mask unless it's monochrome): // there shouldn't be any implicit bitmap -> icon conversion (i.e. no // ctors, assignment operators...), but it's ok to have such function - void CopyFromBitmap(const wxBitmap& bmp); + void CopyFromBitmap(const wxBitmap& bmp) + { + if ( &bmp != this ) + Ref(bmp); + } wxDECLARE_VARIANT_OBJECT_EXPORTED(wxIcon, WXDLLIMPEXP_CORE); diff --git a/include/wx/generic/sashwin.h b/include/wx/generic/sashwin.h index 8e6434181e96..86951423adaa 100644 --- a/include/wx/generic/sashwin.h +++ b/include/wx/generic/sashwin.h @@ -228,7 +228,7 @@ class WXDLLIMPEXP_CORE wxSashEvent: public wxCommandEvent private: wxSashEdgePosition m_edge; wxRect m_dragRect; - wxSashDragStatus m_dragStatus; + wxSashDragStatus m_dragStatus = wxSASH_STATUS_OK; private: wxDECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSashEvent); diff --git a/include/wx/generic/spinctlg.h b/include/wx/generic/spinctlg.h index 68bb0f36a46f..2b422879658f 100644 --- a/include/wx/generic/spinctlg.h +++ b/include/wx/generic/spinctlg.h @@ -94,6 +94,7 @@ class WXDLLIMPEXP_CORE wxSpinCtrlGenericBase void OnSpinButton(wxSpinEvent& event); void OnTextLostFocus(wxFocusEvent& event); void OnTextChar(wxKeyEvent& event); + void OnMouseWheel(wxMouseEvent& event); // this window itself is used only as a container for its sub windows so it // shouldn't accept the focus at all and any attempts to explicitly set diff --git a/include/wx/gtk/colour.h b/include/wx/gtk/colour.h index 032ea1e8c7e0..9787519862f7 100644 --- a/include/wx/gtk/colour.h +++ b/include/wx/gtk/colour.h @@ -17,7 +17,7 @@ typedef struct _GdkRGBA GdkRGBA; // wxColour //----------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxColour : public wxColourBase +class WXDLLIMPEXP_CORE wxWARN_UNUSED wxColour : public wxColourBase { public: // constructors diff --git a/include/wx/gtk/evtloop.h b/include/wx/gtk/evtloop.h index 5ce5db88e039..38d43121f89e 100644 --- a/include/wx/gtk/evtloop.h +++ b/include/wx/gtk/evtloop.h @@ -22,6 +22,7 @@ class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxEventLoopBase { public: wxGUIEventLoop(); + virtual ~wxGUIEventLoop(); virtual void ScheduleExit(int rc = 0) override; virtual bool Pending() const override; @@ -29,9 +30,15 @@ class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxEventLoopBase virtual int DispatchTimeout(unsigned long timeout) override; virtual void WakeUp() override; + // implementation only from now on + void StoreGdkEventForLaterProcessing(GdkEvent* ev) { m_queuedGdkEvents.push_back(ev); } + // Check if this event is the same as the last event passed to this + // function and store it for future checks. + bool GTKIsSameAsLastEvent(const GdkEvent* ev, size_t size); + protected: virtual int DoRun() override; virtual void DoYieldFor(long eventsToProcess) override; @@ -43,6 +50,9 @@ class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxEventLoopBase // used to temporarily store events processed in DoYieldFor() std::vector m_queuedGdkEvents; + // last event passed to GTKIsSameAsLastEvent() + GdkEvent* m_lastEvent; + wxDECLARE_NO_COPY_CLASS(wxGUIEventLoop); }; diff --git a/include/wx/gtk/private/dialogcount.h b/include/wx/gtk/private/dialogcount.h deleted file mode 100644 index b282e99ca5ed..000000000000 --- a/include/wx/gtk/private/dialogcount.h +++ /dev/null @@ -1,48 +0,0 @@ -/////////////////////////////////////////////////////////////////////////////// -// Name: wx/gtk/private/dialogcount.h -// Purpose: Helper for temporarily changing wxOpenModalDialogsCount global. -// Author: Vadim Zeitlin -// Created: 2013-03-21 -// Copyright: (c) 2013 Vadim Zeitlin -// Licence: wxWindows licence -/////////////////////////////////////////////////////////////////////////////// - -#ifndef _WX_GTK_PRIVATE_DIALOGCOUNT_H_ -#define _WX_GTK_PRIVATE_DIALOGCOUNT_H_ - -#include "wx/defs.h" - -// This global variable contains the number of currently opened modal dialogs. -// When it is non null, the global menu used in Ubuntu Unity needs to be -// explicitly disabled as this doesn't currently happen on its own due to a bug -// in Unity, see https://bugs.launchpad.net/indicator-appmenu/+bug/674605 -// -// For this to work, all modal dialogs must use wxOpenModalDialogLocker class -// below to increment this variable while they are indeed being modally shown. -// -// This variable is defined in src/gtk/toplevel.cpp -extern int wxOpenModalDialogsCount; - -// ---------------------------------------------------------------------------- -// wxOpenModalDialogLocker: Create an object of this class to increment -// wxOpenModalDialogsCount during its lifetime. -// ---------------------------------------------------------------------------- - -class wxOpenModalDialogLocker -{ -public: - wxOpenModalDialogLocker() - { - wxOpenModalDialogsCount++; - } - - ~wxOpenModalDialogLocker() - { - wxOpenModalDialogsCount--; - } - -private: - wxDECLARE_NO_COPY_CLASS(wxOpenModalDialogLocker); -}; - -#endif // _WX_GTK_PRIVATE_DIALOGCOUNT_H_ diff --git a/include/wx/gtk/scrolwin.h b/include/wx/gtk/scrolwin.h index 5b2da7542b21..041753dcd6a3 100644 --- a/include/wx/gtk/scrolwin.h +++ b/include/wx/gtk/scrolwin.h @@ -20,7 +20,10 @@ class WXDLLIMPEXP_CORE wxScrollHelper : public wxScrollHelperBase typedef wxScrollHelperBase base_type; public: // default ctor doesn't do anything - wxScrollHelper(wxWindow *win) : wxScrollHelperBase(win) { } + wxScrollHelper(wxWindow *win) : wxScrollHelperBase(win) + { + m_win->SetScrollHelper(this); + } // implement the base class methods virtual void SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY, diff --git a/include/wx/gtk/setup.h b/include/wx/gtk/setup.h index d5ea88a2a51b..4198b3dec591 100644 --- a/include/wx/gtk/setup.h +++ b/include/wx/gtk/setup.h @@ -322,19 +322,6 @@ // non GUI features selection // ---------------------------------------------------------------------------- -// Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit -// integer which is implemented in terms of native 64 bit integers if any or -// uses emulation otherwise. -// -// This class is required by wxDateTime and so you should enable it if you want -// to use wxDateTime. For most modern platforms, it will use the native 64 bit -// integers in which case (almost) all of its functions are inline and it -// almost does not take any space, so there should be no reason to switch it -// off. -// -// Recommended setting: 1 -#define wxUSE_LONGLONG 1 - // Set wxUSE_BASE64 to 1, to compile in Base64 support. This is required for // storing binary data in wxConfig on most platforms. // @@ -421,8 +408,6 @@ // Set wxUSE_DATETIME to 1 to compile the wxDateTime and related classes which // allow to manipulate dates, times and time intervals. // -// Requires: wxUSE_LONGLONG -// // Default is 1 // // Recommended setting: 1 diff --git a/include/wx/html/htmprint.h b/include/wx/html/htmprint.h index 521a98d6bf4d..a87d662b5361 100644 --- a/include/wx/html/htmprint.h +++ b/include/wx/html/htmprint.h @@ -118,7 +118,7 @@ enum { class WXDLLIMPEXP_HTML wxHtmlPrintout : public wxPrintout { public: - wxHtmlPrintout(const wxString& title = wxT("Printout")); + wxHtmlPrintout(const wxString& title = /* TRANSLATORS: HTML printout default title. */_("Printout")); void SetHtmlText(const wxString& html, const wxString &basepath = wxEmptyString, bool isdir = true); // prepares the class for printing this html document. @@ -231,7 +231,8 @@ class WXDLLIMPEXP_HTML wxHtmlPrintout : public wxPrintout class WXDLLIMPEXP_HTML wxHtmlEasyPrinting : public wxObject { public: - wxHtmlEasyPrinting(const wxString& name = wxT("Printing"), wxWindow *parentWindow = nullptr); + wxHtmlEasyPrinting(const wxString& name = /* TRANSLATORS: HTML easy print default title. */_("Printing"), + wxWindow *parentWindow = nullptr); virtual ~wxHtmlEasyPrinting(); bool PreviewFile(const wxString &htmlfile); diff --git a/include/wx/longlong.h b/include/wx/longlong.h index 6762ad08faf5..b19ad904c488 100644 --- a/include/wx/longlong.h +++ b/include/wx/longlong.h @@ -1,7 +1,7 @@ ///////////////////////////////////////////////////////////////////////////// // Name: wx/longlong.h -// Purpose: declaration of wxLongLong class - best implementation of a 64 -// bit integer for the current platform. +// Purpose: Legacy support for 64-bit integers predating universal long +// long availability // Author: Jeffrey C. Ollie , Vadim Zeitlin // Created: 10.02.99 // Copyright: (c) 1998 Vadim Zeitlin @@ -12,114 +12,30 @@ #define _WX_LONGLONG_H #include "wx/defs.h" - -#if wxUSE_LONGLONG - +#include "wx/iosfwrap.h" #include "wx/string.h" #include // for LONG_MAX -// define this to compile wxLongLongWx in "test" mode: the results of all -// calculations will be compared with the real results taken from -// wxLongLongNative -- this is extremely useful to find the bugs in -// wxLongLongWx class! - -// #define wxLONGLONG_TEST_MODE - -#ifdef wxLONGLONG_TEST_MODE - #define wxUSE_LONGLONG_WX 1 - #define wxUSE_LONGLONG_NATIVE 1 -#endif // wxLONGLONG_TEST_MODE - -// ---------------------------------------------------------------------------- -// decide upon which class we will use -// ---------------------------------------------------------------------------- - -#ifndef wxLongLong_t - // both warning and pragma warning are not portable, but at least an - // unknown pragma should never be an error -- except that, actually, some - // broken compilers don't like it, so we have to disable it in this case - // - #ifdef __GNUC__ - #warning "Your compiler does not appear to support 64 bit "\ - "integers, using emulation class instead.\n" \ - "Please report your compiler version to " \ - "wx-dev@googlegroups.com!" - #else - #pragma warning "Your compiler does not appear to support 64 bit "\ - "integers, using emulation class instead.\n" \ - "Please report your compiler version to " \ - "wx-dev@googlegroups.com!" - #endif - - #define wxUSE_LONGLONG_WX 1 -#endif // compiler - -// the user may predefine wxUSE_LONGLONG_NATIVE and/or wxUSE_LONGLONG_NATIVE -// to disable automatic testing (useful for the test program which defines -// both classes) but by default we only use one class -#if (defined(wxUSE_LONGLONG_WX) && wxUSE_LONGLONG_WX) || !defined(wxLongLong_t) - // don't use both classes unless wxUSE_LONGLONG_NATIVE was explicitly set: - // this is useful in test programs and only there - #ifndef wxUSE_LONGLONG_NATIVE - #define wxUSE_LONGLONG_NATIVE 0 - #endif - - class WXDLLIMPEXP_FWD_BASE wxLongLongWx; - class WXDLLIMPEXP_FWD_BASE wxULongLongWx; -#if defined(__VISUALC__) && !defined(__WIN32__) - #define wxLongLong wxLongLongWx - #define wxULongLong wxULongLongWx -#else - typedef wxLongLongWx wxLongLong; - typedef wxULongLongWx wxULongLong; -#endif - -#else - // if nothing is defined, use native implementation by default, of course - #ifndef wxUSE_LONGLONG_NATIVE - #define wxUSE_LONGLONG_NATIVE 1 - #endif -#endif - -#ifndef wxUSE_LONGLONG_WX - #define wxUSE_LONGLONG_WX 0 - class WXDLLIMPEXP_FWD_BASE wxLongLongNative; - class WXDLLIMPEXP_FWD_BASE wxULongLongNative; - typedef wxLongLongNative wxLongLong; - typedef wxULongLongNative wxULongLong; -#endif - -// NB: if both wxUSE_LONGLONG_WX and NATIVE are defined, the user code should -// typedef wxLongLong as it wants, we don't do it - -// ---------------------------------------------------------------------------- -// choose the appropriate class -// ---------------------------------------------------------------------------- - -// we use iostream for wxLongLong output -#include "wx/iosfwrap.h" +class WXDLLIMPEXP_FWD_BASE wxULongLong; -#if wxUSE_LONGLONG_NATIVE - -class WXDLLIMPEXP_BASE wxLongLongNative +class WXDLLIMPEXP_BASE wxWARN_UNUSED wxLongLong { public: // ctors // default ctor initializes to 0 - wxLongLongNative() : m_ll(0) { } + wxLongLong() : m_ll(0) { } // from long long - wxLongLongNative(wxLongLong_t ll) : m_ll(ll) { } + wxLongLong(wxLongLong_t ll) : m_ll(ll) { } // from 2 longs - wxLongLongNative(wxInt32 hi, wxUint32 lo) + wxLongLong(wxInt32 hi, wxUint32 lo) { - // cast to wxLongLong_t first to avoid precision loss! - m_ll = ((wxLongLong_t) hi) << 32; + // cast first to avoid precision loss and use unsigned shift to avoid + // undefined behaviour if the high part is negative (and then cast + // again to avoid warning about the possible sign change) + m_ll = (wxLongLong_t)(((wxULongLong_t) hi) << 32); m_ll |= (wxLongLong_t) lo; } -#if wxUSE_LONGLONG_WX - wxLongLongNative(wxLongLongWx ll); -#endif // default copy ctor is ok @@ -128,33 +44,29 @@ class WXDLLIMPEXP_BASE wxLongLongNative // assignment operators // from native 64 bit integer #ifndef wxLongLongIsLong - wxLongLongNative& operator=(wxLongLong_t ll) + wxLongLong& operator=(wxLongLong_t ll) { m_ll = ll; return *this; } - wxLongLongNative& operator=(wxULongLong_t ll) + wxLongLong& operator=(wxULongLong_t ll) { m_ll = ll; return *this; } -#endif // !wxLongLongNative - wxLongLongNative& operator=(const wxULongLongNative &ll); - wxLongLongNative& operator=(int l) +#endif // !wxLongLong + wxLongLong& operator=(const wxULongLong &ll); + wxLongLong& operator=(int l) { m_ll = l; return *this; } - wxLongLongNative& operator=(long l) + wxLongLong& operator=(long l) { m_ll = l; return *this; } - wxLongLongNative& operator=(unsigned int l) + wxLongLong& operator=(unsigned int l) { m_ll = l; return *this; } - wxLongLongNative& operator=(unsigned long l) + wxLongLong& operator=(unsigned long l) { m_ll = l; return *this; } -#if wxUSE_LONGLONG_WX - wxLongLongNative& operator=(wxLongLongWx ll); - wxLongLongNative& operator=(const class wxULongLongWx &ll); -#endif // from double: this one has an explicit name because otherwise we // would have ambiguity with "ll = int" and also because we don't want // to have implicit conversions between doubles and wxLongLongs - wxLongLongNative& Assign(double d) + wxLongLong& Assign(double d) { m_ll = (wxLongLong_t)d; return *this; } - // assignment operators from wxLongLongNative is ok + // assignment operators from wxLongLong is ok // accessors // get high part @@ -165,8 +77,8 @@ class WXDLLIMPEXP_BASE wxLongLongNative { return wx_truncate_cast(wxUint32, m_ll); } // get absolute value - wxLongLongNative Abs() const { return wxLongLongNative(*this).Abs(); } - wxLongLongNative& Abs() { if ( m_ll < 0 ) m_ll = -m_ll; return *this; } + wxLongLong Abs() const { return wxLongLong(*this).Abs(); } + wxLongLong& Abs() { if ( m_ll < 0 ) m_ll = -m_ll; return *this; } // convert to native long long wxLongLong_t GetValue() const { return m_ll; } @@ -193,144 +105,147 @@ class WXDLLIMPEXP_BASE wxLongLongNative // operations // addition - wxLongLongNative operator+(const wxLongLongNative& ll) const - { return wxLongLongNative(m_ll + ll.m_ll); } - wxLongLongNative& operator+=(const wxLongLongNative& ll) + wxLongLong operator+(const wxLongLong& ll) const + { return wxLongLong(m_ll + ll.m_ll); } + wxLongLong& operator+=(const wxLongLong& ll) { m_ll += ll.m_ll; return *this; } - friend wxLongLongNative operator+(long l, const wxLongLongNative& ll) + friend wxLongLong operator+(long l, const wxLongLong& ll) { return ll + l; } - wxLongLongNative operator+(const wxLongLong_t ll) const - { return wxLongLongNative(m_ll + ll); } - wxLongLongNative& operator+=(const wxLongLong_t ll) + wxLongLong operator+(const wxLongLong_t ll) const + { return wxLongLong(m_ll + ll); } + wxLongLong& operator+=(const wxLongLong_t ll) { m_ll += ll; return *this; } // pre increment - wxLongLongNative& operator++() + wxLongLong& operator++() { m_ll++; return *this; } // post increment - wxLongLongNative operator++(int) - { wxLongLongNative value(*this); m_ll++; return value; } + wxLongLong operator++(int) + { wxLongLong value(*this); m_ll++; return value; } // negation operator - wxLongLongNative operator-() const - { return wxLongLongNative(-m_ll); } - wxLongLongNative& Negate() { m_ll = -m_ll; return *this; } + wxLongLong operator-() const + { return wxLongLong(-m_ll); } + wxLongLong& Negate() { m_ll = -m_ll; return *this; } // subtraction - wxLongLongNative operator-(const wxLongLongNative& ll) const - { return wxLongLongNative(m_ll - ll.m_ll); } - wxLongLongNative& operator-=(const wxLongLongNative& ll) + wxLongLong operator-(const wxLongLong& ll) const + { return wxLongLong(m_ll - ll.m_ll); } + wxLongLong& operator-=(const wxLongLong& ll) { m_ll -= ll.m_ll; return *this; } - friend wxLongLongNative operator-(long l, const wxLongLongNative& ll) + friend wxLongLong operator-(long l, const wxLongLong& ll) { - return wxLongLongNative(l) - ll; + return wxLongLong(l) - ll; } - wxLongLongNative operator-(const wxLongLong_t ll) const - { return wxLongLongNative(m_ll - ll); } - wxLongLongNative& operator-=(const wxLongLong_t ll) + wxLongLong operator-(const wxLongLong_t ll) const + { return wxLongLong(m_ll - ll); } + wxLongLong& operator-=(const wxLongLong_t ll) { m_ll -= ll; return *this; } // pre decrement - wxLongLongNative& operator--() + wxLongLong& operator--() { m_ll--; return *this; } // post decrement - wxLongLongNative operator--(int) - { wxLongLongNative value(*this); m_ll--; return value; } + wxLongLong operator--(int) + { wxLongLong value(*this); m_ll--; return value; } // shifts // left shift - wxLongLongNative operator<<(int shift) const - { return wxLongLongNative(m_ll << shift); } - wxLongLongNative& operator<<=(int shift) + wxLongLong operator<<(int shift) const + { return wxLongLong(m_ll << shift); } + wxLongLong& operator<<=(int shift) { m_ll <<= shift; return *this; } // right shift - wxLongLongNative operator>>(int shift) const - { return wxLongLongNative(m_ll >> shift); } - wxLongLongNative& operator>>=(int shift) + wxLongLong operator>>(int shift) const + { return wxLongLong(m_ll >> shift); } + wxLongLong& operator>>=(int shift) { m_ll >>= shift; return *this; } // bitwise operators - wxLongLongNative operator&(const wxLongLongNative& ll) const - { return wxLongLongNative(m_ll & ll.m_ll); } - wxLongLongNative& operator&=(const wxLongLongNative& ll) + wxLongLong operator&(const wxLongLong& ll) const + { return wxLongLong(m_ll & ll.m_ll); } + wxLongLong& operator&=(const wxLongLong& ll) { m_ll &= ll.m_ll; return *this; } - wxLongLongNative operator|(const wxLongLongNative& ll) const - { return wxLongLongNative(m_ll | ll.m_ll); } - wxLongLongNative& operator|=(const wxLongLongNative& ll) + wxLongLong operator|(const wxLongLong& ll) const + { return wxLongLong(m_ll | ll.m_ll); } + wxLongLong& operator|=(const wxLongLong& ll) { m_ll |= ll.m_ll; return *this; } - wxLongLongNative operator^(const wxLongLongNative& ll) const - { return wxLongLongNative(m_ll ^ ll.m_ll); } - wxLongLongNative& operator^=(const wxLongLongNative& ll) + wxLongLong operator^(const wxLongLong& ll) const + { return wxLongLong(m_ll ^ ll.m_ll); } + wxLongLong& operator^=(const wxLongLong& ll) { m_ll ^= ll.m_ll; return *this; } // multiplication/division - wxLongLongNative operator*(const wxLongLongNative& ll) const - { return wxLongLongNative(m_ll * ll.m_ll); } - wxLongLongNative operator*(long l) const - { return wxLongLongNative(m_ll * l); } - wxLongLongNative& operator*=(const wxLongLongNative& ll) + wxLongLong operator*(const wxLongLong& ll) const + { return wxLongLong(m_ll * ll.m_ll); } + wxLongLong operator*(long l) const + { return wxLongLong(m_ll * l); } + wxLongLong& operator*=(const wxLongLong& ll) { m_ll *= ll.m_ll; return *this; } - wxLongLongNative& operator*=(long l) + wxLongLong& operator*=(long l) { m_ll *= l; return *this; } - wxLongLongNative operator/(const wxLongLongNative& ll) const - { return wxLongLongNative(m_ll / ll.m_ll); } - wxLongLongNative operator/(long l) const - { return wxLongLongNative(m_ll / l); } - wxLongLongNative& operator/=(const wxLongLongNative& ll) + wxLongLong operator/(const wxLongLong& ll) const + { return wxLongLong(m_ll / ll.m_ll); } + wxLongLong operator/(long l) const + { return wxLongLong(m_ll / l); } + wxLongLong& operator/=(const wxLongLong& ll) { m_ll /= ll.m_ll; return *this; } - wxLongLongNative& operator/=(long l) + wxLongLong& operator/=(long l) { m_ll /= l; return *this; } - wxLongLongNative operator%(const wxLongLongNative& ll) const - { return wxLongLongNative(m_ll % ll.m_ll); } - wxLongLongNative operator%(long l) const - { return wxLongLongNative(m_ll % l); } + wxLongLong operator%(const wxLongLong& ll) const + { return wxLongLong(m_ll % ll.m_ll); } + wxLongLong operator%(long l) const + { return wxLongLong(m_ll % l); } // comparison - bool operator==(const wxLongLongNative& ll) const + bool operator==(const wxLongLong& ll) const { return m_ll == ll.m_ll; } bool operator==(long l) const { return m_ll == l; } - bool operator!=(const wxLongLongNative& ll) const + bool operator!=(const wxLongLong& ll) const { return m_ll != ll.m_ll; } bool operator!=(long l) const { return m_ll != l; } - bool operator<(const wxLongLongNative& ll) const + bool operator<(const wxLongLong& ll) const { return m_ll < ll.m_ll; } bool operator<(long l) const { return m_ll < l; } - bool operator>(const wxLongLongNative& ll) const + bool operator>(const wxLongLong& ll) const { return m_ll > ll.m_ll; } bool operator>(long l) const { return m_ll > l; } - bool operator<=(const wxLongLongNative& ll) const + bool operator<=(const wxLongLong& ll) const { return m_ll <= ll.m_ll; } bool operator<=(long l) const { return m_ll <= l; } - bool operator>=(const wxLongLongNative& ll) const + bool operator>=(const wxLongLong& ll) const { return m_ll >= ll.m_ll; } bool operator>=(long l) const { return m_ll >= l; } - friend bool operator<(long l, const wxLongLongNative& ll) { return ll > l; } - friend bool operator>(long l, const wxLongLongNative& ll) { return ll < l; } - friend bool operator<=(long l, const wxLongLongNative& ll) { return ll >= l; } - friend bool operator>=(long l, const wxLongLongNative& ll) { return ll <= l; } - friend bool operator==(long l, const wxLongLongNative& ll) { return ll == l; } - friend bool operator!=(long l, const wxLongLongNative& ll) { return ll != l; } + friend bool operator<(long l, const wxLongLong& ll) { return ll > l; } + friend bool operator>(long l, const wxLongLong& ll) { return ll < l; } + friend bool operator<=(long l, const wxLongLong& ll) { return ll >= l; } + friend bool operator>=(long l, const wxLongLong& ll) { return ll <= l; } + friend bool operator==(long l, const wxLongLong& ll) { return ll == l; } + friend bool operator!=(long l, const wxLongLong& ll) { return ll != l; } // miscellaneous // return the string representation of this number - wxString ToString() const; + wxString ToString() const + { + return wxString::Format(wxASCII_STR("%" wxLongLongFmtSpec "d"), m_ll); + } // conversion to byte array: returns a pointer to static buffer! void *asArray() const; @@ -338,44 +253,39 @@ class WXDLLIMPEXP_BASE wxLongLongNative #if wxUSE_STD_IOSTREAM // input/output friend WXDLLIMPEXP_BASE - std::ostream& operator<<(std::ostream&, const wxLongLongNative&); + std::ostream& operator<<(std::ostream&, const wxLongLong&); #endif friend WXDLLIMPEXP_BASE - wxString& operator<<(wxString&, const wxLongLongNative&); + wxString& operator<<(wxString&, const wxLongLong&); #if wxUSE_STREAMS friend WXDLLIMPEXP_BASE - class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxLongLongNative&); + class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxLongLong&); friend WXDLLIMPEXP_BASE - class wxTextInputStream& operator>>(class wxTextInputStream&, wxLongLongNative&); + class wxTextInputStream& operator>>(class wxTextInputStream&, wxLongLong&); #endif private: wxLongLong_t m_ll; }; - -class WXDLLIMPEXP_BASE wxULongLongNative +class WXDLLIMPEXP_BASE wxWARN_UNUSED wxULongLong { public: // ctors // default ctor initializes to 0 - wxULongLongNative() : m_ll(0) { } + wxULongLong() : m_ll(0) { } // from long long - wxULongLongNative(wxULongLong_t ll) : m_ll(ll) { } + wxULongLong(wxULongLong_t ll) : m_ll(ll) { } // from 2 longs - wxULongLongNative(wxUint32 hi, wxUint32 lo) : m_ll(0) + wxULongLong(wxUint32 hi, wxUint32 lo) : m_ll(0) { // cast to wxLongLong_t first to avoid precision loss! m_ll = ((wxULongLong_t) hi) << 32; m_ll |= (wxULongLong_t) lo; } -#if wxUSE_LONGLONG_WX - wxULongLongNative(const class wxULongLongWx &ll); -#endif - // default copy ctor is ok // no dtor @@ -383,27 +293,23 @@ class WXDLLIMPEXP_BASE wxULongLongNative // assignment operators // from native 64 bit integer #ifndef wxLongLongIsLong - wxULongLongNative& operator=(wxULongLong_t ll) + wxULongLong& operator=(wxULongLong_t ll) { m_ll = ll; return *this; } - wxULongLongNative& operator=(wxLongLong_t ll) + wxULongLong& operator=(wxLongLong_t ll) { m_ll = ll; return *this; } -#endif // !wxLongLongNative - wxULongLongNative& operator=(int l) +#endif // !wxLongLong + wxULongLong& operator=(int l) { m_ll = l; return *this; } - wxULongLongNative& operator=(long l) + wxULongLong& operator=(long l) { m_ll = l; return *this; } - wxULongLongNative& operator=(unsigned int l) + wxULongLong& operator=(unsigned int l) { m_ll = l; return *this; } - wxULongLongNative& operator=(unsigned long l) + wxULongLong& operator=(unsigned long l) { m_ll = l; return *this; } - wxULongLongNative& operator=(const wxLongLongNative &ll) + wxULongLong& operator=(const wxLongLong &ll) { m_ll = ll.GetValue(); return *this; } -#if wxUSE_LONGLONG_WX - wxULongLongNative& operator=(wxLongLongWx ll); - wxULongLongNative& operator=(const class wxULongLongWx &ll); -#endif - // assignment operators from wxULongLongNative is ok + // assignment operators from wxULongLong is ok // accessors // get high part @@ -430,139 +336,142 @@ class WXDLLIMPEXP_BASE wxULongLongNative // operations // addition - wxULongLongNative operator+(const wxULongLongNative& ll) const - { return wxULongLongNative(m_ll + ll.m_ll); } - wxULongLongNative& operator+=(const wxULongLongNative& ll) + wxULongLong operator+(const wxULongLong& ll) const + { return wxULongLong(m_ll + ll.m_ll); } + wxULongLong& operator+=(const wxULongLong& ll) { m_ll += ll.m_ll; return *this; } - friend wxULongLongNative operator+(unsigned long l, const wxULongLongNative& ull) + friend wxULongLong operator+(unsigned long l, const wxULongLong& ull) { return ull + l; } - wxULongLongNative operator+(const wxULongLong_t ll) const - { return wxULongLongNative(m_ll + ll); } - wxULongLongNative& operator+=(const wxULongLong_t ll) + wxULongLong operator+(const wxULongLong_t ll) const + { return wxULongLong(m_ll + ll); } + wxULongLong& operator+=(const wxULongLong_t ll) { m_ll += ll; return *this; } // pre increment - wxULongLongNative& operator++() + wxULongLong& operator++() { m_ll++; return *this; } // post increment - wxULongLongNative operator++(int) - { wxULongLongNative value(*this); m_ll++; return value; } + wxULongLong operator++(int) + { wxULongLong value(*this); m_ll++; return value; } // subtraction - wxULongLongNative operator-(const wxULongLongNative& ll) const - { return wxULongLongNative(m_ll - ll.m_ll); } - wxULongLongNative& operator-=(const wxULongLongNative& ll) + wxULongLong operator-(const wxULongLong& ll) const + { return wxULongLong(m_ll - ll.m_ll); } + wxULongLong& operator-=(const wxULongLong& ll) { m_ll -= ll.m_ll; return *this; } - friend wxULongLongNative operator-(unsigned long l, const wxULongLongNative& ull) + friend wxULongLong operator-(unsigned long l, const wxULongLong& ull) { - return wxULongLongNative(l - ull.m_ll); + return wxULongLong(l - ull.m_ll); } - wxULongLongNative operator-(const wxULongLong_t ll) const - { return wxULongLongNative(m_ll - ll); } - wxULongLongNative& operator-=(const wxULongLong_t ll) + wxULongLong operator-(const wxULongLong_t ll) const + { return wxULongLong(m_ll - ll); } + wxULongLong& operator-=(const wxULongLong_t ll) { m_ll -= ll; return *this; } // pre decrement - wxULongLongNative& operator--() + wxULongLong& operator--() { m_ll--; return *this; } // post decrement - wxULongLongNative operator--(int) - { wxULongLongNative value(*this); m_ll--; return value; } + wxULongLong operator--(int) + { wxULongLong value(*this); m_ll--; return value; } // shifts // left shift - wxULongLongNative operator<<(int shift) const - { return wxULongLongNative(m_ll << shift); } - wxULongLongNative& operator<<=(int shift) + wxULongLong operator<<(int shift) const + { return wxULongLong(m_ll << shift); } + wxULongLong& operator<<=(int shift) { m_ll <<= shift; return *this; } // right shift - wxULongLongNative operator>>(int shift) const - { return wxULongLongNative(m_ll >> shift); } - wxULongLongNative& operator>>=(int shift) + wxULongLong operator>>(int shift) const + { return wxULongLong(m_ll >> shift); } + wxULongLong& operator>>=(int shift) { m_ll >>= shift; return *this; } // bitwise operators - wxULongLongNative operator&(const wxULongLongNative& ll) const - { return wxULongLongNative(m_ll & ll.m_ll); } - wxULongLongNative& operator&=(const wxULongLongNative& ll) + wxULongLong operator&(const wxULongLong& ll) const + { return wxULongLong(m_ll & ll.m_ll); } + wxULongLong& operator&=(const wxULongLong& ll) { m_ll &= ll.m_ll; return *this; } - wxULongLongNative operator|(const wxULongLongNative& ll) const - { return wxULongLongNative(m_ll | ll.m_ll); } - wxULongLongNative& operator|=(const wxULongLongNative& ll) + wxULongLong operator|(const wxULongLong& ll) const + { return wxULongLong(m_ll | ll.m_ll); } + wxULongLong& operator|=(const wxULongLong& ll) { m_ll |= ll.m_ll; return *this; } - wxULongLongNative operator^(const wxULongLongNative& ll) const - { return wxULongLongNative(m_ll ^ ll.m_ll); } - wxULongLongNative& operator^=(const wxULongLongNative& ll) + wxULongLong operator^(const wxULongLong& ll) const + { return wxULongLong(m_ll ^ ll.m_ll); } + wxULongLong& operator^=(const wxULongLong& ll) { m_ll ^= ll.m_ll; return *this; } // multiplication/division - wxULongLongNative operator*(const wxULongLongNative& ll) const - { return wxULongLongNative(m_ll * ll.m_ll); } - wxULongLongNative operator*(unsigned long l) const - { return wxULongLongNative(m_ll * l); } - wxULongLongNative& operator*=(const wxULongLongNative& ll) + wxULongLong operator*(const wxULongLong& ll) const + { return wxULongLong(m_ll * ll.m_ll); } + wxULongLong operator*(unsigned long l) const + { return wxULongLong(m_ll * l); } + wxULongLong& operator*=(const wxULongLong& ll) { m_ll *= ll.m_ll; return *this; } - wxULongLongNative& operator*=(unsigned long l) + wxULongLong& operator*=(unsigned long l) { m_ll *= l; return *this; } - wxULongLongNative operator/(const wxULongLongNative& ll) const - { return wxULongLongNative(m_ll / ll.m_ll); } - wxULongLongNative operator/(unsigned long l) const - { return wxULongLongNative(m_ll / l); } - wxULongLongNative& operator/=(const wxULongLongNative& ll) + wxULongLong operator/(const wxULongLong& ll) const + { return wxULongLong(m_ll / ll.m_ll); } + wxULongLong operator/(unsigned long l) const + { return wxULongLong(m_ll / l); } + wxULongLong& operator/=(const wxULongLong& ll) { m_ll /= ll.m_ll; return *this; } - wxULongLongNative& operator/=(unsigned long l) + wxULongLong& operator/=(unsigned long l) { m_ll /= l; return *this; } - wxULongLongNative operator%(const wxULongLongNative& ll) const - { return wxULongLongNative(m_ll % ll.m_ll); } - wxULongLongNative operator%(unsigned long l) const - { return wxULongLongNative(m_ll % l); } + wxULongLong operator%(const wxULongLong& ll) const + { return wxULongLong(m_ll % ll.m_ll); } + wxULongLong operator%(unsigned long l) const + { return wxULongLong(m_ll % l); } // comparison - bool operator==(const wxULongLongNative& ll) const + bool operator==(const wxULongLong& ll) const { return m_ll == ll.m_ll; } bool operator==(unsigned long l) const { return m_ll == l; } - bool operator!=(const wxULongLongNative& ll) const + bool operator!=(const wxULongLong& ll) const { return m_ll != ll.m_ll; } bool operator!=(unsigned long l) const { return m_ll != l; } - bool operator<(const wxULongLongNative& ll) const + bool operator<(const wxULongLong& ll) const { return m_ll < ll.m_ll; } bool operator<(unsigned long l) const { return m_ll < l; } - bool operator>(const wxULongLongNative& ll) const + bool operator>(const wxULongLong& ll) const { return m_ll > ll.m_ll; } bool operator>(unsigned long l) const { return m_ll > l; } - bool operator<=(const wxULongLongNative& ll) const + bool operator<=(const wxULongLong& ll) const { return m_ll <= ll.m_ll; } bool operator<=(unsigned long l) const { return m_ll <= l; } - bool operator>=(const wxULongLongNative& ll) const + bool operator>=(const wxULongLong& ll) const { return m_ll >= ll.m_ll; } bool operator>=(unsigned long l) const { return m_ll >= l; } - friend bool operator<(unsigned long l, const wxULongLongNative& ull) { return ull > l; } - friend bool operator>(unsigned long l, const wxULongLongNative& ull) { return ull < l; } - friend bool operator<=(unsigned long l, const wxULongLongNative& ull) { return ull >= l; } - friend bool operator>=(unsigned long l, const wxULongLongNative& ull) { return ull <= l; } - friend bool operator==(unsigned long l, const wxULongLongNative& ull) { return ull == l; } - friend bool operator!=(unsigned long l, const wxULongLongNative& ull) { return ull != l; } + friend bool operator<(unsigned long l, const wxULongLong& ull) { return ull > l; } + friend bool operator>(unsigned long l, const wxULongLong& ull) { return ull < l; } + friend bool operator<=(unsigned long l, const wxULongLong& ull) { return ull >= l; } + friend bool operator>=(unsigned long l, const wxULongLong& ull) { return ull <= l; } + friend bool operator==(unsigned long l, const wxULongLong& ull) { return ull == l; } + friend bool operator!=(unsigned long l, const wxULongLong& ull) { return ull != l; } // miscellaneous // return the string representation of this number - wxString ToString() const; + wxString ToString() const + { + return wxString::Format(wxASCII_STR("%" wxLongLongFmtSpec "u"), m_ll); + } // conversion to byte array: returns a pointer to static buffer! void *asArray() const; @@ -570,17 +479,17 @@ class WXDLLIMPEXP_BASE wxULongLongNative #if wxUSE_STD_IOSTREAM // input/output friend WXDLLIMPEXP_BASE - std::ostream& operator<<(std::ostream&, const wxULongLongNative&); + std::ostream& operator<<(std::ostream&, const wxULongLong&); #endif friend WXDLLIMPEXP_BASE - wxString& operator<<(wxString&, const wxULongLongNative&); + wxString& operator<<(wxString&, const wxULongLong&); #if wxUSE_STREAMS friend WXDLLIMPEXP_BASE - class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxULongLongNative&); + class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxULongLong&); friend WXDLLIMPEXP_BASE - class wxTextInputStream& operator>>(class wxTextInputStream&, wxULongLongNative&); + class wxTextInputStream& operator>>(class wxTextInputStream&, wxULongLong&); #endif private: @@ -588,543 +497,26 @@ class WXDLLIMPEXP_BASE wxULongLongNative }; inline -wxLongLongNative& wxLongLongNative::operator=(const wxULongLongNative &ll) +wxLongLong& wxLongLong::operator=(const wxULongLong &ll) { m_ll = ll.GetValue(); return *this; } -#endif // wxUSE_LONGLONG_NATIVE - -#if wxUSE_LONGLONG_WX - -class WXDLLIMPEXP_BASE wxLongLongWx -{ -public: - // ctors - // default ctor initializes to 0 - wxLongLongWx() - { - m_lo = m_hi = 0; - -#ifdef wxLONGLONG_TEST_MODE - m_ll = 0; - - Check(); -#endif // wxLONGLONG_TEST_MODE - } - // from long - wxLongLongWx(long l) { *this = l; } - // from 2 longs - wxLongLongWx(long hi, unsigned long lo) - { - m_hi = hi; - m_lo = lo; - -#ifdef wxLONGLONG_TEST_MODE - m_ll = hi; - m_ll <<= 32; - m_ll |= lo; - - Check(); -#endif // wxLONGLONG_TEST_MODE - } - - // default copy ctor is ok in both cases - - // no dtor - - // assignment operators - // from long - wxLongLongWx& operator=(long l) - { - m_lo = l; - m_hi = (l < 0 ? -1l : 0l); - -#ifdef wxLONGLONG_TEST_MODE - m_ll = l; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; - } - // from int - wxLongLongWx& operator=(int l) - { - return operator=((long)l); - } - - wxLongLongWx& operator=(unsigned long l) - { - m_lo = l; - m_hi = 0; - -#ifdef wxLONGLONG_TEST_MODE - m_ll = l; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; - } - - wxLongLongWx& operator=(unsigned int l) - { - return operator=((unsigned long)l); - } - - wxLongLongWx& operator=(const class wxULongLongWx &ll); - - // from double - wxLongLongWx& Assign(double d); - // can't have assignment operator from 2 longs - - // accessors - // get high part - long GetHi() const { return m_hi; } - // get low part - unsigned long GetLo() const { return m_lo; } - - // get absolute value - wxLongLongWx Abs() const { return wxLongLongWx(*this).Abs(); } - wxLongLongWx& Abs() - { - if ( m_hi < 0 ) - m_hi = -m_hi; - -#ifdef wxLONGLONG_TEST_MODE - if ( m_ll < 0 ) - m_ll = -m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; - } - - // convert to long with range checking in debug mode (only!) - long ToLong() const - { - wxASSERT_MSG( (m_hi == 0l) || (m_hi == -1l), - wxT("wxLongLong to long conversion loss of precision") ); - - return (long)m_lo; - } - - // convert to double - double ToDouble() const; - - // operations - // addition - wxLongLongWx operator+(const wxLongLongWx& ll) const; - wxLongLongWx& operator+=(const wxLongLongWx& ll); - wxLongLongWx operator+(long l) const; - wxLongLongWx& operator+=(long l); - - friend wxLongLongWx operator+(long l, const wxLongLongWx& ll) { return ll + l; } - - // pre increment operator - wxLongLongWx& operator++(); - - // post increment operator - wxLongLongWx& operator++(int) { return ++(*this); } - - // negation operator - wxLongLongWx operator-() const; - wxLongLongWx& Negate(); - - // subtraction - wxLongLongWx operator-(const wxLongLongWx& ll) const; - wxLongLongWx& operator-=(const wxLongLongWx& ll); - friend wxLongLongWx operator-(long l, const wxLongLongWx& ll) - { - return wxLongLongWx(l) - ll; - } - - // pre decrement operator - wxLongLongWx& operator--(); - - // post decrement operator - wxLongLongWx& operator--(int) { return --(*this); } - - // shifts - // left shift - wxLongLongWx operator<<(int shift) const; - wxLongLongWx& operator<<=(int shift); - - // right shift - wxLongLongWx operator>>(int shift) const; - wxLongLongWx& operator>>=(int shift); - - // bitwise operators - wxLongLongWx operator&(const wxLongLongWx& ll) const; - wxLongLongWx& operator&=(const wxLongLongWx& ll); - wxLongLongWx operator|(const wxLongLongWx& ll) const; - wxLongLongWx& operator|=(const wxLongLongWx& ll); - wxLongLongWx operator^(const wxLongLongWx& ll) const; - wxLongLongWx& operator^=(const wxLongLongWx& ll); - wxLongLongWx operator~() const; - - // comparison - bool operator==(const wxLongLongWx& ll) const - { return m_lo == ll.m_lo && m_hi == ll.m_hi; } -#if wxUSE_LONGLONG_NATIVE - bool operator==(const wxLongLongNative& ll) const - { return m_lo == ll.GetLo() && m_hi == ll.GetHi(); } -#endif - bool operator!=(const wxLongLongWx& ll) const - { return !(*this == ll); } - bool operator<(const wxLongLongWx& ll) const; - bool operator>(const wxLongLongWx& ll) const; - bool operator<=(const wxLongLongWx& ll) const - { return *this < ll || *this == ll; } - bool operator>=(const wxLongLongWx& ll) const - { return *this > ll || *this == ll; } - - bool operator<(long l) const { return *this < wxLongLongWx(l); } - bool operator>(long l) const { return *this > wxLongLongWx(l); } - bool operator==(long l) const - { - return l >= 0 ? (m_hi == 0 && m_lo == (unsigned long)l) - : (m_hi == -1 && m_lo == (unsigned long)l); - } - - bool operator<=(long l) const { return *this < l || *this == l; } - bool operator>=(long l) const { return *this > l || *this == l; } - - friend bool operator<(long l, const wxLongLongWx& ll) { return ll > l; } - friend bool operator>(long l, const wxLongLongWx& ll) { return ll < l; } - friend bool operator<=(long l, const wxLongLongWx& ll) { return ll >= l; } - friend bool operator>=(long l, const wxLongLongWx& ll) { return ll <= l; } - friend bool operator==(long l, const wxLongLongWx& ll) { return ll == l; } - friend bool operator!=(long l, const wxLongLongWx& ll) { return ll != l; } - - // multiplication - wxLongLongWx operator*(const wxLongLongWx& ll) const; - wxLongLongWx& operator*=(const wxLongLongWx& ll); - - // division - wxLongLongWx operator/(const wxLongLongWx& ll) const; - wxLongLongWx& operator/=(const wxLongLongWx& ll); - - wxLongLongWx operator%(const wxLongLongWx& ll) const; - - void Divide(const wxLongLongWx& divisor, - wxLongLongWx& quotient, - wxLongLongWx& remainder) const; - - // input/output - - // return the string representation of this number - wxString ToString() const; - - void *asArray() const; - -#if wxUSE_STD_IOSTREAM - friend WXDLLIMPEXP_BASE - std::ostream& operator<<(std::ostream&, const wxLongLongWx&); -#endif // wxUSE_STD_IOSTREAM - - friend WXDLLIMPEXP_BASE - wxString& operator<<(wxString&, const wxLongLongWx&); - -#if wxUSE_STREAMS - friend WXDLLIMPEXP_BASE - class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxLongLongWx&); - friend WXDLLIMPEXP_BASE - class wxTextInputStream& operator>>(class wxTextInputStream&, wxLongLongWx&); - -#if wxUSE_LONGLONG_NATIVE - friend WXDLLIMPEXP_BASE - class wxTextOutputStream &operator<<(class wxTextOutputStream &stream, wxLongLong_t value); - friend WXDLLIMPEXP_BASE - class wxTextInputStream &operator>>(class wxTextInputStream &stream, wxLongLong_t &value); -#endif // wxUSE_LONGLONG_NATIVE -#endif // wxUSE_STREAMS - -private: - // long is at least 32 bits, so represent our 64bit number as 2 longs - - long m_hi; // signed bit is in the high part - unsigned long m_lo; - -#ifdef wxLONGLONG_TEST_MODE - void Check() - { - wxASSERT( (m_ll >> 32) == m_hi && (unsigned long)m_ll == m_lo ); - } - - wxLongLong_t m_ll; -#endif // wxLONGLONG_TEST_MODE -}; - - -class WXDLLIMPEXP_BASE wxULongLongWx -{ -public: - // ctors - // default ctor initializes to 0 - wxULongLongWx() - { - m_lo = m_hi = 0; - -#ifdef wxLONGLONG_TEST_MODE - m_ll = 0; - - Check(); -#endif // wxLONGLONG_TEST_MODE - } - // from ulong - wxULongLongWx(unsigned long l) { *this = l; } - // from 2 ulongs - wxULongLongWx(unsigned long hi, unsigned long lo) - { - m_hi = hi; - m_lo = lo; - -#ifdef wxLONGLONG_TEST_MODE - m_ll = hi; - m_ll <<= 32; - m_ll |= lo; - - Check(); -#endif // wxLONGLONG_TEST_MODE - } - - // from signed to unsigned - wxULongLongWx(wxLongLongWx ll) - { - wxASSERT(ll.GetHi() >= 0); - m_hi = (unsigned long)ll.GetHi(); - m_lo = ll.GetLo(); - } - - // default copy ctor is ok in both cases - - // no dtor - - // assignment operators - // from long - wxULongLongWx& operator=(unsigned long l) - { - m_lo = l; - m_hi = 0; - -#ifdef wxLONGLONG_TEST_MODE - m_ll = l; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; - } - wxULongLongWx& operator=(long l) - { - m_lo = l; - m_hi = (unsigned long) ((l<0) ? -1l : 0); - -#ifdef wxLONGLONG_TEST_MODE - m_ll = (wxULongLong_t) (wxLongLong_t) l; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; - } - wxULongLongWx& operator=(const class wxLongLongWx &ll) { - // Should we use an assert like it was before in the constructor? - // wxASSERT(ll.GetHi() >= 0); - m_hi = (unsigned long)ll.GetHi(); - m_lo = ll.GetLo(); - return *this; - } - - // can't have assignment operator from 2 longs - - // accessors - // get high part - unsigned long GetHi() const { return m_hi; } - // get low part - unsigned long GetLo() const { return m_lo; } - - // convert to long with range checking in debug mode (only!) - unsigned long ToULong() const - { - wxASSERT_MSG( m_hi == 0ul, - wxT("wxULongLong to long conversion loss of precision") ); - - return (unsigned long)m_lo; - } - - // convert to double - double ToDouble() const; - - // operations - // addition - wxULongLongWx operator+(const wxULongLongWx& ll) const; - wxULongLongWx& operator+=(const wxULongLongWx& ll); - wxULongLongWx operator+(unsigned long l) const; - wxULongLongWx& operator+=(unsigned long l); - friend wxULongLongWx operator+(unsigned long l, const wxULongLongWx& ull) - { return ull + l; } - - // pre increment operator - wxULongLongWx& operator++(); - - // post increment operator - wxULongLongWx& operator++(int) { return ++(*this); } - - // subtraction - wxLongLongWx operator-(const wxULongLongWx& ll) const; - wxULongLongWx& operator-=(const wxULongLongWx& ll); - - friend wxLongLongWx operator-(unsigned long l, const wxULongLongWx& ull) - { - const wxULongLongWx ret = wxULongLongWx(l) - ull; - return wxLongLongWx((wxInt32)ret.GetHi(),ret.GetLo()); - } - - - // pre decrement operator - wxULongLongWx& operator--(); - - // post decrement operator - wxULongLongWx& operator--(int) { return --(*this); } - - // shifts - // left shift - wxULongLongWx operator<<(int shift) const; - wxULongLongWx& operator<<=(int shift); - - // right shift - wxULongLongWx operator>>(int shift) const; - wxULongLongWx& operator>>=(int shift); - - // bitwise operators - wxULongLongWx operator&(const wxULongLongWx& ll) const; - wxULongLongWx& operator&=(const wxULongLongWx& ll); - wxULongLongWx operator|(const wxULongLongWx& ll) const; - wxULongLongWx& operator|=(const wxULongLongWx& ll); - wxULongLongWx operator^(const wxULongLongWx& ll) const; - wxULongLongWx& operator^=(const wxULongLongWx& ll); - wxULongLongWx operator~() const; - - // comparison - bool operator==(const wxULongLongWx& ll) const - { return m_lo == ll.m_lo && m_hi == ll.m_hi; } - bool operator!=(const wxULongLongWx& ll) const - { return !(*this == ll); } - bool operator<(const wxULongLongWx& ll) const; - bool operator>(const wxULongLongWx& ll) const; - bool operator<=(const wxULongLongWx& ll) const - { return *this < ll || *this == ll; } - bool operator>=(const wxULongLongWx& ll) const - { return *this > ll || *this == ll; } - - bool operator<(unsigned long l) const { return *this < wxULongLongWx(l); } - bool operator>(unsigned long l) const { return *this > wxULongLongWx(l); } - bool operator==(unsigned long l) const - { - return (m_hi == 0 && m_lo == (unsigned long)l); - } - - bool operator<=(unsigned long l) const { return *this < l || *this == l; } - bool operator>=(unsigned long l) const { return *this > l || *this == l; } - - friend bool operator<(unsigned long l, const wxULongLongWx& ull) { return ull > l; } - friend bool operator>(unsigned long l, const wxULongLongWx& ull) { return ull < l; } - friend bool operator<=(unsigned long l, const wxULongLongWx& ull) { return ull >= l; } - friend bool operator>=(unsigned long l, const wxULongLongWx& ull) { return ull <= l; } - friend bool operator==(unsigned long l, const wxULongLongWx& ull) { return ull == l; } - friend bool operator!=(unsigned long l, const wxULongLongWx& ull) { return ull != l; } - - // multiplication - wxULongLongWx operator*(const wxULongLongWx& ll) const; - wxULongLongWx& operator*=(const wxULongLongWx& ll); - - // division - wxULongLongWx operator/(const wxULongLongWx& ll) const; - wxULongLongWx& operator/=(const wxULongLongWx& ll); - - wxULongLongWx operator%(const wxULongLongWx& ll) const; - - void Divide(const wxULongLongWx& divisor, - wxULongLongWx& quotient, - wxULongLongWx& remainder) const; - - // input/output - - // return the string representation of this number - wxString ToString() const; - - void *asArray() const; - -#if wxUSE_STD_IOSTREAM - friend WXDLLIMPEXP_BASE - std::ostream& operator<<(std::ostream&, const wxULongLongWx&); -#endif // wxUSE_STD_IOSTREAM - - friend WXDLLIMPEXP_BASE - wxString& operator<<(wxString&, const wxULongLongWx&); - -#if wxUSE_STREAMS - friend WXDLLIMPEXP_BASE - class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxULongLongWx&); - friend WXDLLIMPEXP_BASE - class wxTextInputStream& operator>>(class wxTextInputStream&, wxULongLongWx&); - -#if wxUSE_LONGLONG_NATIVE - friend WXDLLIMPEXP_BASE - class wxTextOutputStream &operator<<(class wxTextOutputStream &stream, wxULongLong_t value); - friend WXDLLIMPEXP_BASE - class wxTextInputStream &operator>>(class wxTextInputStream &stream, wxULongLong_t &value); -#endif // wxUSE_LONGLONG_NATIVE -#endif // wxUSE_STREAMS - -private: - // long is at least 32 bits, so represent our 64bit number as 2 longs - - unsigned long m_hi; - unsigned long m_lo; - -#ifdef wxLONGLONG_TEST_MODE - void Check() - { - wxASSERT( (m_ll >> 32) == m_hi && (unsigned long)m_ll == m_lo ); - } - - wxULongLong_t m_ll; -#endif // wxLONGLONG_TEST_MODE -}; - -#endif // wxUSE_LONGLONG_WX - // ---------------------------------------------------------------------------- // Specialize numeric_limits<> for our long long wrapper classes. // ---------------------------------------------------------------------------- -#if wxUSE_LONGLONG_NATIVE - #include namespace std { -#ifdef __clang__ - // libstdc++ (used by Clang) uses struct for numeric_limits; unlike gcc, clang - // warns about this - template<> struct numeric_limits : public numeric_limits {}; - template<> struct numeric_limits : public numeric_limits {}; -#else - template<> class numeric_limits : public numeric_limits {}; - template<> class numeric_limits : public numeric_limits {}; -#endif +template<> struct numeric_limits : numeric_limits {}; +template<> struct numeric_limits : numeric_limits {}; } // namespace std -#endif // wxUSE_LONGLONG_NATIVE - // ---------------------------------------------------------------------------- // Specialize wxArgNormalizer to allow using wxLongLong directly with wx pseudo // vararg functions. @@ -1158,6 +550,10 @@ struct WXDLLIMPEXP_BASE wxArgNormalizer wxLongLong m_value; }; -#endif // wxUSE_LONGLONG +// Compatibility typedefs: these types were never supposed to be used outside +// of wx itself but nevertheless appear in the existing code, so define them to +// let it continue to build. +using wxLongLongNative = wxLongLong; +using wxULongLongNative = wxULongLong; #endif // _WX_LONGLONG_H diff --git a/include/wx/meta/implicitconversion.h b/include/wx/meta/implicitconversion.h index 2207cb193be4..5703074b5f50 100644 --- a/include/wx/meta/implicitconversion.h +++ b/include/wx/meta/implicitconversion.h @@ -51,10 +51,8 @@ WX_TYPE_HIERARCHY_LEVEL( 5, int); WX_TYPE_HIERARCHY_LEVEL( 6, unsigned int); WX_TYPE_HIERARCHY_LEVEL( 7, long); WX_TYPE_HIERARCHY_LEVEL( 8, unsigned long); -#ifdef wxLongLong_t WX_TYPE_HIERARCHY_LEVEL( 9, wxLongLong_t); WX_TYPE_HIERARCHY_LEVEL(10, wxULongLong_t); -#endif WX_TYPE_HIERARCHY_LEVEL(11, float); WX_TYPE_HIERARCHY_LEVEL(12, double); WX_TYPE_HIERARCHY_LEVEL(13, long double); diff --git a/include/wx/meta/pod.h b/include/wx/meta/pod.h index fa4395c62a4c..8555c2ff5118 100644 --- a/include/wx/meta/pod.h +++ b/include/wx/meta/pod.h @@ -48,10 +48,8 @@ WX_DECLARE_TYPE_POD(long double) #if wxWCHAR_T_IS_REAL_TYPE WX_DECLARE_TYPE_POD(wchar_t) #endif -#ifdef wxLongLong_t WX_DECLARE_TYPE_POD(wxLongLong_t) WX_DECLARE_TYPE_POD(wxULongLong_t) -#endif // pointers are Plain Old Data: template diff --git a/include/wx/modalhook.h b/include/wx/modalhook.h index cad939034596..2d8b511a9f4c 100644 --- a/include/wx/modalhook.h +++ b/include/wx/modalhook.h @@ -44,12 +44,24 @@ class WXDLLIMPEXP_CORE wxModalDialogHook // Called from wxWidgets code before showing any modal dialogs and calls // Enter() for every registered hook. + // + // Also maintains the count of currently open modal dialogs as a side + // effect. static int CallEnter(wxDialog* dialog); // Called from wxWidgets code after dismissing the dialog and calls Exit() // for every registered hook. + // + // As CallEnter(), this function also updates the count of currently open + // modal dialogs. static void CallExit(wxDialog* dialog); + // Return the number of currently open modal dialogs. + // + // Mostly this function is used to check if there are any open modal + // dialogs by comparing its result with 0. + static int GetOpenCount() { return ms_countOpen; } + protected: // Called by wxWidgets before showing any modal dialogs, override this to // be notified about this and return anything but wxID_NONE to skip showing @@ -69,6 +81,9 @@ class WXDLLIMPEXP_CORE wxModalDialogHook typedef wxVector Hooks; static Hooks ms_hooks; + // The number of currently open modal dialogs. + static int ms_countOpen; + wxDECLARE_NO_COPY_CLASS(wxModalDialogHook); }; diff --git a/include/wx/msw/colour.h b/include/wx/msw/colour.h index e73b8a4fe5f0..0ed4c6046117 100644 --- a/include/wx/msw/colour.h +++ b/include/wx/msw/colour.h @@ -16,7 +16,7 @@ // Colour // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxColour : public wxColourBase +class WXDLLIMPEXP_CORE wxWARN_UNUSED wxColour : public wxColourBase { public: // constructors diff --git a/include/wx/msw/datetimectrl.h b/include/wx/msw/datetimectrl.h index 178cdb998fb0..989902171a61 100644 --- a/include/wx/msw/datetimectrl.h +++ b/include/wx/msw/datetimectrl.h @@ -51,6 +51,9 @@ class WXDLLIMPEXP_ADV wxDateTimePickerCtrl : public wxDateTimePickerCtrlBase #if wxUSE_INTL // Override to return the date/time format used by this control. virtual wxLocaleInfo MSWGetFormat() const = 0; + + // Set the format used by the native control. + void MSWSetTimeFormat(wxLocaleInfo index); #endif // wxUSE_INTL // Override to indicate whether we can have no date at all. diff --git a/include/wx/msw/notebook.h b/include/wx/msw/notebook.h index c38508d4edb4..c1bb354906ee 100644 --- a/include/wx/msw/notebook.h +++ b/include/wx/msw/notebook.h @@ -81,8 +81,8 @@ class WXDLLIMPEXP_CORE wxNotebook : public wxNotebookBase // remove all pages bool DeleteAllPages() override; - // inserts a new page to the notebook (it will be deleted ny the notebook, - // don't delete it yourself). If bSelect, this page becomes active. + // inserts a new page to the notebook (it will be deleted by the notebook, + // don't delete it yourself). If bSelect is true, this page becomes active. bool InsertPage(size_t nPage, wxNotebookPage *pPage, const wxString& strText, diff --git a/include/wx/msw/private/listboxitem.h b/include/wx/msw/private/listboxitem.h new file mode 100644 index 000000000000..a1675a8b2727 --- /dev/null +++ b/include/wx/msw/private/listboxitem.h @@ -0,0 +1,56 @@ +/////////////////////////////////////////////////////////////////////////////// +// Name: wx/msw/private/listboxitem.h +// Purpose: Declaration of the wxListBoxItem class. +// Author: Vadim Zeitlin +// Created: 2024-10-27 (extracted from src/msw/listbox.cpp) +// Copyright: (c) 2024 Vadim Zeitlin +// Licence: wxWindows licence +/////////////////////////////////////////////////////////////////////////////// + +#ifndef _WX_MSW_PRIVATE_LISTBOXITEM_H_ +#define _WX_MSW_PRIVATE_LISTBOXITEM_H_ + +#include "wx/ownerdrw.h" + +// ---------------------------------------------------------------------------- +// wxListBoxItemBase: base class for wxListBoxItem and wxCheckListBoxItem +// ---------------------------------------------------------------------------- + +// The template parameter is the control containing these items. +template +class wxListBoxItemBase : public wxOwnerDrawn +{ +public: + using Control = T; + + explicit wxListBoxItemBase(Control *parent) + { m_parent = parent; } + + Control *GetParent() const + { return m_parent; } + + int GetIndex() const + { return m_parent->GetItemIndex(const_cast(this)); } + + wxString GetName() const override + { return m_parent->GetString(GetIndex()); } + +protected: + void + GetColourToUse(wxODStatus stat, + wxColour& colText, + wxColour& colBack) const override + { + wxOwnerDrawn::GetColourToUse(stat, colText, colBack); + + // Default background colour for the owner drawn items is the menu one, + // but it's not appropriate for the listboxes, so override it here. + if ( !(stat & wxODSelected) && !GetBackgroundColour().IsOk() ) + colBack = wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX); + } + +private: + Control *m_parent; +}; + +#endif // _WX_MSW_PRIVATE_LISTBOXITEM_H_ diff --git a/include/wx/msw/private/uilocale.h b/include/wx/msw/private/uilocale.h index 730a79c8f00c..0d6136441170 100644 --- a/include/wx/msw/private/uilocale.h +++ b/include/wx/msw/private/uilocale.h @@ -21,4 +21,6 @@ WXDLLIMPEXP_BASE wxString wxTranslateFromUnicodeFormat(const wxString& fmt); +WXDLLIMPEXP_BASE wxString wxGetMSWDateTimeFormat(wxLocaleInfo index); + #endif // _WX_MSW_PRIVATE_UILOCALE_H_ diff --git a/include/wx/msw/private/webrequest_winhttp.h b/include/wx/msw/private/webrequest_winhttp.h index 498473b77fb2..af65e643904e 100644 --- a/include/wx/msw/private/webrequest_winhttp.h +++ b/include/wx/msw/private/webrequest_winhttp.h @@ -30,6 +30,8 @@ class wxWebResponseWinHTTP : public wxWebResponseImpl wxString GetHeader(const wxString& name) const override; + std::vector GetAllHeaderValues(const wxString& name) const override; + int GetStatus() const override; wxString GetStatusText() const override; diff --git a/include/wx/msw/setup.h b/include/wx/msw/setup.h index 937acbc38278..fe30104dfdee 100644 --- a/include/wx/msw/setup.h +++ b/include/wx/msw/setup.h @@ -322,19 +322,6 @@ // non GUI features selection // ---------------------------------------------------------------------------- -// Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit -// integer which is implemented in terms of native 64 bit integers if any or -// uses emulation otherwise. -// -// This class is required by wxDateTime and so you should enable it if you want -// to use wxDateTime. For most modern platforms, it will use the native 64 bit -// integers in which case (almost) all of its functions are inline and it -// almost does not take any space, so there should be no reason to switch it -// off. -// -// Recommended setting: 1 -#define wxUSE_LONGLONG 1 - // Set wxUSE_BASE64 to 1, to compile in Base64 support. This is required for // storing binary data in wxConfig on most platforms. // @@ -421,8 +408,6 @@ // Set wxUSE_DATETIME to 1 to compile the wxDateTime and related classes which // allow to manipulate dates, times and time intervals. // -// Requires: wxUSE_LONGLONG -// // Default is 1 // // Recommended setting: 1 diff --git a/include/wx/msw/textctrl.h b/include/wx/msw/textctrl.h index 97f45501a81e..dd56f32b01d9 100644 --- a/include/wx/msw/textctrl.h +++ b/include/wx/msw/textctrl.h @@ -44,6 +44,7 @@ class WXDLLIMPEXP_CORE wxTextCtrl : public wxTextCtrlBase virtual wxString GetRTFValue() const override; virtual void SetRTFValue(const wxString& val) override; virtual bool IsRTFSupported() override { return IsRich(); } + virtual wxTextSearchResult SearchText(const wxTextSearch& search) const override; #endif // wxUSE_RICHEDIT virtual bool IsEmpty() const; diff --git a/include/wx/msw/timectrl.h b/include/wx/msw/timectrl.h index dd8da5bff2d3..34eb678d2de1 100644 --- a/include/wx/msw/timectrl.h +++ b/include/wx/msw/timectrl.h @@ -10,6 +10,8 @@ #ifndef _WX_MSW_TIMECTRL_H_ #define _WX_MSW_TIMECTRL_H_ +#include "wx/uilocale.h" + // ---------------------------------------------------------------------------- // wxTimePickerCtrl // ---------------------------------------------------------------------------- @@ -39,12 +41,7 @@ class WXDLLIMPEXP_ADV wxTimePickerCtrl : public wxTimePickerCtrlBase const wxSize& size = wxDefaultSize, long style = wxTP_DEFAULT, const wxValidator& validator = wxDefaultValidator, - const wxString& name = wxTimePickerCtrlNameStr) - { - return MSWCreateDateTimePicker(parent, id, dt, - pos, size, style, - validator, name); - } + const wxString& name = wxTimePickerCtrlNameStr); // Override MSW-specific functions used during control creation. virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const override; diff --git a/include/wx/msw/window.h b/include/wx/msw/window.h index dcf558d559d3..e24d34a29dd4 100644 --- a/include/wx/msw/window.h +++ b/include/wx/msw/window.h @@ -574,6 +574,10 @@ class WXDLLIMPEXP_CORE wxWindowMSW : public wxWindowBase // Find the menu corresponding to the given handle. virtual wxMenu* MSWFindMenuFromHMENU(WXHMENU hMenu); + + // Find the the current menu item using the given handle and the item id + virtual wxMenuItem* MSWFindMenuItemFromHMENU(WXHMENU hMenu, int nItem); + #endif // wxUSE_MENUS && !__WXUNIVERSAL__ // Return the default button for the TLW containing this window or nullptr if diff --git a/include/wx/object.h b/include/wx/object.h index 4ce9e0f8e6f4..085f53a28f45 100644 --- a/include/wx/object.h +++ b/include/wx/object.h @@ -147,10 +147,9 @@ name##PluginSentinel m_pluginsentinel // note that it still has different semantics from dynamic_cast<> and so can't // be replaced by it as long as there are any compilers not supporting it #define wxDynamicCast(obj, className) \ - ((className *) wxCheckDynamicCast( \ - const_cast(static_cast(\ - const_cast(static_cast(obj)))), \ - &className::ms_classInfo)) + (static_cast(wxCheckDynamicCast( \ + const_cast(static_cast(obj)), \ + &className::ms_classInfo))) // The 'this' pointer is always true, so use this version // to cast the this pointer and avoid compiler warnings. diff --git a/include/wx/osx/core/colour.h b/include/wx/osx/core/colour.h index 0346a64f276a..85dcdc937224 100644 --- a/include/wx/osx/core/colour.h +++ b/include/wx/osx/core/colour.h @@ -18,7 +18,7 @@ struct RGBColor; // Colour -class WXDLLIMPEXP_CORE wxColour: public wxColourBase +class WXDLLIMPEXP_CORE wxWARN_UNUSED wxColour: public wxColourBase { public: // constructors diff --git a/include/wx/osx/iphone/private.h b/include/wx/osx/iphone/private.h index 023ab9be4883..be5c093d20ad 100644 --- a/include/wx/osx/iphone/private.h +++ b/include/wx/osx/iphone/private.h @@ -185,7 +185,7 @@ public : virtual wxContentProtection GetContentProtection() const override { return wxCONTENT_PROTECTION_NONE; } - virtual bool SetContentProtection(wxContentProtection contentProtection) override + virtual bool SetContentProtection(wxContentProtection WXUNUSED(contentProtection)) override { return false; } virtual void RequestUserAttention(int flags) override; diff --git a/include/wx/osx/private/uilocale.h b/include/wx/osx/private/uilocale.h new file mode 100644 index 000000000000..cba9c9e5c995 --- /dev/null +++ b/include/wx/osx/private/uilocale.h @@ -0,0 +1,21 @@ +/////////////////////////////////////////////////////////////////////////////// +// Name: wx/osx/private/uilocale.h +// Purpose: Helper for making pointer to current NSLocale available +// for locale-dependent controls under macOS. +// Author: Ulrich Telle +// Created: 2023-10-13 +// Copyright: (c) 2023 Vadim Zeitlin +// Licence: wxWindows licence +/////////////////////////////////////////////////////////////////////////////// + +#ifndef _WX_OSX_PRIVATE_UILOCALE_H_ +#define _WX_OSX_PRIVATE_UILOCALE_H_ + +#if wxUSE_INTL + +// Function returning a pointer to the current NSLocale +WXDLLIMPEXP_BASE NSLocale* wxGetCurrentNSLocale(); + +#endif + +#endif // _WX_OSX_PRIVATE_UILOCALE_H_ diff --git a/include/wx/osx/private/webrequest_urlsession.h b/include/wx/osx/private/webrequest_urlsession.h index dceb02ab1c2e..d83a7470681c 100644 --- a/include/wx/osx/private/webrequest_urlsession.h +++ b/include/wx/osx/private/webrequest_urlsession.h @@ -61,6 +61,8 @@ class wxWebResponseURLSession : public wxWebResponseImpl wxString GetHeader(const wxString& name) const override; + std::vector GetAllHeaderValues(const wxString& name) const override; + int GetStatus() const override; wxString GetStatusText() const override; diff --git a/include/wx/osx/setup.h b/include/wx/osx/setup.h index 2a9f41ea5055..6d2abd6fc5d7 100644 --- a/include/wx/osx/setup.h +++ b/include/wx/osx/setup.h @@ -329,19 +329,6 @@ // non GUI features selection // ---------------------------------------------------------------------------- -// Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit -// integer which is implemented in terms of native 64 bit integers if any or -// uses emulation otherwise. -// -// This class is required by wxDateTime and so you should enable it if you want -// to use wxDateTime. For most modern platforms, it will use the native 64 bit -// integers in which case (almost) all of its functions are inline and it -// almost does not take any space, so there should be no reason to switch it -// off. -// -// Recommended setting: 1 -#define wxUSE_LONGLONG 1 - // Set wxUSE_BASE64 to 1, to compile in Base64 support. This is required for // storing binary data in wxConfig on most platforms. // @@ -428,8 +415,6 @@ // Set wxUSE_DATETIME to 1 to compile the wxDateTime and related classes which // allow to manipulate dates, times and time intervals. // -// Requires: wxUSE_LONGLONG -// // Default is 1 // // Recommended setting: 1 diff --git a/include/wx/pickerbase.h b/include/wx/pickerbase.h index 3bfcac1f2f76..a10f42506206 100644 --- a/include/wx/pickerbase.h +++ b/include/wx/pickerbase.h @@ -34,9 +34,7 @@ extern WXDLLIMPEXP_DATA_CORE(const char) wxButtonNameStr[]; class WXDLLIMPEXP_CORE wxPickerBase : public wxNavigationEnabled { public: - // ctor: text is the associated text control - wxPickerBase() : m_text(nullptr), m_picker(nullptr), m_sizer(nullptr) - { } + wxPickerBase() = default; virtual ~wxPickerBase() = default; @@ -92,10 +90,16 @@ class WXDLLIMPEXP_CORE wxPickerBase : public wxNavigationEnabled wxControl *GetPickerCtrl() { return m_picker; } + // It's not clear why did these functions ever existed, but they can't be + // used, both controls are, and can be, managed only by the picker itself. +#ifdef WXWIN_COMPATIBILITY_3_2 + wxDEPRECATED_MSG("must not be used, text control is managed internally") void SetTextCtrl(wxTextCtrl* text) { m_text = text; } + wxDEPRECATED_MSG("must not be used, picker control is managed internally") void SetPickerCtrl(wxControl* picker) { m_picker = picker; } +#endif // WXWIN_COMPATIBILITY_3_2 // methods that derived class must/may override virtual void UpdatePickerFromTextCtrl() = 0; @@ -109,7 +113,6 @@ class WXDLLIMPEXP_CORE wxPickerBase : public wxNavigationEnabled // event handlers - void OnTextCtrlDelete(wxWindowDestroyEvent &); void OnTextCtrlUpdate(wxCommandEvent &); void OnTextCtrlKillFocus(wxFocusEvent &); @@ -154,9 +157,9 @@ class WXDLLIMPEXP_CORE wxPickerBase : public wxNavigationEnabled void PostCreation(); protected: - wxTextCtrl *m_text; // can be null - wxControl *m_picker; - wxBoxSizer *m_sizer; + wxTextCtrl *m_text = nullptr; // can be null + wxControl *m_picker = nullptr; + wxBoxSizer *m_sizer = nullptr; private: // Common implementation of Set{Text,Picker}CtrlGrowable(). diff --git a/include/wx/private/webrequest.h b/include/wx/private/webrequest.h index 339c442369fc..04b8ed0d7247 100644 --- a/include/wx/private/webrequest.h +++ b/include/wx/private/webrequest.h @@ -16,10 +16,11 @@ #include #include +#include class WXDLLIMPEXP_FWD_BASE wxURI; -using wxWebRequestHeaderMap = std::unordered_map; +using wxWebRequestHeaderMap = std::unordered_map>; // Trace mask used for the messages in wxWebRequest code. #define wxTRACE_WEBREQUEST "webrequest" @@ -62,7 +63,15 @@ class wxWebRequestImpl : public wxRefCounterMT virtual ~wxWebRequestImpl() = default; void SetHeader(const wxString& name, const wxString& value) - { m_headers[name] = value; } + { + if (value.empty()) + m_headers.erase(name); + else + m_headers[name] = { value }; + } + + void AddHeader(const wxString& name, const wxString& value) + { m_headers[name].push_back(value); } void SetMethod(const wxString& method) { m_method = method; } @@ -220,6 +229,8 @@ class wxWebResponseImpl : public wxRefCounterMT virtual wxString GetHeader(const wxString& name) const = 0; + virtual std::vector GetAllHeaderValues(const wxString& name) const = 0; + virtual wxString GetMimeType() const; virtual wxString GetContentType() const; @@ -319,8 +330,16 @@ class wxWebSessionImpl : public wxRefCounterMT bool SetBaseURL(const wxString& url); const wxURI* GetBaseURL() const; + void SetCommonHeader(const wxString& name, const wxString& value) + { + if (value.empty()) + m_headers.erase(name); + else + m_headers[name] = { value }; + } + void AddCommonHeader(const wxString& name, const wxString& value) - { m_headers[name] = value; } + { m_headers[name].push_back(value); } void SetTempDir(const wxString& dir) { m_tempDir = dir; } diff --git a/include/wx/private/webrequest_curl.h b/include/wx/private/webrequest_curl.h index 4d72270035b7..2373fe7dc71a 100644 --- a/include/wx/private/webrequest_curl.h +++ b/include/wx/private/webrequest_curl.h @@ -131,6 +131,8 @@ class wxWebResponseCURL : public wxWebResponseImpl wxString GetHeader(const wxString& name) const override; + std::vector GetAllHeaderValues(const wxString& name) const override; + int GetStatus() const override; wxString GetStatusText() const override { return m_statusText; } @@ -204,7 +206,7 @@ class wxWebSessionSyncCURL : public wxWebSessionBaseCURL }; // Async session implementation uses libcurl "multi" API. -class wxWebSessionCURL : public wxWebSessionBaseCURL, public wxEvtHandler +class wxWebSessionCURL : public wxEvtHandler, public wxWebSessionBaseCURL { public: wxWebSessionCURL(); diff --git a/include/wx/private/wxprintf.h b/include/wx/private/wxprintf.h index cd28e2b6cbff..b75d2759ab2b 100644 --- a/include/wx/private/wxprintf.h +++ b/include/wx/private/wxprintf.h @@ -56,9 +56,7 @@ enum wxPrintfArgType wxPAT_INT, // %d, %i, %o, %u, %x, %X wxPAT_LONGINT, // %ld, etc -#ifdef wxLongLong_t wxPAT_LONGLONGINT, // %Ld, etc -#endif wxPAT_SIZET, // %zd, etc wxPAT_DOUBLE, // %e, %E, %f, %g, %G @@ -84,9 +82,7 @@ union wxPrintfArg { int pad_int; // %d, %i, %o, %u, %x, %X long int pad_longint; // %ld, etc -#ifdef wxLongLong_t wxLongLong_t pad_longlongint; // %Ld, etc -#endif size_t pad_sizet; // %zd, etc double pad_double; // %e, %E, %f, %g, %G @@ -397,11 +393,7 @@ bool wxPrintfConvSpec::Parse(const CharType *format) else if (ilen == 1) m_type = wxPAT_LONGINT; else if (ilen == 2) -#ifdef wxLongLong_t m_type = wxPAT_LONGLONGINT; -#else // !wxLongLong_t - m_type = wxPAT_LONGINT; -#endif // wxLongLong_t/!wxLongLong_t else if (ilen == 3) m_type = wxPAT_SIZET; done = true; @@ -544,11 +536,9 @@ bool wxPrintfConvSpec::LoadArg(wxPrintfArg *p, va_list &argptr) case wxPAT_LONGINT: p->pad_longint = va_arg(argptr, long int); break; -#ifdef wxLongLong_t case wxPAT_LONGLONGINT: p->pad_longlongint = va_arg(argptr, wxLongLong_t); break; -#endif // wxLongLong_t case wxPAT_SIZET: p->pad_sizet = va_arg(argptr, size_t); break; @@ -623,11 +613,9 @@ int wxPrintfConvSpec::Process(CharType *buf, size_t lenMax, wxPrintfAr lenScratch = system_sprintf(szScratch, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN, m_szFlags, p->pad_longint); break; -#ifdef wxLongLong_t case wxPAT_LONGLONGINT: lenScratch = system_sprintf(szScratch, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN, m_szFlags, p->pad_longlongint); break; -#endif // SIZEOF_LONG_LONG case wxPAT_SIZET: lenScratch = system_sprintf(szScratch, wxMAX_SVNPRINTF_SCRATCHBUFFER_LEN, m_szFlags, p->pad_sizet); @@ -734,9 +722,7 @@ int wxPrintfConvSpec::Process(CharType *buf, size_t lenMax, wxPrintfAr { case wxPAT_INT: case wxPAT_LONGINT: -#ifdef wxLongLong_t case wxPAT_LONGLONGINT: -#endif case wxPAT_SIZET: case wxPAT_LONGDOUBLE: case wxPAT_DOUBLE: diff --git a/include/wx/propgrid/propgriddefs.h b/include/wx/propgrid/propgriddefs.h index 0ee66de466b1..50e7ca3e3adb 100644 --- a/include/wx/propgrid/propgriddefs.h +++ b/include/wx/propgrid/propgriddefs.h @@ -426,12 +426,10 @@ template<> inline wxVariant WXVARIANT( const wxArrayString& value ) { return wxVariant(value); } template<> inline wxVariant WXVARIANT( const wxString& value ) { return wxVariant(value); } -#if wxUSE_LONGLONG template<> inline wxVariant WXVARIANT( const wxLongLong& value ) { return wxVariant(value); } template<> inline wxVariant WXVARIANT( const wxULongLong& value ) { return wxVariant(value); } -#endif #if wxUSE_DATETIME template<> inline wxVariant WXVARIANT( const wxDateTime& value ) { return wxVariant(value); } @@ -600,10 +598,8 @@ template<> inline wxVariant WXVARIANT( const wxColour& value ) #if wxUSE_DATETIME #define wxPG_VARIANT_TYPE_DATETIME wxS("datetime") #endif -#if wxUSE_LONGLONG #define wxPG_VARIANT_TYPE_LONGLONG wxS("longlong") #define wxPG_VARIANT_TYPE_ULONGLONG wxS("ulonglong") -#endif #endif // !SWIG // ----------------------------------------------------------------------- diff --git a/include/wx/propgrid/propgridiface.h b/include/wx/propgrid/propgridiface.h index ff392782bf09..768696b8de4d 100644 --- a/include/wx/propgrid/propgridiface.h +++ b/include/wx/propgrid/propgridiface.h @@ -535,11 +535,9 @@ class WXDLLIMPEXP_PROPGRID wxPropertyGridInterface wxArrayString GetPropertyValueAsArrayString(wxPGPropArg id) const; -#if defined(wxLongLong_t) && wxUSE_LONGLONG wxLongLong_t GetPropertyValueAsLongLong(wxPGPropArg id) const; wxULongLong_t GetPropertyValueAsULongLong(wxPGPropArg id) const; -#endif wxArrayInt GetPropertyValueAsArrayInt(wxPGPropArg id) const; @@ -1084,36 +1082,30 @@ class WXDLLIMPEXP_PROPGRID wxPropertyGridInterface SetPropVal( id, v ); } -#if wxUSE_LONGLONG -#ifdef wxLongLong_t // Sets value (native 64-bit int) of a property. void SetPropertyValue(wxPGPropArg id, wxLongLong_t value) { wxVariant v = wxLongLong(value); SetPropVal(id, v); } -#endif // Sets value (wxLongLong) of a property. void SetPropertyValue( wxPGPropArg id, wxLongLong value ) { wxVariant v(value); SetPropVal( id, v ); } -#ifdef wxULongLong_t // Sets value (native 64-bit unsigned int) of a property. void SetPropertyValue(wxPGPropArg id, wxULongLong_t value) { wxVariant v = wxULongLong(value); SetPropVal(id, v); } -#endif // Sets value (wxULongLong) of a property. void SetPropertyValue( wxPGPropArg id, wxULongLong value ) { wxVariant v(value); SetPropVal( id, v ); } -#endif // Sets value (wxArrayInt&) of a property. void SetPropertyValue( wxPGPropArg id, const wxArrayInt& value ) diff --git a/include/wx/propgrid/props.h b/include/wx/propgrid/props.h index 59a5391dadc9..89951d23bb59 100644 --- a/include/wx/propgrid/props.h +++ b/include/wx/propgrid/props.h @@ -232,11 +232,9 @@ class WXDLLIMPEXP_PROPGRID wxIntProperty : public wxNumericProperty long value = 0 ); virtual ~wxIntProperty() = default; -#if wxUSE_LONGLONG wxIntProperty( const wxString& label, const wxString& name, const wxLongLong& value ); -#endif #if WXWIN_COMPATIBILITY_3_2 wxDEPRECATED_MSG("use ValueToString with 'flags' argument as wxPGPropValFormatFlags") virtual wxString ValueToString(wxVariant& value, int flags) const override @@ -276,12 +274,10 @@ class WXDLLIMPEXP_PROPGRID wxIntProperty : public wxNumericProperty private: // Validation helpers. -#if wxUSE_LONGLONG static bool DoValidation( const wxNumericProperty* property, wxLongLong& value, wxPGValidationInfo* pValidationInfo, wxPGNumericValidationMode = wxPGNumericValidationMode::ErrorMessage); -#endif // wxUSE_LONGLONG static bool DoValidation(const wxNumericProperty* property, long& value, wxPGValidationInfo* pValidationInfo, @@ -300,11 +296,9 @@ class WXDLLIMPEXP_PROPGRID wxUIntProperty : public wxNumericProperty const wxString& name = wxPG_LABEL, unsigned long value = 0 ); virtual ~wxUIntProperty() = default; -#if wxUSE_LONGLONG wxUIntProperty( const wxString& label, const wxString& name, const wxULongLong& value ); -#endif #if WXWIN_COMPATIBILITY_3_2 wxDEPRECATED_MSG("use ValueToString with 'flags' argument as wxPGPropValFormatFlags") virtual wxString ValueToString(wxVariant& value, int flags) const override @@ -351,12 +345,10 @@ class WXDLLIMPEXP_PROPGRID wxUIntProperty : public wxNumericProperty void Init(); // Validation helpers. -#if wxUSE_LONGLONG static bool DoValidation(const wxNumericProperty* property, wxULongLong& value, wxPGValidationInfo* pValidationInfo, wxPGNumericValidationMode = wxPGNumericValidationMode::ErrorMessage); -#endif // wxUSE_LONGLONG static bool DoValidation(const wxNumericProperty* property, long& value, wxPGValidationInfo* pValidationInfo, diff --git a/include/wx/qt/colour.h b/include/wx/qt/colour.h index 2b0157568161..b59d94514ea7 100644 --- a/include/wx/qt/colour.h +++ b/include/wx/qt/colour.h @@ -12,7 +12,7 @@ class QColor; -class WXDLLIMPEXP_CORE wxColour : public wxColourBase +class WXDLLIMPEXP_CORE wxWARN_UNUSED wxColour : public wxColourBase { public: DEFINE_STD_WXCOLOUR_CONSTRUCTORS diff --git a/include/wx/secretstore.h b/include/wx/secretstore.h index 265161d45ca3..777265cde769 100644 --- a/include/wx/secretstore.h +++ b/include/wx/secretstore.h @@ -225,6 +225,7 @@ class wxSecretValue void Init(size_t size, const void *data) { m_data = wxString::From8BitData(static_cast(data), size); + m_valid = true; } wxString m_data; diff --git a/include/wx/setup_inc.h b/include/wx/setup_inc.h index 08f2b344e9fb..a250f8fdecf5 100644 --- a/include/wx/setup_inc.h +++ b/include/wx/setup_inc.h @@ -318,19 +318,6 @@ // non GUI features selection // ---------------------------------------------------------------------------- -// Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit -// integer which is implemented in terms of native 64 bit integers if any or -// uses emulation otherwise. -// -// This class is required by wxDateTime and so you should enable it if you want -// to use wxDateTime. For most modern platforms, it will use the native 64 bit -// integers in which case (almost) all of its functions are inline and it -// almost does not take any space, so there should be no reason to switch it -// off. -// -// Recommended setting: 1 -#define wxUSE_LONGLONG 1 - // Set wxUSE_BASE64 to 1, to compile in Base64 support. This is required for // storing binary data in wxConfig on most platforms. // @@ -417,8 +404,6 @@ // Set wxUSE_DATETIME to 1 to compile the wxDateTime and related classes which // allow to manipulate dates, times and time intervals. // -// Requires: wxUSE_LONGLONG -// // Default is 1 // // Recommended setting: 1 diff --git a/include/wx/sizer.h b/include/wx/sizer.h index d026fbd83890..4b74e614a3ae 100644 --- a/include/wx/sizer.h +++ b/include/wx/sizer.h @@ -613,7 +613,7 @@ class WXDLLIMPEXP_CORE wxSizer: public wxObject, public wxClientDataContainer virtual bool Remove( wxSizer *sizer ); virtual bool Remove( int index ); - virtual bool Detach( wxWindow *window ); + virtual bool Detach( wxWindowBase *window ); virtual bool Detach( wxSizer *sizer ); virtual bool Detach( int index ); @@ -1070,7 +1070,7 @@ class WXDLLIMPEXP_CORE wxStaticBoxSizer: public wxBoxSizer virtual void ShowItems (bool show) override; virtual bool AreAnyItemsShown() const override; - virtual bool Detach( wxWindow *window ) override; + virtual bool Detach( wxWindowBase *window ) override; virtual bool Detach( wxSizer *sizer ) override { return wxBoxSizer::Detach(sizer); } virtual bool Detach( int index ) override { return wxBoxSizer::Detach(index); } diff --git a/include/wx/string.h b/include/wx/string.h index d70bd0139605..0efdf20aebd2 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -2391,11 +2391,9 @@ class WXDLLIMPEXP_BASE wxWARN_UNUSED wxString // convert to an unsigned long bool ToULong(unsigned long *val, int base = 10) const; // convert to wxLongLong -#if defined(wxLongLong_t) bool ToLongLong(wxLongLong_t *val, int base = 10) const; // convert to wxULongLong bool ToULongLong(wxULongLong_t *val, int base = 10) const; -#endif // wxLongLong_t // convert to a double bool ToDouble(double *val) const; diff --git a/include/wx/strvararg.h b/include/wx/strvararg.h index 506ba4bb4e6e..526c761a6f4e 100644 --- a/include/wx/strvararg.h +++ b/include/wx/strvararg.h @@ -183,7 +183,7 @@ class WXDLLIMPEXP_BASE wxFormatString #endif #if defined(SIZEOF_LONG_LONG) && SIZEOF_LONG_LONG == SIZEOF_LONG Arg_LongLongInt = Arg_LongInt, -#elif defined(wxLongLong_t) +#else Arg_LongLongInt = 0x0020, #endif @@ -416,10 +416,8 @@ wxFORMAT_STRING_SPECIFIER(short int, wxFormatString::Arg_Int) wxFORMAT_STRING_SPECIFIER(short unsigned int, wxFormatString::Arg_Int) wxFORMAT_STRING_SPECIFIER(long int, wxFormatString::Arg_LongInt) wxFORMAT_STRING_SPECIFIER(long unsigned int, wxFormatString::Arg_LongInt) -#ifdef wxLongLong_t wxFORMAT_STRING_SPECIFIER(wxLongLong_t, wxFormatString::Arg_LongLongInt) wxFORMAT_STRING_SPECIFIER(wxULongLong_t, wxFormatString::Arg_LongLongInt) -#endif wxFORMAT_STRING_SPECIFIER(float, wxFormatString::Arg_Double) wxFORMAT_STRING_SPECIFIER(double, wxFormatString::Arg_Double) wxFORMAT_STRING_SPECIFIER(long double, wxFormatString::Arg_LongDouble) diff --git a/include/wx/textctrl.h b/include/wx/textctrl.h index 44956d482936..19f89bb36ac0 100644 --- a/include/wx/textctrl.h +++ b/include/wx/textctrl.h @@ -608,6 +608,72 @@ class WXDLLIMPEXP_CORE wxTextAttr wxString m_listStyleName; }; +// ---------------------------------------------------------------------------- +// Search features for wxTextCtrl +// ---------------------------------------------------------------------------- + +// search options +// -------------- +struct wxTextSearch +{ + explicit wxTextSearch(const wxString& text = wxString{}) : m_searchValue(text) {} + + enum class Direction + { + Down, + Up + }; + + wxTextSearch& SearchValue(const wxString& value) + { + m_searchValue = value; + return *this; + } + + wxTextSearch& MatchCase(bool matchCase = true) + { + m_matchCase = matchCase; + return *this; + } + + wxTextSearch& MatchWholeWord(const bool matchWholeWord = true) + { + m_wholeWord = matchWholeWord; + return *this; + } + + wxTextSearch& SearchDirection(const Direction direction) + { + m_direction = direction; + return *this; + } + + wxTextSearch& Start(const long startPosition) + { + m_startingPosition = startPosition; + return *this; + } + + wxString m_searchValue; + long m_startingPosition = -1; + bool m_matchCase = false; + bool m_wholeWord = false; + Direction m_direction = Direction::Down; +}; + +// results from a search operation +// ------------------------------- +struct wxTextSearchResult +{ + explicit operator bool() const { return m_start != wxNOT_FOUND; } + explicit wxTextSearchResult(long startPos, long endPos) : + m_start(startPos), m_end(endPos) {} + wxTextSearchResult() = default; + + long m_start = wxNOT_FOUND; + long m_end = wxNOT_FOUND; +}; + // ---------------------------------------------------------------------------- // wxTextAreaBase: multiline text control specific methods // ---------------------------------------------------------------------------- @@ -698,6 +764,15 @@ class WXDLLIMPEXP_CORE wxTextAreaBase virtual wxString GetRTFValue() const; virtual void SetRTFValue(const wxString& val); + // Searches for text. + // Base class implementations simply asserts, + // the port must override these functions to really implement them. + virtual wxTextSearchResult SearchText(const wxTextSearch& WXUNUSED(search)) const + { + wxFAIL_MSG("Text search not implemented for the current platform."); + return wxTextSearchResult(); + } + protected: // implementation of loading/saving virtual bool DoLoadFile(const wxString& file, int fileType); diff --git a/include/wx/time.h b/include/wx/time.h index b66b1988e52a..65daef67e98b 100644 --- a/include/wx/time.h +++ b/include/wx/time.h @@ -21,25 +21,16 @@ extern long WXDLLIMPEXP_BASE wxGetLocalTime(); // Get number of seconds since GMT 00:00:00, Jan 1st 1970. extern long WXDLLIMPEXP_BASE wxGetUTCTime(); -#if wxUSE_LONGLONG - typedef wxLongLong wxMilliClock_t; - inline long wxMilliClockToLong(wxLongLong ll) { return ll.ToLong(); } -#else - typedef double wxMilliClock_t; - inline long wxMilliClockToLong(double d) { return wx_truncate_cast(long, d); } -#endif // wxUSE_LONGLONG +typedef wxLongLong wxMilliClock_t; +inline long wxMilliClockToLong(wxLongLong ll) { return ll.ToLong(); } // Get number of milliseconds since local time 00:00:00 Jan 1st 1970 extern wxMilliClock_t WXDLLIMPEXP_BASE wxGetLocalTimeMillis(); -#if wxUSE_LONGLONG - // Get the number of milliseconds or microseconds since the Epoch. wxLongLong WXDLLIMPEXP_BASE wxGetUTCTimeMillis(); wxLongLong WXDLLIMPEXP_BASE wxGetUTCTimeUSec(); -#endif // wxUSE_LONGLONG - #define wxGetCurrentTime() wxGetLocalTime() // on some really old systems gettimeofday() doesn't have the second argument, diff --git a/include/wx/tokenzr.h b/include/wx/tokenzr.h index cd03b25cea5c..6dd25ad366b8 100644 --- a/include/wx/tokenzr.h +++ b/include/wx/tokenzr.h @@ -37,7 +37,7 @@ enum wxStringTokenizerMode // wxStringTokenizer: replaces infamous strtok() and has some other features // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_BASE wxStringTokenizer : public wxObject +class WXDLLIMPEXP_BASE wxWARN_UNUSED wxStringTokenizer : public wxObject { public: // ctors and initializers diff --git a/include/wx/translation.h b/include/wx/translation.h index aaa55571d422..d207c5e83030 100644 --- a/include/wx/translation.h +++ b/include/wx/translation.h @@ -50,9 +50,10 @@ using wxTranslationsHashMap = std::unordered_map; #else #define _(s) wxGetTranslation(wxASCII_STR(s)) #endif - #define wxPLURAL(sing, plur, n) wxGetTranslation((sing), (plur), n) #endif +#define wxPLURAL(sing, plur, n) wxGetTranslation((sing), (plur), n) + // wx-specific macro for translating strings in the given context: if you use // them, you need to also add // --keyword="wxGETTEXT_IN_CONTEXT:1c,2" --keyword="wxGETTEXT_IN_CONTEXT_PLURAL:1c,2,3" @@ -60,12 +61,14 @@ using wxTranslationsHashMap = std::unordered_map; #ifndef wxNO_IMPLICIT_WXSTRING_ENCODING #define wxGETTEXT_IN_CONTEXT(c, s) \ wxGetTranslation((s), wxString(), c) +#define wxGETTEXT_IN_CONTEXT_PLURAL(c, sing, plur, n) \ + wxGetTranslation((sing), (plur), n, wxString(), c) #else #define wxGETTEXT_IN_CONTEXT(c, s) \ - wxGetTranslation(wxASCII_STR(s), wxString(), c) -#endif + wxGetTranslation(wxASCII_STR(s), wxString(), wxASCII_STR(c)) #define wxGETTEXT_IN_CONTEXT_PLURAL(c, sing, plur, n) \ - wxGetTranslation((sing), (plur), n, wxString(), c) + wxGetTranslation(wxASCII_STR(sing), wxASCII_STR(plur), n, wxString(), wxASCII_STR(c)) +#endif // another one which just marks the strings for extraction, but doesn't // perform the translation (use -kwxTRANSLATE with xgettext!) diff --git a/include/wx/types.h b/include/wx/types.h index 2105dfe8febb..dc67d67cd927 100644 --- a/include/wx/types.h +++ b/include/wx/types.h @@ -263,41 +263,29 @@ typedef wxUint32 wxDword; #define wxLongLongSuffix l #define wxLongLongFmtSpec "l" #define wxLongLongIsLong +#else + #error "64-bit integer type must be available." #endif +#define wxULongLong_t unsigned wxLongLong_t -#ifdef wxLongLong_t - #define wxULongLong_t unsigned wxLongLong_t - - /* - wxLL() and wxULL() macros allow to define 64 bit constants in a - portable way. - */ - #define wxLL(x) wxCONCAT(x, wxLongLongSuffix) - #define wxULL(x) wxCONCAT(x, wxCONCAT(u, wxLongLongSuffix)) - - typedef wxLongLong_t wxInt64; - typedef wxULongLong_t wxUint64; - - #define wxHAS_INT64 1 - - #ifndef wxLongLongIsLong - #define wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG - #endif -#elif wxUSE_LONGLONG - /* these macros allow to define 64 bit constants in a portable way */ - #define wxLL(x) wxLongLong(x) - #define wxULL(x) wxULongLong(x) - - #define wxInt64 wxLongLong - #define wxUint64 wxULongLong - - #define wxHAS_INT64 1 +/* + wxLL() and wxULL() macros allow to define 64 bit constants in a + portable way. + */ +#define wxLL(x) wxCONCAT(x, wxLongLongSuffix) +#define wxULL(x) wxCONCAT(x, wxCONCAT(u, wxLongLongSuffix)) -#else /* !wxUSE_LONGLONG */ +typedef wxLongLong_t wxInt64; +typedef wxULongLong_t wxUint64; - #define wxHAS_INT64 0 +// These symbols are only defined for compatibility, don't use them. +#define wxHAS_INT64 1 +#define wxUSE_LONGLONG 1 +#define wxUSE_LONGLONG_NATIVE 1 +#ifndef wxLongLongIsLong + #define wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG #endif /* diff --git a/include/wx/univ/setup.h b/include/wx/univ/setup.h index 5b35fecc1981..006fe05e5253 100644 --- a/include/wx/univ/setup.h +++ b/include/wx/univ/setup.h @@ -322,19 +322,6 @@ // non GUI features selection // ---------------------------------------------------------------------------- -// Set wxUSE_LONGLONG to 1 to compile the wxLongLong class. This is a 64 bit -// integer which is implemented in terms of native 64 bit integers if any or -// uses emulation otherwise. -// -// This class is required by wxDateTime and so you should enable it if you want -// to use wxDateTime. For most modern platforms, it will use the native 64 bit -// integers in which case (almost) all of its functions are inline and it -// almost does not take any space, so there should be no reason to switch it -// off. -// -// Recommended setting: 1 -#define wxUSE_LONGLONG 1 - // Set wxUSE_BASE64 to 1, to compile in Base64 support. This is required for // storing binary data in wxConfig on most platforms. // @@ -421,8 +408,6 @@ // Set wxUSE_DATETIME to 1 to compile the wxDateTime and related classes which // allow to manipulate dates, times and time intervals. // -// Requires: wxUSE_LONGLONG -// // Default is 1 // // Recommended setting: 1 diff --git a/include/wx/utils.h b/include/wx/utils.h index 9dbcb23622c5..c51f1453096b 100644 --- a/include/wx/utils.h +++ b/include/wx/utils.h @@ -107,11 +107,7 @@ wxClip(T1 a, T2 b, T3 c) // wxGetFreeMemory can return huge amount of memory on 32-bit platforms as well // so to always use long long for its result type on all platforms which // support it -#if wxUSE_LONGLONG - typedef wxLongLong wxMemorySize; -#else - typedef long wxMemorySize; -#endif +typedef wxLongLong wxMemorySize; // ---------------------------------------------------------------------------- // Miscellaneous functions @@ -563,11 +559,7 @@ WXDLLIMPEXP_BASE const wxChar* wxGetHomeDir(wxString *pstr); WXDLLIMPEXP_BASE wxString wxGetUserHome(const wxString& user = wxEmptyString); -#if wxUSE_LONGLONG - typedef wxLongLong wxDiskspaceSize_t; -#else - typedef long wxDiskspaceSize_t; -#endif +typedef wxLongLong wxDiskspaceSize_t; // get number of total/free bytes on the disk where path belongs WXDLLIMPEXP_BASE bool wxGetDiskSpace(const wxString& path, diff --git a/include/wx/valnum.h b/include/wx/valnum.h index e24cb0175bc2..953c009d91b9 100644 --- a/include/wx/valnum.h +++ b/include/wx/valnum.h @@ -312,13 +312,8 @@ class WXDLLIMPEXP_CORE wxIntegerValidatorBase : public wxNumValidatorBase // Define the type we use here, it should be the maximal-sized integer type // we support to make it possible to base wxIntegerValidator<> for any type // on it. -#ifdef wxLongLong_t typedef wxLongLong_t LongestValueType; typedef wxULongLong_t ULongestValueType; -#else - typedef long LongestValueType; - typedef unsigned long ULongestValueType; -#endif wxIntegerValidatorBase(int style) : wxNumValidatorBase(style) diff --git a/include/wx/variant.h b/include/wx/variant.h index 74a623a1ce39..5b7bad12f997 100644 --- a/include/wx/variant.h +++ b/include/wx/variant.h @@ -295,7 +295,6 @@ class WXDLLIMPEXP_BASE wxVariant: public wxObject void operator= (wxObject* value); wxObject* GetWxObjectPtr() const; -#if wxUSE_LONGLONG // wxLongLong wxVariant(wxLongLong, const wxString& name = wxEmptyString); bool operator==(wxLongLong value) const; @@ -311,7 +310,6 @@ class WXDLLIMPEXP_BASE wxVariant: public wxObject void operator=(wxULongLong value); operator wxULongLong() const { return GetULongLong(); } wxULongLong GetULongLong() const; -#endif // ------------------------------ // list operations @@ -359,10 +357,8 @@ class WXDLLIMPEXP_BASE wxVariant: public wxObject #if wxUSE_DATETIME bool Convert(wxDateTime* value) const; #endif // wxUSE_DATETIME -#if wxUSE_LONGLONG bool Convert(wxLongLong* value) const; bool Convert(wxULongLong* value) const; - #ifdef wxLongLong_t bool Convert(wxLongLong_t* value) const { wxLongLong temp; @@ -379,8 +375,6 @@ class WXDLLIMPEXP_BASE wxVariant: public wxObject *value = temp.GetValue(); return true; } - #endif // wxLongLong_t -#endif // wxUSE_LONGLONG // Attributes protected: diff --git a/include/wx/webrequest.h b/include/wx/webrequest.h index 83deb6eec97c..7da62703dec9 100644 --- a/include/wx/webrequest.h +++ b/include/wx/webrequest.h @@ -104,6 +104,8 @@ class WXDLLIMPEXP_NET wxWebResponse wxString GetHeader(const wxString& name) const; + std::vector GetAllHeaderValues(const wxString& name) const; + wxString GetMimeType() const; wxString GetContentType() const; @@ -196,6 +198,8 @@ class WXDLLIMPEXP_NET wxWebRequestBase void SetHeader(const wxString& name, const wxString& value); + void AddHeader(const wxString& name, const wxString& value); + void SetMethod(const wxString& method); void SetData(const wxString& text, const wxString& contentType, const wxMBConv& conv = wxConvUTF8); diff --git a/include/wx/wxcrt.h b/include/wx/wxcrt.h index aeb2bb9729e3..ed9995baa866 100644 --- a/include/wx/wxcrt.h +++ b/include/wx/wxcrt.h @@ -1007,10 +1007,8 @@ inline double wxStrtod(const wxCStrData& nptr, std::nullptr_t) WX_STRTOX_FUNC(long, wxStrtol, wxCRT_StrtolA, wxCRT_StrtolW) WX_STRTOX_FUNC(unsigned long, wxStrtoul, wxCRT_StrtoulA, wxCRT_StrtoulW) -#ifdef wxLongLong_t WX_STRTOX_FUNC(wxLongLong_t, wxStrtoll, wxCRT_StrtollA, wxCRT_StrtollW) WX_STRTOX_FUNC(wxULongLong_t, wxStrtoull, wxCRT_StrtoullA, wxCRT_StrtoullW) -#endif // wxLongLong_t #undef WX_STRTOX_FUNC diff --git a/include/wx/wxcrtbase.h b/include/wx/wxcrtbase.h index 00e539fe932b..0ff206163fe7 100644 --- a/include/wx/wxcrtbase.h +++ b/include/wx/wxcrtbase.h @@ -367,24 +367,22 @@ WXDLLIMPEXP_BASE wchar_t *wxCRT_StrtokW(wchar_t *psz, const wchar_t *delim, wcha #endif /* supply strtoll and strtoull, if needed */ -#ifdef wxLongLong_t - #ifndef wxCRT_StrtollA - WXDLLIMPEXP_BASE wxLongLong_t wxCRT_StrtollA(const char* nptr, - char** endptr, - int base); - WXDLLIMPEXP_BASE wxULongLong_t wxCRT_StrtoullA(const char* nptr, - char** endptr, - int base); - #endif - #ifndef wxCRT_StrtollW - WXDLLIMPEXP_BASE wxLongLong_t wxCRT_StrtollW(const wchar_t* nptr, - wchar_t** endptr, - int base); - WXDLLIMPEXP_BASE wxULongLong_t wxCRT_StrtoullW(const wchar_t* nptr, - wchar_t** endptr, - int base); - #endif -#endif /* wxLongLong_t */ +#ifndef wxCRT_StrtollA + WXDLLIMPEXP_BASE wxLongLong_t wxCRT_StrtollA(const char* nptr, + char** endptr, + int base); + WXDLLIMPEXP_BASE wxULongLong_t wxCRT_StrtoullA(const char* nptr, + char** endptr, + int base); +#endif +#ifndef wxCRT_StrtollW + WXDLLIMPEXP_BASE wxLongLong_t wxCRT_StrtollW(const wchar_t* nptr, + wchar_t** endptr, + int base); + WXDLLIMPEXP_BASE wxULongLong_t wxCRT_StrtoullW(const wchar_t* nptr, + wchar_t** endptr, + int base); +#endif /* ------------------------------------------------------------------------- diff --git a/include/wx/x11/colour.h b/include/wx/x11/colour.h index 5ffaade45993..1872779ab1f0 100644 --- a/include/wx/x11/colour.h +++ b/include/wx/x11/colour.h @@ -31,7 +31,7 @@ class WXDLLIMPEXP_FWD_CORE wxColour; // wxColour //----------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxColour : public wxColourBase +class WXDLLIMPEXP_CORE wxWARN_UNUSED wxColour : public wxColourBase { public: // constructors diff --git a/include/wx/xrc/xh_all.h b/include/wx/xrc/xh_all.h index df10787b6d14..1a84b4ae5c5f 100644 --- a/include/wx/xrc/xh_all.h +++ b/include/wx/xrc/xh_all.h @@ -78,6 +78,7 @@ #include "wx/xrc/xh_tree.h" #include "wx/xrc/xh_treebk.h" #include "wx/xrc/xh_unkwn.h" +#include "wx/xrc/xh_vlistbox.h" #include "wx/xrc/xh_wizrd.h" #endif // _WX_XH_ALL_H_ diff --git a/include/wx/xrc/xh_vlistbox.h b/include/wx/xrc/xh_vlistbox.h new file mode 100644 index 000000000000..cbfc905bab26 --- /dev/null +++ b/include/wx/xrc/xh_vlistbox.h @@ -0,0 +1,29 @@ +///////////////////////////////////////////////////////////////////////////// +// Name: wx/xrc/xh_vlistbox.h +// Purpose: XML resource handler for wxVListBox +// Author: Vaclav Slavik, Bill Su +// Created: 2000/03/05, 2024/10/07 +// Copyright: (c) 2000 Vaclav Slavik, 2024 Bill Su +// Licence: wxWindows licence +///////////////////////////////////////////////////////////////////////////// + +#ifndef _WX_XH_VLISTBOX_H_ +#define _WX_XH_VLISTBOX_H_ + +#include "wx/xrc/xmlres.h" + +#if wxUSE_XRC && wxUSE_LISTBOX + +class WXDLLIMPEXP_XRC wxVListBoxXmlHandler : public wxXmlResourceHandler +{ + wxDECLARE_DYNAMIC_CLASS(wxVListBoxXmlHandler); + +public: + wxVListBoxXmlHandler(); + virtual wxObject *DoCreateResource() override; + virtual bool CanHandle(wxXmlNode *node) override; +}; + +#endif // wxUSE_XRC && wxUSE_LISTBOX + +#endif // _WX_XH_VLISTBOX_H_ diff --git a/interface/wx/aui/auibook.h b/interface/wx/aui/auibook.h index 1ca827cdb995..b6bc3b300dbf 100644 --- a/interface/wx/aui/auibook.h +++ b/interface/wx/aui/auibook.h @@ -320,6 +320,28 @@ class wxAuiNotebook : public wxBookCtrlBase */ virtual bool SetFont(const wxFont& font); + /** + Sets the flags for the wxAuiManager used by wxAuiNotebook. + + Please note that it makes sense to use only some of wxAuiManager flags, + documented in wxAuiManagerOption, with wxAuiNotebook, but the other + ones are simply ignored, so it is always possible to reuse the same + flags for the main wxAuiManager and the one used by the notebook. + + Example of using this function to disable the fade effect for the + notebook: + @code + auiNotebook->SetManagerFlags( + wxAuiManager::GetManager()->GetFlags() & ~wxAUI_MGR_HINT_FADE + ); + @endcode + + @see wxAuiManager::SetFlags(), wxAuiManagerOption + + @since 3.3.0 + */ + void SetManagerFlags(unsigned int flags); + /** Sets the font for measuring tab labels. */ diff --git a/interface/wx/aui/framemanager.h b/interface/wx/aui/framemanager.h index ead1c1c55952..cfbd5452990b 100644 --- a/interface/wx/aui/framemanager.h +++ b/interface/wx/aui/framemanager.h @@ -243,12 +243,15 @@ class wxAuiManager : public wxEvtHandler @param paneWindow The window pointer of the pane being dragged. @param pt The mouse position, in client coordinates. @param offset Describes the offset that the mouse is from the upper-left - corner of the item being dragged. + corner of the item being dragged, 0 by default (since wxWidgets + 3.3.0, this parameter had to be specified in the earlier versions). @return The rectangle hint will be returned in screen coordinates if the pane would indeed become docked at the specified drop point. Otherwise, an empty rectangle is returned. */ - wxRect CalculateHintRect(wxWindow* paneWindow, const wxPoint& pt, const wxPoint& offset); + wxRect CalculateHintRect(wxWindow* paneWindow, + const wxPoint& pt, + const wxPoint& offset = wxPoint{0, 0}); /** Check if a key modifier is pressed (actually ::WXK_CONTROL or @@ -281,8 +284,19 @@ class wxAuiManager : public wxEvtHandler It is rarely called, and is mostly used by controls implementing custom pane drag/drop behaviour. + + Calling it is equivalent to calling CalculateHintRect() and + UpdateHint() with the resulting rectangle. + + @param paneWindow Window passed to CalculateHintRect(). + @param pt Mouse position passed to CalculateHintRect(). + @param offset Offset passed to CalculateHintRect(), 0 by default (since + wxWidgets 3.3.0, this parameter had to be specified in the earlier + versions). */ - void DrawHintRect(wxWindow* paneWindow, const wxPoint& pt, const wxPoint& offset); + void DrawHintRect(wxWindow* paneWindow, + const wxPoint& pt, + const wxPoint& offset = wxPoint{0, 0}); /** Returns an array of all panes managed by the frame manager. @@ -353,6 +367,8 @@ class wxAuiManager : public wxEvtHandler /** HideHint() hides any docking hint that may be visible. + + @see UpdateHint() */ virtual void HideHint(); @@ -371,6 +387,19 @@ class wxAuiManager : public wxEvtHandler const wxAuiPaneInfo& insert_location, int insert_level = wxAUI_INSERT_PANE); + /** + Load the layout information saved by SaveLayout(). + + The implementation of wxAuiDeserializer object passed to this function + should be consistent with that of the serializer used to save the + layout. See @ref page_samples_aui for an example of using serializer + saving the layout in XML format and matching deserializer restoring the + layout from it. + + @since 3.3.0 + */ + void LoadLayout(wxAuiDeserializer& deserializer); + /** LoadPaneInfo() is similar to LoadPerspective, with the exception that it only loads information about a single pane. @@ -389,6 +418,10 @@ class wxAuiManager : public wxEvtHandler /** Loads a saved perspective. + This function is used to load layouts previously saved with + SavePerspective(), use LoadLayout() to load a layout saved with + SaveLayout(). + A perspective is the layout state of an AUI managed window. All currently existing panes that have an object in "perspective" @@ -422,6 +455,19 @@ class wxAuiManager : public wxEvtHandler */ void RestoreMaximizedPane(); + /** + Save the layout information using the provided object. + + This function allows to use a custom @a serializer to save the layout + information in any format, e.g. @ref page_samples_aui shows how to save + it in XML format. + + See wxAuiSerializer documentation for more details. + + @since 3.3.0 + */ + void SaveLayout(wxAuiSerializer& serializer) const; + /** SavePaneInfo() is similar to SavePerspective, with the exception that it only saves information about a single pane. @@ -441,6 +487,9 @@ class wxAuiManager : public wxEvtHandler Saves the entire user interface layout into an encoded wxString, which can then be stored by the application (probably using wxConfig). + @note You may prefer to use SaveLayout() instead of this function for + more flexibility. + @see LoadPerspective @see LoadPaneInfo @see SavePaneInfo @@ -485,10 +534,16 @@ class wxAuiManager : public wxEvtHandler void SetManagedWindow(wxWindow* managed_wnd); /** - This function is used by controls to explicitly show a hint window at the - specified rectangle. It is rarely called, and is mostly used by controls - implementing custom pane drag/drop behaviour. - The specified rectangle should be in screen coordinates. + This function is used to show a hint window at the specified rectangle. + + It can be overridden to customize the hint appearance. When overriding + it, HideHint() should normally be also overridden as well. + + Do not call this function directly to show the hint, use UpdateHint() + instead. + + @param rect The area where the hint window should be shown, in screen + coordinates, or an empty rectangle to hide the window. */ virtual void ShowHint(const wxRect& rect); @@ -518,6 +573,18 @@ class wxAuiManager : public wxEvtHandler */ void Update(); + /** + Show or hide the hint window. + + This function is mostly used internally. + + @param rect The area where the hint window should be shown, in screen + coordinates, or an empty rectangle to hide the window. + + @since 3.3.0 + */ + void UpdateHint(const wxRect& rect); + protected: /** diff --git a/interface/wx/aui/serializer.h b/interface/wx/aui/serializer.h new file mode 100644 index 000000000000..896313fcc54d --- /dev/null +++ b/interface/wx/aui/serializer.h @@ -0,0 +1,202 @@ +///////////////////////////////////////////////////////////////////////////// +// Name: aui/serializer.h +// Purpose: Documentation of wxAuiSerializer and wxAuiDeserializer. +// Author: Vadim Zeitlin +// Created: 2024-02-20 +// Copyright: (c) 2024 Vadim Zeitlin +// Licence: wxWindows licence +///////////////////////////////////////////////////////////////////////////// + +/** + @class wxAuiSerializer + + wxAuiSerializer is used by wxAuiManager::SaveLayout() to store layout + information. + + This is an abstract base class, you need to inherit from it and override its + pure virtual functions in your derived class. + + SavePane() and SaveDock() must be overridden and will be called by + wxAuiManager for each pane and dock present in the layout. The other + functions don't need to be overridden, but it is often convenient to + perform some actions before or after starting to save the objects of the + given type or at the beginning or end of the whole saving process, so this + class provides hooks for doing it. + + If any of the functions of the derived class throw an exception, it is + propagated out of wxAuiManager::SaveLayout() and it's callers responsibility + to handle it. + + @library{wxaui} + @category{aui} + + @since 3.3.0 + */ +class wxAuiSerializer +{ +public: + /// Trivial default ctor. + wxAuiSerializer() = default; + + /// Trivial but virtual destructor. + virtual ~wxAuiSerializer() = default; + + /** + Called before doing anything else. + + Does nothing by default. + */ + virtual void BeforeSave(); + + /** + Called before starting to save information about the panes. + + Does nothing by default. + */ + virtual void BeforeSavePanes(); + + /** + Save information about the given pane. + + This function will be called for all panes and must be implemented to + save their data in a format from which it can be restored later using a + matching wxAuiDeserializer implementation. + + Note that all sizes and positions in @a pane are using DIPs, i.e. + resolution-independent pixels, when it is passed to this function, so + it does _not_ need to perform any scaling itself to ensure that the + stored values are restored correctly if the resolution changes. + */ + virtual void SavePane(const wxAuiPaneInfo& pane) = 0; + + /** + Called after the last call to SavePane(). + + Does nothing by default. + */ + virtual void AfterSavePanes(); + + /** + Called before starting to save information about the docks. + + Does nothing by default. + */ + virtual void BeforeSaveDocks(); + + /** + Save information about the given dock. + + This function will be called for all docks and must be implemented to + save their data in a format from which it can be restored later using a + matching wxAuiDeserializer implementation. + + As with SavePane(), the coordinates in @a dock are always in DIPs and + this function does _not_ need to perform any scaling itself. + */ + virtual void SaveDock(const wxAuiDockInfo& dock) = 0; + + /** + Called after the last call to SaveDock(). + + Does nothing by default. + */ + virtual void AfterSaveDocks(); + + /** + Called after saving everything. + + Does nothing by default. + */ + virtual void AfterSave(); +}; + +/** + @class wxAuiDeserializer + + wxAuiDeserializer is used by wxAuiManager::LoadLayout() to restore layout + information saved by wxAuiManager::SaveLayout(). + + As wxAuiSerializer, this is an abstract base class, you need to inherit from + it and override its pure virtual functions in your derived class. + + Derived class function also may throw and, if any of them other than + AfterLoad() does, the existing layout is not changed, i.e. + wxAuiManager::LoadLayout() is exception-safe. + + @library{wxaui} + @category{aui} + + @since 3.3.0 + */ +class wxAuiDeserializer +{ +public: + /** + Constructor taking the manager for which we're restoring the layout. + + The manager remains valid for the lifetime of this object. + */ + explicit wxAuiDeserializer(wxAuiManager& manager); + + /// Trivial but virtual destructor. + virtual ~wxAuiDeserializer() = default; + + + /** + Called before doing anything else. + + Does nothing by default. + */ + virtual void BeforeLoad(); + + /** + Load information about all the panes previously saved by + wxAuiSerializer::SavePane(). + + Unlike the serializer function, this one is called only once and should + return all the panes in the layout. + + Just as the serializer function, this one doesn't need to perform any + scaling itself as this will be done, if necessary, by wxAuiManager + itself. + + If some pane in the returned vector doesn't already exist, i.e. there + is no pane with the matching name, CreatePaneWindow() is called to + allow creating it on the fly. + */ + virtual std::vector LoadPanes() = 0; + + /** + Create the window to be managed by the given pane if necessary. + + This function is called if any of the panes returned by LoadPanes() + doesn't exist in the existing layout and allows to create windows on + the fly. + + If this function returns @NULL, as it does by default, the pane is not + added to the manager. + */ + virtual wxWindow* CreatePaneWindow(const wxAuiPaneInfo& pane); + + /** + Load information about all the docks previously saved with SaveDock(). + + As with LoadPanes(), this function doesn't need to perform any scaling + itself. + */ + virtual std::vector LoadDocks() = 0; + + /** + Called after restoring everything. + + Default implementation calls wxAuiManager::Update(). Override this + function and do _not_ call the base class version if you want to + prevent this from happening, e.g. if you need to make further changes + to the restored layout before updating it. + */ + virtual void AfterLoad(); + +protected: + /// The manager for which we're restoring the layout. + wxAuiManager& m_manager; +}; diff --git a/interface/wx/dcclient.h b/interface/wx/dcclient.h index b21d6eaa8c8d..38e8d425fe22 100644 --- a/interface/wx/dcclient.h +++ b/interface/wx/dcclient.h @@ -24,7 +24,7 @@ @library{wxcore} @category{dc} - @see wxDC, wxClientDC, wxMemoryDC, wxWindowDC, wxScreenDC + @see wxDC, wxMemoryDC */ class wxPaintDC : public wxClientDC { @@ -66,7 +66,7 @@ class wxPaintDC : public wxClientDC @library{wxcore} @category{dc} - @see wxDC, wxMemoryDC, wxPaintDC, wxWindowDC, wxScreenDC + @see wxDC, wxMemoryDC, wxPaintDC, wxWindowDC */ class wxClientDC : public wxWindowDC { @@ -120,7 +120,7 @@ class wxClientDC : public wxWindowDC @library{wxcore} @category{dc} - @see wxDC, wxMemoryDC, wxPaintDC, wxClientDC, wxScreenDC + @see wxDC, wxMemoryDC, wxPaintDC, wxClientDC */ class wxWindowDC : public wxDC { diff --git a/interface/wx/dcscreen.h b/interface/wx/dcscreen.h index 64570bf13370..6165a2716d7c 100644 --- a/interface/wx/dcscreen.h +++ b/interface/wx/dcscreen.h @@ -12,6 +12,8 @@ Please don't use this class in the new code, as it doesn't work on modern systems any longer and using it is not guaranteed to have any effect at all. + Use wxDisplay for getting information about the screen and wxOverlay for + temporarily drawing over a window. A wxScreenDC can be used to paint on the screen. This should normally be constructed as a temporary stack object; don't store a wxScreenDC object. diff --git a/interface/wx/dragimag.h b/interface/wx/dragimag.h index c6752abd95db..d8dafb5b0381 100644 --- a/interface/wx/dragimag.h +++ b/interface/wx/dragimag.h @@ -15,6 +15,9 @@ platforms, wxGenericDragImage is used. Applications may also prefer to use wxGenericDragImage on Windows, too. + @note wxGenericDragImage implementation uses wxScreenDC and so doesn't work + on the platforms where wxScreenDC doesn't work, e.g. modern macOS versions. + To use this class, when you wish to start dragging an image, create a wxDragImage object and store it somewhere you can access it as the drag progresses. Call BeginDrag() to start, and EndDrag() to stop the drag. To diff --git a/interface/wx/event.h b/interface/wx/event.h index 78ea16d4d0b3..aae43c2c934f 100644 --- a/interface/wx/event.h +++ b/interface/wx/event.h @@ -4562,8 +4562,13 @@ class wxMouseCaptureChangedEvent : public wxEvent that it could still be executed and exit()s the process itself, without waiting for being killed. If this behaviour is for some reason undesirable, make sure that you define a handler for this event in your wxApp-derived - class and do not call @c event.Skip() in it (but be aware that the system - will still kill your application). + class and do not call @c event.Skip() in it, but be aware that the system + will still kill your application. Because of this, it is usually better to + skip this event and let the default handling take place. Please also note + that this handler must not be using any UI functionality (such as modal + dialogs asking whether the changes should be saved) as it is not safe to do + it any more, but it could, for example, save the program state into a file + unconditionally in order to restore it during the next program execution. @beginEventTable{wxCloseEvent} @event{EVT_CLOSE(func)} diff --git a/interface/wx/longlong.h b/interface/wx/longlong.h index bbc3f019bdb1..90d30de83b26 100644 --- a/interface/wx/longlong.h +++ b/interface/wx/longlong.h @@ -8,15 +8,11 @@ /** @class wxLongLong - This class represents a signed 64 bit long number. It is implemented using the - native 64 bit type where available (machines with 64 bit longs or compilers - which have (an analog of) @e long long type) and uses the emulation code in - the other cases which ensures that it is the most efficient solution for - working with 64 bit integers independently of the architecture. + This is a legacy class wrapping a 64-bit integer. @note This class is obsolete as there are no supported implementations not providing a native 64 bit integer type any longer and the application code - can safely use "long long" or "std::int64_t" directly instead of using this + should use "long long" or "std::int64_t" directly instead of using this class. wxLongLong defines all usual arithmetic operations such as addition, @@ -191,7 +187,10 @@ class wxLongLong /** @class wxULongLong - This class represents an unsigned 64 bit long number. + This is a legacy class wrapping an unsigned 64-bit integer. + + @note Just as wxLongLong, this class is obsolete and shouldn't be used in + the new code. See wxLongLong for more details. @@ -337,10 +336,8 @@ class wxULongLong printed. Example of using it: @code - #ifdef wxLongLong_t - wxLongLong_t ll = wxLL(0x1234567890abcdef); - printf("Long long = %" wxLongLongFmtSpec "x\n", ll); - #endif + wxLongLong_t ll = wxLL(0x1234567890abcdef); + printf("Long long = %" wxLongLongFmtSpec "x\n", ll); @endcode @see wxLL() @@ -354,9 +351,7 @@ class wxULongLong and allow the use of 64 bit compile time constants: @code - #ifdef wxLongLong_t - wxLongLong_t ll = wxLL(0x1234567890abcdef); - #endif + wxLongLong_t ll = wxLL(0x1234567890abcdef); @endcode @see wxULL(), wxLongLong @@ -370,9 +365,7 @@ wxLongLong_t wxLL(number); and allow the use of 64 bit compile time constants: @code - #ifdef wxLongLong_t - unsigned wxLongLong_t ll = wxULL(0x1234567890abcdef); - #endif + unsigned wxLongLong_t ll = wxULL(0x1234567890abcdef); @endcode @see wxLL(), wxLongLong diff --git a/interface/wx/modalhook.h b/interface/wx/modalhook.h index b7bb8a5917b8..2b91b40f1a82 100644 --- a/interface/wx/modalhook.h +++ b/interface/wx/modalhook.h @@ -115,6 +115,16 @@ class wxModalDialogHook */ void Unregister(); + /** + Return the number of currently open modal dialogs. + + Mostly this function is used to check if there are any open modal + dialogs by comparing its result with 0. + + @since 3.3.0 + */ + static int GetOpenCount(); + protected: /** Called by wxWidgets before showing any modal dialogs. diff --git a/interface/wx/object.h b/interface/wx/object.h index 74d073ed0ff8..a43b190519b0 100644 --- a/interface/wx/object.h +++ b/interface/wx/object.h @@ -870,6 +870,9 @@ class wxObjectDataPtr @c this pointer is non-null which is always true), so this macro should be used to avoid them. + Note that @a ptr must be an object of wxObject-derived class, otherwise + using this macro results in undefined behaviour. + @header{wx/object.h} @see wxDynamicCast() @@ -881,6 +884,9 @@ class wxObjectDataPtr will result if wxDynamicCast(ptr, classname) == @NULL) and then returns the result of executing an equivalent of static_cast(ptr). + Note that @a ptr must be an object of wxObject-derived class, otherwise + using this macro results in undefined behaviour. + @header{wx/object.h} @see wxDynamicCast(), wxConstCast() diff --git a/interface/wx/pickerbase.h b/interface/wx/pickerbase.h index 6d75cc3af67c..208c54fcf4ae 100644 --- a/interface/wx/pickerbase.h +++ b/interface/wx/pickerbase.h @@ -158,9 +158,6 @@ class wxPickerBase : public wxControl void SetTextCtrlProportion(int prop); - void SetTextCtrl(wxTextCtrl* text); - void SetPickerCtrl(wxControl* picker); - virtual void UpdatePickerFromTextCtrl() = 0; virtual void UpdateTextCtrlFromPicker() = 0; diff --git a/interface/wx/propgrid/propgrid.h b/interface/wx/propgrid/propgrid.h index 3993ada9b2e5..6e6052d2353a 100644 --- a/interface/wx/propgrid/propgrid.h +++ b/interface/wx/propgrid/propgrid.h @@ -926,6 +926,8 @@ class wxPropertyGrid : public wxScrolled, /** Redraws given property. + + @param p Valid, i.e. non-@NULL, property pointer. */ virtual void RefreshProperty( wxPGProperty* p ); @@ -1143,6 +1145,8 @@ class wxPropertyGrid : public wxScrolled, /** Draws item, children, and consecutive parents as long as category is not met. + + @param p Valid, i.e. non-@NULL, property pointer. */ void DrawItemAndValueRelated( wxPGProperty* p ); diff --git a/interface/wx/textctrl.h b/interface/wx/textctrl.h index f0fb0f97cee7..ce4ea424a15e 100644 --- a/interface/wx/textctrl.h +++ b/interface/wx/textctrl.h @@ -1128,6 +1128,112 @@ class wxTextAttr void operator=(const wxTextAttr& attr); }; +/** + Search options for wxTextCtrl::SearchText(). + + This is a builder class, where property functions can be + called during construction. For example: + + @code + wxTextSearchResult result = + textctrl->SearchText(wxTextSearch(L"Institutional Research"). + SearchDirection(wxTextSearch::Direction::Down). + MatchCase(). + MatchWholeWord()); + @endcode + + @since 3.3.0 +*/ +struct wxTextSearch +{ + /** + The string to search for. + */ + wxTextSearch(const wxString& text) : m_searchValue(text) {} + + /** + One of the following values can be passed to wxTextSearch::SearchDirection() to + control direction when searching a wxTextCtrl. + + @since 3.3.0 + */ + enum class Direction + { + Down, + Up + }; + + /** + The string to search for. + */ + wxTextSearch& SearchValue(const wxString& value) + { + m_searchValue = value; + return *this; + } + + /** + Whether the search should match case (i.e., be case sensitive). + + By default, this is @c false; search will be case insensitive. + */ + wxTextSearch& MatchCase(const bool matchCase = true) + { + m_matchCase = matchCase; + return *this; + } + + /** + Whether the search should match the whole word. + + By default, this is @c false; searching will not match by whole word. + */ + wxTextSearch& MatchWholeWord(const bool matchWholeWord = true) + { + m_wholeWord = matchWholeWord; + return *this; + } + + /** + Whether the search should go up or down in the text control. + + By default, search will go downward. + */ + wxTextSearch& SearchDirection(const wxTextSearch::Direction direction) + { + m_direction = direction; + return *this; + } + + /** + Where the search should start from. By default, if searching down, + then the search will start at 0. If searching up, then will start + at the end of control. + */ + wxTextSearch& Start(const long startPosition) + { + m_startingPosition = startPosition; + return *this; + } + + wxString m_searchValue; + long m_startingPosition = -1; + bool m_matchCase = true; + bool m_wholeWord = false; + Direction m_direction = Direction::Down; +}; + +/** Result from wxTextCtrl::SearchText(), specifying the range of the found text. + Range values will be @c wxNOT_FOUND if a match was not found. + + @since 3.3.0 +*/ +struct wxTextSearchResult +{ + long m_start = wxNOT_FOUND; + long m_end = wxNOT_FOUND; +}; + /** @class wxTextProofOptions @@ -1701,6 +1807,20 @@ class wxTextCtrl : public wxControl, */ void SetRTFValue(const wxString& val); + /** + Searches for a string in the control, using the provided search options. + + The range of the match will be returned as a wxTextSearchResult, which will + contain -1 values if no match was found. + + This is currently only implemented under wxMSW. + + @since 3.3.0 + + @onlyfor{wxmsw} + */ + wxTextSearchResult SearchText(const wxTextSearch& search) const; + /** Finds the position of the character at the specified point. diff --git a/interface/wx/uilocale.h b/interface/wx/uilocale.h index 7265c28af3fc..9ed6fd1d5220 100644 --- a/interface/wx/uilocale.h +++ b/interface/wx/uilocale.h @@ -99,6 +99,41 @@ class wxUILocale */ static const wxUILocale& GetCurrent(); + /** + Configure the UI to use the locale corresponding to the given locale name tag. + + If localized applications use this function instead of the recommended + function wxUILocale::UseDefault(), it should be called as early as possible + during the program startup, e.g. in the very beginning of the overridden + wxApp::OnInit(). + + @param localeName + The locale name tag for which the corresponding locale should be created. + Example: "de_DE.UTF-8" - German locale name in POSIX notation. + See wxLocaleIdent::FromTag() for more information about the syntax of + the @a locale tag string. + + Note that under most Unix systems (but not macOS) this function changes + the C locale to the locale specified by the environment variables and + so affects the results of calling C functions such as @c sprintf() etc + which can use comma, rather than period, as decimal separator. The + wxString::ToCDouble() and wxString::FromCDouble() functions can be used + for parsing and formatting floating point numbers using period as + decimal separator independently of the current locale. + + @return @true on success or @false if the locale with the given name + couldn't be set + + @note If an application tries to configure the UI to use a locale other + than the default user locale of the system, it can't be guaranteed + that really @em all controls will obey the locale setting. For + example, under Windows the calendar control will always use the + default user locale, no matter which locale was set by this function. + Under MacOS several standard dialogs like the file selection dialog + will use at least partially the default user locale. + */ + static bool UseLocaleName(const wxString& localeName); + /** Creates the local corresponding to the given language tag. diff --git a/interface/wx/webrequest.h b/interface/wx/webrequest.h index 4b809df61ede..a614b4aea836 100644 --- a/interface/wx/webrequest.h +++ b/interface/wx/webrequest.h @@ -320,10 +320,35 @@ class wxWebRequest @param name Name of the header @param value - String value of the header. An empty string will remove the header. + String value of the header. An empty string will remove all headers + with the same name. + + @see AddHeader() */ void SetHeader(const wxString& name, const wxString& value); + /** + Adds a request header which will be sent to the server by this request. + + The header will be added even if a header with the same name has been + set before. + + @param name + Name of the header + @param value + String value of the header. + + @note + The URLSession backend does not support multiple headers with the + same name. The last added header with a given name is used as a + fallback. + + @since 3.3.0 + + @see SetHeader() + */ + void AddHeader(const wxString& name, const wxString& value); + /** Set common or expanded HTTP method. @@ -737,10 +762,35 @@ class wxWebRequestSync @param name Name of the header @param value - String value of the header. An empty string will remove the header. + String value of the header. An empty string will remove all headers + with the same name. + + @see AddHeader() */ void SetHeader(const wxString& name, const wxString& value); + /** + Adds a request header which will be sent to the server by this request. + + The header will be added even if a header with the same name has been + set before. + + @param name + Name of the header + @param value + String value of the header. + + @note + The URLSession backend does not support multiple headers with the + same name. The last added header with a given name is used as a + fallback. + + @since 3.3.0 + + @see SetHeader() + */ + void AddHeader(const wxString& name, const wxString& value); + /** Set common or expanded HTTP method. @@ -1022,9 +1072,28 @@ class wxWebResponse could not be found. @param name Name of the header field + + @see GetAllHeaderValues() */ wxString GetHeader(const wxString& name) const; + /** + Returns all values of response headers with the same name or an empty + vector if the header could not be found at all. + + @param name Name of the header fields + + @note + The URLSession backend does not support multiple headers with the + same name. The last added header with a given name is used as a + fallback. + + @since 3.3.0 + + @see GetHeader() + */ + std::vector GetAllHeaderValues(const wxString& name) const; + /** Get the length of returned data if available. @@ -1216,16 +1285,40 @@ class wxWebSession /** Sets a request header in every wxWebRequest created from this session - after is has been set. + after it has been set. A good example for a session-wide request header is the @c User-Agent header. - Calling this function with the same header name again replaces the - previously used value. + Calling this function with the same header name again replaces all + previously added headers with that name. + + @param name Name of the header + @param value String value of the header. An empty string will remove + all headers with the same name. + + @see AddCommonHeader() + + @since 3.3.0 + */ + void SetCommonHeader(const wxString& name, const wxString& value); + + /** + Adds a request header to every wxWebRequest created from this session + after it has been added. + + Calling this function with the same header name again adds another + header with the same name. @param name Name of the header @param value String value of the header + + @note + The URLSession backend does not support multiple headers with the + same name. The last added header with a given name is used as a + fallback. + + @see SetCommonHeader() */ void AddCommonHeader(const wxString& name, const wxString& value); diff --git a/interface/wx/webview.h b/interface/wx/webview.h index 2d3d1b3f45be..9cc48143d81c 100644 --- a/interface/wx/webview.h +++ b/interface/wx/webview.h @@ -313,12 +313,12 @@ class WXDLLIMPEXP_WEBVIEW wxWebViewConfiguration #if defined(__WXMSW__) ICoreWebView2EnvironmentOptions* webViewOptions = - (ICoreWebView2EnvironmentOptions*) config->GetNativeConfiguration(); - webViewOptions->put_AdditionalBrowserArguments("--autoplay-policy=no-user-gesture-required"); + (ICoreWebView2EnvironmentOptions*) config.GetNativeConfiguration(); + webViewOptions->put_AdditionalBrowserArguments(L"--autoplay-policy=no-user-gesture-required"); #elif defined(__WXOSX__) WKWebViewConfiguration* webViewConfiguration = - (WKWebViewConfiguration*) config->GetNativeConfiguration(); - webViewConfiguration.mediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypeNone; + (WKWebViewConfiguration*) config.GetNativeConfiguration(); + webViewConfiguration->mediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypeNone; #endif wxWebView* webView = wxWebView::New(config); diff --git a/locale/it.po b/locale/it.po index 86104f00c490..f9a8691ad8b0 100644 --- a/locale/it.po +++ b/locale/it.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: wxWidgets revised 09.02.2023 by bovirus\n" +"Project-Id-Version: wxWidgets revised 31.10.2024 by bovirus\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-02-06 16:05+0100\n" -"PO-Revision-Date: 2023-02-09 19:31+0100\n" +"PO-Revision-Date: 2024-10-31 10:00+0100\n" "Last-Translator: bovirus \n" "Language-Team: wxWidgets translators \n" "Language: it\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.5\n" "X-Poedit-SourceCharset: UTF-8\n" #: ../include/wx/defs.h:2592 @@ -5034,7 +5034,7 @@ msgstr "Impossibile modificare la cartella attuale a \"%s\"" #: ../src/gtk/font.cpp:552 msgid "Using private fonts is not supported on this system: Pango library is too old, 1.38 or later required." -msgstr "L'uso di font private ​non è supportato in questo sistema: la libreria Pango è troppo vecchia, è richiesta la versione 1.38 o successiva." +msgstr "L'uso di font private non è supportato in questo sistema: la libreria Pango è troppo vecchia, è richiesta la versione 1.38 o successiva." #: ../src/gtk/font.cpp:562 msgid "Failed to create font configuration object." diff --git a/misc/schema/xrc_schema.rnc b/misc/schema/xrc_schema.rnc index 49be3927e097..0073867db449 100644 --- a/misc/schema/xrc_schema.rnc +++ b/misc/schema/xrc_schema.rnc @@ -342,6 +342,7 @@ builtinClassesNames = | "wxToolbook" | "wxTreeCtrl" | "wxTreebook" + | "wxVListBox" | "wxWizard" | "wxBoxSizer" @@ -1800,6 +1801,14 @@ wxTreebook_treebookpage = } +wxVListBox = + element object { + attribute class { "wxVListBox" } & + stdObjectNodeAttributes & + stdWindowProperties + } + + wxWizard = element object { attribute class { "wxWizard" } & diff --git a/samples/aui/auidemo.cpp b/samples/aui/auidemo.cpp index ee15ce1c6218..96a51c4ba0f1 100644 --- a/samples/aui/auidemo.cpp +++ b/samples/aui/auidemo.cpp @@ -28,6 +28,7 @@ #include "wx/log.h" #include "wx/menu.h" #include "wx/toolbar.h" +#include "wx/sstream.h" #include "wx/statusbr.h" #include "wx/msgdlg.h" #include "wx/textdlg.h" @@ -35,6 +36,10 @@ #include "wx/checkbox.h" #include "wx/aui/aui.h" +#include "wx/aui/serializer.h" + +#include "wx/xml/xml.h" + #include "../sample.xpm" // -- application -- @@ -70,7 +75,8 @@ class MyFrame : public wxFrame ID_NotebookContent, ID_SizeReportContent, ID_CreatePerspective, - ID_CopyPerspectiveCode, + ID_CopyLayout, + ID_PasteLayout, ID_AllowFloating, ID_AllowActivePane, ID_TransparentHint, @@ -149,7 +155,8 @@ class MyFrame : public wxFrame void OnChangeContentPane(wxCommandEvent& evt); void OnDropDownToolbarItem(wxAuiToolBarEvent& evt); void OnCreatePerspective(wxCommandEvent& evt); - void OnCopyPerspectiveCode(wxCommandEvent& evt); + void OnCopyLayout(wxCommandEvent& evt); + void OnPasteLayout(wxCommandEvent& evt); void OnRestorePerspective(wxCommandEvent& evt); void OnSettings(wxCommandEvent& evt); void OnCustomizeToolbar(wxCommandEvent& evt); @@ -602,7 +609,8 @@ wxBEGIN_EVENT_TABLE(MyFrame, wxFrame) EVT_MENU(MyFrame::ID_CreateSizeReport, MyFrame::OnCreateSizeReport) EVT_MENU(MyFrame::ID_CreateNotebook, MyFrame::OnCreateNotebook) EVT_MENU(MyFrame::ID_CreatePerspective, MyFrame::OnCreatePerspective) - EVT_MENU(MyFrame::ID_CopyPerspectiveCode, MyFrame::OnCopyPerspectiveCode) + EVT_MENU(MyFrame::ID_CopyLayout, MyFrame::OnCopyLayout) + EVT_MENU(MyFrame::ID_PasteLayout, MyFrame::OnPasteLayout) EVT_MENU(ID_AllowFloating, MyFrame::OnManagerFlag) EVT_MENU(ID_TransparentHint, MyFrame::OnManagerFlag) EVT_MENU(ID_VenetianBlindsHint, MyFrame::OnManagerFlag) @@ -764,7 +772,8 @@ MyFrame::MyFrame(wxWindow* parent, m_perspectives_menu = new wxMenu; m_perspectives_menu->Append(ID_CreatePerspective, _("Create Perspective")); - m_perspectives_menu->Append(ID_CopyPerspectiveCode, _("Copy Perspective Data To Clipboard")); + m_perspectives_menu->Append(ID_CopyLayout, _("Copy Layout to Clipboard as XML\tCtrl-C")); + m_perspectives_menu->Append(ID_PasteLayout, _("Paste XML Layout from Clipboard\tCtrl-V")); m_perspectives_menu->AppendSeparator(); m_perspectives_menu->Append(ID_FirstPerspective+0, _("Default Startup")); m_perspectives_menu->Append(ID_FirstPerspective+1, _("All Panes")); @@ -1176,6 +1185,15 @@ void MyFrame::OnManagerFlag(wxCommandEvent& event) if (flag) { m_mgr.SetFlags(m_mgr.GetFlags() ^ flag); + + // Propagate the flags to the notebooks too. + for ( auto& pane : m_mgr.GetAllPanes() ) + { + if (auto* nb = wxDynamicCast(pane.window, wxAuiNotebook) ) + { + nb->SetManagerFlags(m_mgr.GetFlags()); + } + } } m_mgr.Update(); @@ -1452,16 +1470,384 @@ void MyFrame::OnCreatePerspective(wxCommandEvent& WXUNUSED(event)) m_perspectives.Add(m_mgr.SavePerspective()); } -void MyFrame::OnCopyPerspectiveCode(wxCommandEvent& WXUNUSED(evt)) +// Sample serializer and deserializer implementations for saving and loading layouts. +class MyXmlSerializer : public wxAuiSerializer +{ +public: + MyXmlSerializer() = default; + + wxString GetXML() const + { + wxStringOutputStream oss; + if ( !m_doc.Save(oss) ) + { + wxLogError("Failed to save XML document."); + } + + return oss.GetString(); + } + + // Implement wxAuiSerializer methods. + virtual void BeforeSave() override + { + m_root = new wxXmlNode(wxXML_ELEMENT_NODE, "aui-layout"); + m_root->AddAttribute("version", "3.3.0"); + + m_doc.SetRoot(m_root); + } + + virtual void BeforeSavePanes() override + { + m_panes = new wxXmlNode(wxXML_ELEMENT_NODE, "panes"); + } + + virtual void SavePane(const wxAuiPaneInfo& pane) override + { + auto node = new wxXmlNode(m_panes, wxXML_ELEMENT_NODE, "pane"); + node->AddAttribute("name", pane.name); + + AddChild(node, "caption", pane.caption); + AddChild(node, "state", pane.state); + AddChild(node, "direction", pane.dock_direction); + AddChild(node, "layer", pane.dock_layer); + AddChild(node, "row", pane.dock_row); + AddChild(node, "position", pane.dock_pos); + AddChild(node, "proportion", pane.dock_proportion); + AddChild(node, "best-size", pane.best_size); + AddChild(node, "min-size", pane.min_size); + AddChild(node, "max-size", pane.max_size); + AddChild(node, "floating-rect", + wxRect(pane.floating_pos, pane.floating_size)); + } + + virtual void AfterSavePanes() override + { + m_root->AddChild(m_panes); + } + + virtual void BeforeSaveDocks() override + { + m_docks = new wxXmlNode(wxXML_ELEMENT_NODE, "docks"); + } + + virtual void SaveDock(const wxAuiDockInfo& dock) override + { + auto node = new wxXmlNode(m_docks, wxXML_ELEMENT_NODE, "dock"); + node->AddAttribute("resizable", dock.resizable ? "1" : "0"); + + AddChild(node, "direction", dock.dock_direction); + AddChild(node, "layer", dock.dock_layer); + AddChild(node, "row", dock.dock_row); + AddChild(node, "size", dock.size); + if ( dock.min_size ) + AddChild(node, "min-size", dock.min_size); + } + + virtual void AfterSaveDocks() override + { + m_root->AddChild(m_docks); + } + + virtual void AfterSave() override {} + +private: + void AddChild(wxXmlNode* parent, const wxString& name, const wxString& value) + { + auto node = new wxXmlNode(parent, wxXML_ELEMENT_NODE, name); + node->AddChild(new wxXmlNode(wxXML_TEXT_NODE, {}, value)); + } + + void AddChild(wxXmlNode* parent, const wxString& name, int value) + { + AddChild(parent, name, wxString::Format("%u", value)); + } + + void AddChild(wxXmlNode* parent, const wxString& name, const wxSize& size) + { + if ( size != wxDefaultSize ) + AddChild(parent, name, wxString::Format("%dx%d", size.x, size.y)); + } + + void AddChild(wxXmlNode* parent, const wxString& name, const wxRect& rect) + { + if ( rect.GetPosition() != wxDefaultPosition || + rect.GetSize() != wxDefaultSize ) + { + AddChild(parent, name, + wxString::Format("%d,%d %dx%d", + rect.x, rect.y, rect.width, rect.height)); + } + } + + wxXmlDocument m_doc; + wxXmlNode* m_root = nullptr; + wxXmlNode* m_panes = nullptr; + wxXmlNode* m_docks = nullptr; +}; + +class MyXmlDeserializer : public wxAuiDeserializer +{ +public: + explicit MyXmlDeserializer(wxAuiManager& manager, const wxString& xml) + : wxAuiDeserializer(manager) + { + wxStringInputStream iss(xml); + if ( !m_doc.Load(iss) ) + throw std::runtime_error("Failed to load XML document."); + + const auto root = m_doc.GetDocumentNode(); + const auto layout = root->GetChildren(); + if ( !layout ) + throw std::runtime_error("Missing layout node"); + if ( layout->GetName() != "aui-layout" ) + throw std::runtime_error("Unexpected XML node name"); + if ( layout->GetAttribute("version") != "3.3.0" ) + throw std::runtime_error("Unexpected XML version"); + if ( layout->GetNext() ) + throw std::runtime_error("Unexpected multiple layout nodes"); + + for ( wxXmlNode* node = layout->GetChildren(); node; node = node->GetNext() ) + { + if ( node->GetName() == "panes" ) + { + if ( m_panes ) + throw std::runtime_error("Unexpected multiple panes nodes"); + + m_panes = node; + } + else if ( node->GetName() == "docks" ) + { + if ( m_docks ) + throw std::runtime_error("Unexpected multiple docks nodes"); + + m_docks = node; + } + else + { + throw std::runtime_error("Unexpected node name"); + } + } + + if ( !m_panes ) + throw std::runtime_error("Missing panes node"); + + if ( !m_docks ) + throw std::runtime_error("Missing docks node"); + } + + // Implement wxAuiDeserializer methods. + virtual std::vector LoadPanes() override + { + std::vector panes; + + for ( wxXmlNode* node = m_panes->GetChildren(); node; node = node->GetNext() ) + { + if ( node->GetName() != "pane" ) + throw std::runtime_error("Unexpected pane node name"); + + { + wxAuiPaneInfo pane; + pane.name = node->GetAttribute("name"); + + for ( wxXmlNode* child = node->GetChildren(); child; child = child->GetNext() ) + { + const wxString& name = child->GetName(); + const wxString& content = child->GetNodeContent(); + + if ( name == "caption" ) + { + pane.caption = content; + } + else if ( name == "state" ) + { + pane.state = wxAuiPaneInfo::wxAuiPaneState(GetInt(content)); + } + else if ( name == "direction" ) + { + pane.dock_direction = GetInt(content); + } + else if ( name == "layer" ) + { + pane.dock_layer = GetInt(content); + } + else if ( name == "row" ) + { + pane.dock_row = GetInt(content); + } + else if ( name == "position" ) + { + pane.dock_pos = GetInt(content); + } + else if ( name == "proportion" ) + { + pane.dock_proportion = GetInt(content); + } + else if ( name == "best-size" ) + { + pane.best_size = GetSize(content); + } + else if ( name == "min-size" ) + { + pane.min_size = GetSize(content); + } + else if ( name == "max-size" ) + { + pane.max_size = GetSize(content); + } + else if ( name == "floating-rect" ) + { + auto rect = GetRect(content); + + pane.floating_pos = rect.GetPosition(); + pane.floating_size = rect.GetSize(); + } + else + { + throw std::runtime_error("Unexpected pane child node name"); + } + } + + panes.push_back(pane); + } + } + + return panes; + } + + virtual wxWindow* CreatePaneWindow(const wxAuiPaneInfo& pane) override + { + wxLogWarning("Unknown pane \"%s\"", pane.name); + return nullptr; + } + + virtual std::vector LoadDocks() override + { + std::vector docks; + + for ( wxXmlNode* node = m_docks->GetChildren(); node; node = node->GetNext() ) + { + if ( node->GetName() != "dock" ) + throw std::runtime_error("Unexpected dock node name"); + + wxAuiDockInfo dock; + if ( node->GetAttribute("resizable") == "1" ) + dock.resizable = true; + + for ( wxXmlNode* child = node->GetChildren(); child; child = child->GetNext() ) + { + const wxString& name = child->GetName(); + const wxString& content = child->GetNodeContent(); + + if ( name == "direction" ) + { + dock.dock_direction = GetInt(content); + } + else if ( name == "layer" ) + { + dock.dock_layer = GetInt(content); + } + else if ( name == "row" ) + { + dock.dock_row = GetInt(content); + } + else if ( name == "size" ) + { + dock.size = GetInt(content); + } + else if ( name == "min-size" ) + { + dock.min_size = GetInt(content); + } + else + { + throw std::runtime_error("Unexpected dock child node name"); + } + } + + docks.push_back(dock); + } + + return docks; + } + +private: + int GetInt(const wxString& str) + { + int value; + if ( !str.ToInt(&value) ) + throw std::runtime_error("Failed to parse integer"); + + return value; + } + + wxSize GetSize(const wxString& str) + { + wxString strH; + const wxString strW = str.BeforeFirst('x', &strH); + + unsigned int w, h; + if ( !strW.ToUInt(&w) || !strH.ToUInt(&h) ) + throw std::runtime_error("Failed to parse size"); + + return wxSize(w, h); + } + + wxRect GetRect(const wxString& str) + { + wxString strWH; + const wxString strXY = str.BeforeFirst(' ', &strWH); + + wxString strY; + const wxString strX = strXY.BeforeFirst(',', &strY); + + unsigned int x, y; + if ( !strX.ToUInt(&x) || !strY.ToUInt(&y) ) + throw std::runtime_error("Failed to parse position"); + + return wxRect(wxPoint(x, y), GetSize(strWH)); + } + + + wxXmlDocument m_doc; + wxXmlNode* m_panes = nullptr; + wxXmlNode* m_docks = nullptr; +}; + +void MyFrame::OnCopyLayout(wxCommandEvent& WXUNUSED(evt)) { - wxString s = m_mgr.SavePerspective(); + MyXmlSerializer ser; + m_mgr.SaveLayout(ser); + +#if wxUSE_CLIPBOARD + wxClipboardLocker clipLock; + + wxTheClipboard->SetData(new wxTextDataObject(ser.GetXML())); +#endif // wxUSE_CLIPBOARD +} +void MyFrame::OnPasteLayout(wxCommandEvent& WXUNUSED(evt)) +{ #if wxUSE_CLIPBOARD - if (wxTheClipboard->Open()) + wxClipboardLocker clipLock; + + wxTextDataObject data; + if ( !wxTheClipboard->GetData(data) ) + { + wxLogError("Failed to get XML data from clipboard."); + return; + } + + try + { + MyXmlDeserializer deser(m_mgr, data.GetText()); + m_mgr.LoadLayout(deser); + } + catch ( const std::exception& e ) { - wxTheClipboard->SetData(new wxTextDataObject(s)); - wxTheClipboard->Close(); + wxLogError("Failed to load layout: %s", e.what()); } +#else + wxLogError("This menu command requires wxUSE_CLIPBOARD."); #endif } diff --git a/samples/dialogs/dialogs.cpp b/samples/dialogs/dialogs.cpp index b237f3479211..8522dfe60cdc 100644 --- a/samples/dialogs/dialogs.cpp +++ b/samples/dialogs/dialogs.cpp @@ -60,7 +60,7 @@ #endif // wxUSE_TIPWINDOW #if wxUSE_PROGRESSDLG -#if wxUSE_STOPWATCH && wxUSE_LONGLONG +#if wxUSE_STOPWATCH #include "wx/datetime.h" // wxDateTime #endif diff --git a/samples/dragimag/dragimag.cpp b/samples/dragimag/dragimag.cpp index 22a77158b597..e71c9542d7d8 100644 --- a/samples/dragimag/dragimag.cpp +++ b/samples/dragimag/dragimag.cpp @@ -398,23 +398,6 @@ bool MyApp::OnInit() } } -#if 0 - // Under GTK, this demonstrates that - // wxScreenDC only gets the root window content. - // We need to be able to copy the overall content - // for full-screen dragging to work. - int w, h; - wxDisplaySize(& w, & h); - wxBitmap bitmap(w, h); - - wxScreenDC dc; - wxMemoryDC memDC; - memDC.SelectObject(bitmap); - memDC.Blit(0, 0, w, h, & dc, 0, 0); - memDC.SelectObject(wxNullBitmap); - m_background = bitmap; -#endif - frame->Show( true ); return true; diff --git a/samples/help/doc/wx34.htm b/samples/help/doc/wx34.htm index 79a2521d872b..67a38b3325bd 100644 --- a/samples/help/doc/wx34.htm +++ b/samples/help/doc/wx34.htm @@ -496,8 +496,6 @@

Alphabetical class reference

wxStaticBoxSizer
-wxScreenDC
- wxScrollBar
wxScrollWinEvent
diff --git a/samples/ownerdrw/ownerdrw.cpp b/samples/ownerdrw/ownerdrw.cpp index 30aa955471af..68decdbe0326 100644 --- a/samples/ownerdrw/ownerdrw.cpp +++ b/samples/ownerdrw/ownerdrw.cpp @@ -34,9 +34,7 @@ class OwnerDrawnApp: public wxApp class OwnerDrawnFrame : public wxFrame { public: - // ctor & dtor - OwnerDrawnFrame(wxFrame *frame, const wxString& title, int x, int y, int w, int h); - ~OwnerDrawnFrame(){} + OwnerDrawnFrame(); // notifications void OnQuit (wxCommandEvent& event); @@ -88,7 +86,7 @@ bool OwnerDrawnApp::OnInit(void) if ( !wxApp::OnInit() ) return false; - new OwnerDrawnFrame(nullptr, "wxWidgets Ownerdraw Sample", 50, 50, 450, 340); + new OwnerDrawnFrame(); return true; } @@ -250,9 +248,8 @@ void OwnerDrawnFrame::InitMenu() } // main frame constructor -OwnerDrawnFrame::OwnerDrawnFrame(wxFrame *frame, const wxString& title, - int x, int y, int w, int h) - : wxFrame(frame, wxID_ANY, title, wxPoint(x, y), wxSize(w, h)) +OwnerDrawnFrame::OwnerDrawnFrame() + : wxFrame(nullptr, wxID_ANY, "wxWidgets Ownerdraw Sample") { // set the icon SetIcon(wxICON(sample)); @@ -262,7 +259,7 @@ OwnerDrawnFrame::OwnerDrawnFrame(wxFrame *frame, const wxString& title, #if wxUSE_STATUSBAR // create the status line - const int widths[] = { -1, 60 }; + const int widths[] = { -1, FromDIP(60) }; CreateStatusBar(2); SetStatusWidths(2, widths); SetStatusText("no selection", 0); @@ -276,30 +273,26 @@ OwnerDrawnFrame::OwnerDrawnFrame(wxFrame *frame, const wxString& title, "goodbye", "cruel", "world", "-------", "owner-drawn", "listbox" }; - wxString *astrChoices = new wxString[WXSIZEOF(aszChoices)]; - unsigned int ui; - for ( ui = 0; ui < WXSIZEOF(aszChoices); ui++ ) - astrChoices[ui] = aszChoices[ui]; - m_pListBox = new wxCheckListBox ( pPanel, // parent Control_Listbox, // control id - wxPoint(10, 10), // listbox position - wxSize(200, 200), // listbox size + FromDIP(wxPoint(10, 10)), // listbox position + FromDIP(wxSize(200, 200)), // listbox size WXSIZEOF(aszChoices), // number of strings - astrChoices // array of strings + aszChoices // array of strings ); - delete [] astrChoices; - +#if defined(__WXMSW__) && !defined(__WXUNIVERSAL__) + unsigned int ui; for ( ui = 0; ui < WXSIZEOF(aszChoices); ui += 2 ) { -#if defined(__WXMSW__) && !defined(__WXUNIVERSAL__) m_pListBox->GetItem(ui)->SetBackgroundColour(*wxBLUE); -#endif } + m_pListBox->GetItem(3)->SetTextColour(*wxRED); +#endif + m_pListBox->Check(2); // normal (but owner-drawn) listbox @@ -307,21 +300,14 @@ OwnerDrawnFrame::OwnerDrawnFrame(wxFrame *frame, const wxString& title, "Green", "Yellow", "Black", "Violet" }; - astrChoices = new wxString[WXSIZEOF(aszColors)]; - - for ( ui = 0; ui < WXSIZEOF(aszColors); ui++ ) - { - astrChoices[ui] = aszColors[ui]; - } - wxListBox *pListBox = new wxListBox ( pPanel, // parent Control_Listbox2, // control id - wxPoint(220, 10), // listbox position - wxSize(200, 200), // listbox size + FromDIP(wxPoint(220, 10)), // listbox position + FromDIP(wxSize(200, 200)), // listbox size WXSIZEOF(aszColors), // number of strings - astrChoices, // array of strings + aszColors, // array of strings wxLB_OWNERDRAW // owner-drawn ); @@ -354,7 +340,7 @@ OwnerDrawnFrame::OwnerDrawnFrame(wxFrame *frame, const wxString& title, wxUnusedVar( pListBox ); #endif - delete[] astrChoices; + SetSize(FromDIP(wxSize(450, 340))); Show(true); } diff --git a/samples/propgrid/propgrid.cpp b/samples/propgrid/propgrid.cpp index 38b5e8e169f2..883071e800ef 100644 --- a/samples/propgrid/propgrid.cpp +++ b/samples/propgrid/propgrid.cpp @@ -1460,11 +1460,7 @@ void FormMain::PopulateWithExamples () pg->Append( new wxPointProperty( "PointProperty", "Position", GetPosition() ) ); // UInt samples -#if wxUSE_LONGLONG pg->Append( new wxUIntProperty( "UIntProperty", wxPG_LABEL, wxULongLong(wxULL(0xFEEEFEEEFEEE)))); -#else - pg->Append( new wxUIntProperty( "UIntProperty", wxPG_LABEL, 0xFEEEFEEE)); -#endif pg->SetPropertyAttribute( "UIntProperty", wxPG_UINT_PREFIX, wxPG_PREFIX_NONE ); pg->SetPropertyAttribute( "UIntProperty", wxPG_UINT_BASE, wxPG_BASE_HEX ); //pg->SetPropertyAttribute( "UIntProperty", wxPG_UINT_PREFIX, wxPG_PREFIX_NONE ); @@ -1712,7 +1708,6 @@ void FormMain::PopulateWithLibraryConfig () ADD_WX_LIB_CONF( wxUSE_STD_IOSTREAM ) ADD_WX_LIB_CONF_GROUP("Non-GUI Features") - ADD_WX_LIB_CONF( wxUSE_LONGLONG ) ADD_WX_LIB_CONF( wxUSE_FILE ) ADD_WX_LIB_CONF( wxUSE_FFILE ) ADD_WX_LIB_CONF( wxUSE_FSVOLUME ) @@ -2787,7 +2782,7 @@ void FormMain::OnColourScheme( wxCommandEvent& event ) m_propGridManager->Freeze(); m_propGridManager->GetGrid()->SetMarginColour( my_grey_1 ); m_propGridManager->GetGrid()->SetCaptionBackgroundColour( my_grey_1 ); - m_propGridManager->GetGrid()->SetLineColour( my_grey_1 ); + m_propGridManager->GetGrid()->SetLineColour( my_grey_2 ); m_propGridManager->Thaw(); } else if ( id == ID_COLOURSCHEME4 ) diff --git a/samples/toolbar/toolbar.cpp b/samples/toolbar/toolbar.cpp index a424a1b3d736..ffaa4ea83384 100644 --- a/samples/toolbar/toolbar.cpp +++ b/samples/toolbar/toolbar.cpp @@ -492,22 +492,21 @@ void MyFrame::PopulateToolbar(wxToolBarBase* toolBar) "", wxDefaultPosition, wxDefaultSize, wxCHK_3STATE | wxCHK_ALLOW_3RD_STATE_FOR_USER); - checkbox1->SetMinSize(checkbox1->GetSizeFromText(checkbox1->GetLabelText())); - toolBar->AddControl(checkbox1, "Checkbox"); + checkbox1->SetToolTip("Checking this checkbox changes the state of the " + "two other ones using wxEVT_UPDATE_UI handler"); + toolBar->AddControl(checkbox1, "1"); wxCheckBox* checkbox2 = new wxCheckBox(toolBar, ID_UI_2CHECK_UPDATED, "", wxDefaultPosition, wxDefaultSize, wxCHK_2STATE); - checkbox2->SetMinSize(checkbox2->GetSizeFromText(checkbox2->GetLabelText())); checkbox2->Disable(); - toolBar->AddControl(checkbox2, "2Checkbox UI Updated"); + toolBar->AddControl(checkbox2, "2"); wxCheckBox* checkbox3 = new wxCheckBox(toolBar, ID_UI_3CHECK_UPDATED, "", wxDefaultPosition, wxDefaultSize, wxCHK_3STATE); - checkbox3->SetMinSize(checkbox3->GetSizeFromText(checkbox3->GetLabelText())); checkbox3->Disable(); - toolBar->AddControl(checkbox3, "3Checkbox UI Updated"); + toolBar->AddControl(checkbox3, "3"); #endif } #endif // USE_CONTROLS_IN_TOOLBAR diff --git a/samples/webrequest/webrequest.cpp b/samples/webrequest/webrequest.cpp index f3d6408d8944..ef8ed2e662e7 100644 --- a/samples/webrequest/webrequest.cpp +++ b/samples/webrequest/webrequest.cpp @@ -14,6 +14,7 @@ #include "wx/wx.h" #endif +#include "wx/cmdline.h" #include "wx/notebook.h" #include "wx/artprov.h" #include "wx/creddlg.h" @@ -40,7 +41,7 @@ class WebRequestFrame : public wxFrame Page_Advanced }; - WebRequestFrame(const wxString& title): + WebRequestFrame(const wxString& title, const wxString& url) : wxFrame(nullptr, wxID_ANY, title) { // set the frame icon @@ -54,7 +55,8 @@ class WebRequestFrame : public wxFrame mainSizer->Add(new wxStaticText(this, wxID_ANY, "Request URL:"), wxSizerFlags().Border()); m_urlTextCtrl = new wxTextCtrl(this, wxID_ANY, - "https://www.wxwidgets.org/downloads/logos/blocks.png", + url.empty() ? "https://www.wxwidgets.org/downloads/logos/blocks.png" + : url, wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER); mainSizer->Add(m_urlTextCtrl, @@ -178,6 +180,8 @@ class WebRequestFrame : public wxFrame m_downloadProgressTimer.Bind(wxEVT_TIMER, &WebRequestFrame::OnProgressTimer, this); + + m_urlTextCtrl->SetFocus(); } virtual ~WebRequestFrame() @@ -507,11 +511,33 @@ class WebRequestApp : public wxApp wxInitAllImageHandlers(); // create the main application window - WebRequestFrame *frame = new WebRequestFrame("wxWebRequest Sample App"); + WebRequestFrame *frame = new WebRequestFrame("wxWebRequest Sample App", m_url); frame->Show(true); return true; } + + virtual void OnInitCmdLine(wxCmdLineParser& parser) override + { + parser.AddParam("url", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL); + + wxApp::OnInitCmdLine(parser); + } + + virtual bool OnCmdLineParsed(wxCmdLineParser& parser) override + { + if ( !wxApp::OnCmdLineParsed(parser) ) + return false; + + if ( parser.GetParamCount() > 0 ) + m_url = parser.GetParam(0); + + return true; + } + +private: + // URL specified on the command line, if any. + wxString m_url; }; wxIMPLEMENT_APP(WebRequestApp); diff --git a/samples/xrc/myframe.cpp b/samples/xrc/myframe.cpp index b7660c1eb47a..e9eb183709ee 100644 --- a/samples/xrc/myframe.cpp +++ b/samples/xrc/myframe.cpp @@ -449,3 +449,61 @@ void MyFrame::OnInfoBarShowMessage(wxCommandEvent& event) #endif } + +// Define the wxVListBox subclass here + +#include + +class wxVListBoxDerived : public wxVListBox +{ +public: + // the derived class must implement this function to actually draw the item + // with the given index on the provided DC + virtual void OnDrawItem(wxDC& dc, const wxRect& rect, size_t n) const override; + + // the derived class must implement this method to return the height of the + // specified item + virtual wxCoord OnMeasureItem(size_t n) const override; + +private: + wxDECLARE_DYNAMIC_CLASS(wxVListBoxDerived); + wxDECLARE_EVENT_TABLE(); + + /* XRC requires default constructor, and Create() is not + virtual, so initialization must be done here */ + void OnCreate(wxWindowCreateEvent& event); + + wxString GetItem(size_t n) const; +}; + +wxIMPLEMENT_DYNAMIC_CLASS(wxVListBoxDerived, wxVListBox); + +wxBEGIN_EVENT_TABLE(wxVListBoxDerived, wxVListBox) + EVT_WINDOW_CREATE(wxVListBoxDerived::OnCreate) +wxEND_EVENT_TABLE() + +void wxVListBoxDerived::OnDrawItem(wxDC& dc, const wxRect& rect, size_t n) const +{ + dc.DrawText(GetItem(n), rect.GetLeftTop()); +} + +wxCoord wxVListBoxDerived::OnMeasureItem(size_t n) const +{ + // safe to const_cast since we're just using GetTextExtent() + wxInfoDC dc(const_cast(this)); + return dc.GetTextExtent(GetItem(n)).y; +} + +/* XRC requires default constructor, and Create() is not + virtual, so initialization must be done here */ +void wxVListBoxDerived::OnCreate(wxWindowCreateEvent& event) +{ + SetItemCount(10); + + event.Skip(); +} + +wxString wxVListBoxDerived::GetItem(size_t n) const +{ + return wxString::Format("Item %zu", n); +} diff --git a/samples/xrc/rc/controls.xrc b/samples/xrc/rc/controls.xrc index 9617db25e676..c68972f954db 100644 --- a/samples/xrc/rc/controls.xrc +++ b/samples/xrc/rc/controls.xrc @@ -1559,6 +1559,34 @@ lay them out using wxSizers, absolute positioning, everything you like! + + + + + 1 + 0 + 0 + 0 + 0 + 0 + + wxALIGN_CENTER|wxALL + 5 + + 250,80 + + + + wxALIGN_CENTER|wxALL + 5 + + 250,80 + + + + + + diff --git a/setup.h.in b/setup.h.in index dd18cb84069f..d09cb2788479 100644 --- a/setup.h.in +++ b/setup.h.in @@ -165,8 +165,6 @@ #define wxUSE_STD_STRING_CONV_IN_WXSTRING 0 -#define wxUSE_LONGLONG 0 - #define wxUSE_BASE64 0 #define wxUSE_CONSOLE_EVENTLOOP 0 diff --git a/setup.h_vms b/setup.h_vms index edef133fac57..e8bed9a02283 100644 --- a/setup.h_vms +++ b/setup.h_vms @@ -197,8 +197,6 @@ typedef pid_t GPid; #define wxUSE_STD_STRING_CONV_IN_WXSTRING 0 -#define wxUSE_LONGLONG 1 - #define wxUSE_BASE64 1 #define wxUSE_CONSOLE_EVENTLOOP 1 diff --git a/src/aui/auibar.cpp b/src/aui/auibar.cpp index 9cedf70beeaa..fdaaa6aedfe1 100644 --- a/src/aui/auibar.cpp +++ b/src/aui/auibar.cpp @@ -2549,8 +2549,6 @@ void wxAuiToolBar::OnPaint(wxPaintEvent& WXUNUSED(evt)) void wxAuiToolBar::OnLeftDown(wxMouseEvent& evt) { - wxRect cli_rect(wxPoint(0,0), GetClientSize()); - if (m_gripperSizerItem) { wxRect gripper_rect = m_gripperSizerItem->GetRect(); diff --git a/src/aui/auibook.cpp b/src/aui/auibook.cpp index ed4055ae2588..4f140d1223e7 100644 --- a/src/aui/auibook.cpp +++ b/src/aui/auibook.cpp @@ -1550,6 +1550,16 @@ class wxTabFrame : public wxWindow m_tabCtrlHeight = h; } + // As we don't have a valid HWND, the base class version doesn't work for + // this window, so override it to return the appropriate DPI. + wxSize GetDPI() const override + { + if (!m_tabs) + return wxWindow::GetDPI(); + + return m_tabs->GetDPI(); + } + protected: void DoSetSize(int x, int y, int width, int height, @@ -2618,7 +2628,6 @@ void wxAuiNotebook::OnTabDragMotion(wxAuiNotebookEvent& evt) { wxPoint screen_pt = ::wxGetMousePosition(); wxPoint client_pt = ScreenToClient(screen_pt); - wxPoint zero(0,0); wxAuiTabCtrl* src_tabs = (wxAuiTabCtrl*)evt.GetEventObject(); wxAuiTabCtrl* dest_tabs = GetTabCtrlFromPoint(client_pt); @@ -2700,9 +2709,7 @@ void wxAuiNotebook::OnTabDragMotion(wxAuiNotebookEvent& evt) if (nb != this) { - wxRect hint_rect = tab_ctrl->GetClientRect(); - tab_ctrl->ClientToScreen(&hint_rect.x, &hint_rect.y); - m_mgr.ShowHint(hint_rect); + m_mgr.UpdateHint(tab_ctrl->GetScreenRect()); return; } } @@ -2736,13 +2743,11 @@ void wxAuiNotebook::OnTabDragMotion(wxAuiNotebookEvent& evt) if (dest_tabs) { - wxRect hint_rect = dest_tabs->GetRect(); - ClientToScreen(&hint_rect.x, &hint_rect.y); - m_mgr.ShowHint(hint_rect); + m_mgr.UpdateHint(dest_tabs->GetScreenRect()); } else { - m_mgr.DrawHintRect(m_dummyWnd, client_pt, zero); + m_mgr.DrawHintRect(m_dummyWnd, client_pt); } } @@ -2901,10 +2906,8 @@ void wxAuiNotebook::OnTabEndDrag(wxAuiNotebookEvent& evt) } else { - wxPoint zero(0,0); wxRect rect = m_mgr.CalculateHintRect(m_dummyWnd, - mouse_client_pt, - zero); + mouse_client_pt); if (rect.IsEmpty()) { // there is no suitable drop location here, exit out diff --git a/src/aui/dockart.cpp b/src/aui/dockart.cpp index 83a1e5fd2b1a..4512f1eaa2e4 100644 --- a/src/aui/dockart.cpp +++ b/src/aui/dockart.cpp @@ -809,6 +809,8 @@ void wxAuiDefaultDockArt::DrawPaneButton(wxDC& dc, bmp.GetLogicalHeight() - window->FromDIP(1)); } + wxDCClipper clip(dc, rect); + // draw the button itself dc.DrawBitmap(bmp, rect.x, rect.y, true); } diff --git a/src/aui/framemanager.cpp b/src/aui/framemanager.cpp index d972f40adf1a..568cd57020d5 100644 --- a/src/aui/framemanager.cpp +++ b/src/aui/framemanager.cpp @@ -25,6 +25,7 @@ #include "wx/aui/floatpane.h" #include "wx/aui/tabmdi.h" #include "wx/aui/auibar.h" +#include "wx/aui/serializer.h" #include "wx/mdi.h" #include "wx/wupdlock.h" @@ -78,8 +79,10 @@ wxIMPLEMENT_CLASS(wxAuiManager, wxEvtHandler); const int auiToolBarLayer = 10; // -- static utility functions -- +namespace +{ -static wxBitmap wxCreateVenetianBlindsBitmap(wxByte r, wxByte g, wxByte b, wxByte a) +wxBitmap wxCreateVenetianBlindsBitmap(wxByte r, wxByte g, wxByte b, wxByte a) { const unsigned char c = wxSystemSettings::GetAppearance().IsDark() ? 220 : 5; @@ -96,10 +99,11 @@ static wxBitmap wxCreateVenetianBlindsBitmap(wxByte r, wxByte g, wxByte b, wxByt // to wxAuiPaneInfo classes, thus this function is necessary to reliably // reconstruct that relationship in the new dock info and pane info arrays -static void CopyDocksAndPanes(wxAuiDockInfoArray& dest_docks, - wxAuiPaneInfoArray& dest_panes, - const wxAuiDockInfoArray& src_docks, - const wxAuiPaneInfoArray& src_panes) +void +CopyDocksAndPanes(wxAuiDockInfoArray& dest_docks, + wxAuiPaneInfoArray& dest_panes, + const wxAuiDockInfoArray& src_docks, + const wxAuiPaneInfoArray& src_panes) { dest_docks = src_docks; dest_panes = src_panes; @@ -116,8 +120,7 @@ static void CopyDocksAndPanes(wxAuiDockInfoArray& dest_docks, // GetMaxLayer() is an internal function which returns // the highest layer inside the specified dock -static int GetMaxLayer(const wxAuiDockInfoArray& docks, - int dock_direction) +int GetMaxLayer(const wxAuiDockInfoArray& docks, int dock_direction) { int i, dock_count, max_layer = 0; for (i = 0, dock_count = docks.GetCount(); i < dock_count; ++i) @@ -133,7 +136,7 @@ static int GetMaxLayer(const wxAuiDockInfoArray& docks, // GetMaxRow() is an internal function which returns // the highest layer inside the specified dock -static int GetMaxRow(const wxAuiPaneInfoArray& panes, int direction, int layer) +int GetMaxRow(const wxAuiPaneInfoArray& panes, int direction, int layer) { int i, pane_count, max_row = 0; for (i = 0, pane_count = panes.GetCount(); i < pane_count; ++i) @@ -151,9 +154,10 @@ static int GetMaxRow(const wxAuiPaneInfoArray& panes, int direction, int layer) // DoInsertDockLayer() is an internal function that inserts a new dock // layer by incrementing all existing dock layer values by one -static void DoInsertDockLayer(wxAuiPaneInfoArray& panes, - int dock_direction, - int dock_layer) +void +DoInsertDockLayer(wxAuiPaneInfoArray& panes, + int dock_direction, + int dock_layer) { int i, pane_count; for (i = 0, pane_count = panes.GetCount(); i < pane_count; ++i) @@ -168,10 +172,11 @@ static void DoInsertDockLayer(wxAuiPaneInfoArray& panes, // DoInsertDockLayer() is an internal function that inserts a new dock // row by incrementing all existing dock row values by one -static void DoInsertDockRow(wxAuiPaneInfoArray& panes, - int dock_direction, - int dock_layer, - int dock_row) +void +DoInsertDockRow(wxAuiPaneInfoArray& panes, + int dock_direction, + int dock_layer, + int dock_row) { int i, pane_count; for (i = 0, pane_count = panes.GetCount(); i < pane_count; ++i) @@ -187,11 +192,12 @@ static void DoInsertDockRow(wxAuiPaneInfoArray& panes, // DoInsertDockLayer() is an internal function that inserts a space for // another dock pane by incrementing all existing dock row values by one -static void DoInsertPane(wxAuiPaneInfoArray& panes, - int dock_direction, - int dock_layer, - int dock_row, - int dock_pos) +void +DoInsertPane(wxAuiPaneInfoArray& panes, + int dock_direction, + int dock_layer, + int dock_row, + int dock_pos) { int i, pane_count; for (i = 0, pane_count = panes.GetCount(); i < pane_count; ++i) @@ -206,14 +212,28 @@ static void DoInsertPane(wxAuiPaneInfoArray& panes, } } +// Flags for FindDocks() +enum class FindDocksFlags +{ + // No special flags. + None = 0, + + // Stop after the first found dock, returned array has 0 or 1 elements. + OnlyFirst = 1, + + // Reverse the order of the returned docks, useful for right/bottom docks. + ReverseOrder = 2 +}; + // FindDocks() is an internal function that returns a list of docks which meet // the specified conditions in the parameters and returns a sorted array // (sorted by layer and then row) -static void FindDocks(wxAuiDockInfoArray& docks, - int dock_direction, - int dock_layer, - int dock_row, - wxAuiDockInfoPtrArray& arr) +wxAuiDockInfoPtrArray +FindDocks(wxAuiDockInfoArray& docks, + int dock_direction, + int dock_layer, + int dock_row, + FindDocksFlags flags = FindDocksFlags::None) { int begin_layer = dock_layer; int end_layer = dock_layer; @@ -243,24 +263,49 @@ static void FindDocks(wxAuiDockInfoArray& docks, end_row = max_row; } - arr.Clear(); + wxAuiDockInfoPtrArray arr; for (layer = begin_layer; layer <= end_layer; ++layer) + { for (row = begin_row; row <= end_row; ++row) + { for (i = 0; i < dock_count; ++i) { wxAuiDockInfo& d = docks.Item(i); if (dock_direction == -1 || dock_direction == d.dock_direction) { if (d.dock_layer == layer && d.dock_row == row) - arr.Add(&d); + { + switch ( flags ) + { + case FindDocksFlags::None: + arr.Add(&d); + break; + + case FindDocksFlags::OnlyFirst: + arr.Add(&d); + return arr; + + case FindDocksFlags::ReverseOrder: + // Inserting into an array is inefficient, but + // we won't have more than a few docks here, so + // it doesn't matter, and it keeps the code + // simpler. + arr.Insert(&d, 0); + break; + } + } } } + } + } + + return arr; } // FindPaneInDock() looks up a specified window pointer inside a dock. // If found, the corresponding wxAuiPaneInfo pointer is returned, otherwise nullptr. -static wxAuiPaneInfo* FindPaneInDock(const wxAuiDockInfo& dock, wxWindow* window) +wxAuiPaneInfo* FindPaneInDock(const wxAuiDockInfo& dock, wxWindow* window) { int i, count = dock.panes.GetCount(); for (i = 0; i < count; ++i) @@ -274,9 +319,10 @@ static wxAuiPaneInfo* FindPaneInDock(const wxAuiDockInfo& dock, wxWindow* window // RemovePaneFromDocks() removes a pane window from all docks // with a possible exception specified by parameter "ex_cept" -static void RemovePaneFromDocks(wxAuiDockInfoArray& docks, - wxAuiPaneInfo& pane, - wxAuiDockInfo* ex_cept = nullptr ) +void +RemovePaneFromDocks(wxAuiDockInfoArray& docks, + wxAuiPaneInfo& pane, + wxAuiDockInfo* ex_cept = nullptr) { int i, dock_count; for (i = 0, dock_count = docks.GetCount(); i < dock_count; ++i) @@ -296,7 +342,7 @@ static void RemovePaneFromDocks(wxAuiDockInfoArray& docks, // RenumberDockRows() takes a dock and assigns sequential numbers // to existing rows. Basically it takes out the gaps; so if a // dock has rows with numbers 0,2,5, they will become 0,1,2 -static void RenumberDockRows(wxAuiDockInfoPtrArray& docks) +void RenumberDockRows(wxAuiDockInfoPtrArray& docks) { int i, dock_count; for (i = 0, dock_count = docks.GetCount(); i < dock_count; ++i) @@ -311,6 +357,8 @@ static void RenumberDockRows(wxAuiDockInfoPtrArray& docks) } */ +} // anonymous namespace + // SetActivePane() sets the active pane, as well as cycles through // every other pane and makes sure that all others' active flags @@ -778,15 +826,15 @@ bool wxAuiManager::AddPane(wxWindow* window, const wxAuiPaneInfo& paneInfo) if (pinfo.best_size == wxDefaultSize && pinfo.window) { - pinfo.best_size = pinfo.window->GetBestSize(); + // It's important to use the current window size and not the best size + // when adding a pane corresponding to a previously docked window: it + // shouldn't change its size if it's dragged and docked in a different + // place. + pinfo.best_size = pinfo.window->GetSize(); - if (pinfo.min_size != wxDefaultSize) - { - if (pinfo.best_size.x < pinfo.min_size.x) - pinfo.best_size.x = pinfo.min_size.x; - if (pinfo.best_size.y < pinfo.min_size.y) - pinfo.best_size.y = pinfo.min_size.y; - } + // But we still shouldn't make it too small. + pinfo.best_size.IncTo(pinfo.window->GetBestSize()); + pinfo.best_size.IncTo(pinfo.min_size); } @@ -1340,6 +1388,205 @@ bool wxAuiManager::LoadPerspective(const wxString& layout, bool update) return true; } +// These helper functions are used by SaveLayout() and LoadLayout() below, as +// we save the panes and docks geometries using DIPs on all platforms in order +// to ensure that they're restored correctly if the display DPI changes between +// saving and restoring the layout even on the platforms not using DIPs. +namespace +{ + +void MakeDIP(wxWindow* w, wxPoint& pos) +{ + pos = w->ToDIP(pos); +} + +void MakeDIP(wxWindow* w, wxSize& size) +{ + size = w->ToDIP(size); +} + +void MakeDIP(wxWindow* w, wxRect& rect) +{ + rect = wxRect{w->ToDIP(rect.GetPosition()), w->ToDIP(rect.GetSize())}; +} + +void MakeLogical(wxWindow* w, wxPoint& pos) +{ + pos = w->FromDIP(pos); +} + +void MakeLogical(wxWindow* w, wxSize& size) +{ + size = w->FromDIP(size); +} + +void MakeLogical(wxWindow* w, wxRect& rect) +{ + rect = wxRect{w->FromDIP(rect.GetPosition()), w->FromDIP(rect.GetSize())}; +} + +} // anonymous namespace + +void wxAuiManager::SaveLayout(wxAuiSerializer& serializer) const +{ + serializer.BeforeSave(); + + if ( !m_panes.empty() ) + { + serializer.BeforeSavePanes(); + + for ( const auto& pane : m_panes ) + { + auto paneDIP = pane; + + MakeDIP(m_frame, paneDIP.best_size); + MakeDIP(m_frame, paneDIP.min_size); + MakeDIP(m_frame, paneDIP.max_size); + + MakeDIP(m_frame, paneDIP.floating_pos); + MakeDIP(m_frame, paneDIP.floating_size); + + MakeDIP(m_frame, paneDIP.rect); + + serializer.SavePane(paneDIP); + } + + serializer.AfterSavePanes(); + } + + if ( !m_docks.empty() ) + { + serializer.BeforeSaveDocks(); + + for ( const auto& dock : m_docks ) + { + auto dockDIP = dock; + + MakeDIP(m_frame, dockDIP.rect); + + // Update dock sizes to ensure that restoring this layout later + // restores the same geometry as is used now: if we didn't do it, + // panes would have their initial sizes. + switch ( dock.dock_direction ) + { + case wxAUI_DOCK_TOP: + case wxAUI_DOCK_BOTTOM: + dockDIP.size = dock.rect.height; + break; + + case wxAUI_DOCK_LEFT: + case wxAUI_DOCK_RIGHT: + dockDIP.size = dock.rect.width; + break; + + case wxAUI_DOCK_CENTER: + // Not clear what to do for this one, but it shouldn't + // matter as its size is determined by what remains + // available after positioning the rest of the elements, so + // don't do anything. + break; + + case wxAUI_DOCK_NONE: + wxFAIL_MSG("invalid dock direction"); + break; + } + + serializer.SaveDock(dockDIP); + } + + serializer.AfterSaveDocks(); + } + + serializer.AfterSave(); +} + +void wxAuiManager::LoadLayout(wxAuiDeserializer& deserializer) +{ + deserializer.BeforeLoad(); + + // Note that we don't reset m_hasMaximized here but use a local variable so + // as to avoid modifying m_hasMaximized in case one of the deserializer + // functions called below throws an exception. + bool hasMaximized = false; + + // Also keep local variables for the existing (and possibly updated) panes + // and the new ones for the same reason. + wxAuiPaneInfoArray panes = m_panes; + + struct NewPane + { + // In C++11 this ctor is required. + NewPane(wxWindow* window_, const wxAuiPaneInfo& info_) + : window(window_), info(info_) + { + } + + wxWindow* window = nullptr; + wxAuiPaneInfo info; + }; + std::vector newPanes; + + for ( const auto& paneDIP : deserializer.LoadPanes() ) + { + auto pane = paneDIP; + + MakeLogical(m_frame, pane.best_size); + MakeLogical(m_frame, pane.min_size); + MakeLogical(m_frame, pane.max_size); + + MakeLogical(m_frame, pane.floating_pos); + MakeLogical(m_frame, pane.floating_size); + + MakeLogical(m_frame, pane.rect); + + if ( pane.IsMaximized() ) + hasMaximized = true; + + // Find the pane with the same name in the existing layout. + bool found = false; + for ( auto& existingPane : panes ) + { + if ( existingPane.name == pane.name ) + { + // Update the existing pane with the restored layout. + existingPane.SafeSet(pane); + + found = true; + break; + } + } + + // This pane couldn't be found in the existing layout, let deserializer + // create a new window for it if desired, otherwise just ignore it. + if ( !found ) + { + if ( const auto w = deserializer.CreatePaneWindow(pane) ) + newPanes.emplace_back(w, pane); + } + } + + wxAuiDockInfoArray docks; + for ( const auto& dockDIP : deserializer.LoadDocks() ) + { + auto dock = dockDIP; + + MakeLogical(m_frame, dock.rect); + + docks.push_back(dock); + } + + // After loading everything successfully, do update the internal variables. + m_hasMaximized = hasMaximized; + m_panes.swap(panes); + + for ( const auto& newPane : newPanes ) + AddPane(newPane.window, newPane.info); + + m_docks.swap(docks); + + deserializer.AfterLoad(); +} + void wxAuiManager::GetPanePositionsAndSizes(wxAuiDockInfo& dock, wxArrayInt& positions, wxArrayInt& sizes) @@ -1772,8 +2019,6 @@ wxSizer* wxAuiManager::LayoutAll(wxAuiPaneInfoArray& panes, wxAuiDockUIPartArray& uiparts, bool spacer_only) { - wxBoxSizer* container = new wxBoxSizer(wxVERTICAL); - int pane_borderSize = m_frame->FromDIP(m_art->GetMetric(wxAUI_DOCKART_PANE_BORDER_SIZE)); int caption_size = m_frame->FromDIP(m_art->GetMetric(wxAUI_DOCKART_CAPTION_SIZE)); wxSize cli_size = m_frame->GetClientSize(); @@ -1806,16 +2051,17 @@ wxSizer* wxAuiManager::LayoutAll(wxAuiPaneInfoArray& panes, // find any docks with the same dock direction, dock layer, and // dock row as the pane we are working on - wxAuiDockInfo* dock; - wxAuiDockInfoPtrArray arr; - FindDocks(docks, p.dock_direction, p.dock_layer, p.dock_row, arr); - - if (arr.GetCount() > 0) + wxAuiDockInfo* dock = nullptr; + for ( auto dockInfo : FindDocks(docks, + p.dock_direction, + p.dock_layer, + p.dock_row, + FindDocksFlags::OnlyFirst) ) { // found the right dock - dock = arr.Item(0); + dock = dockInfo; } - else + if ( !dock ) { // dock was not found, so we need to create a new one wxAuiDockInfo d; @@ -2037,17 +2283,12 @@ wxSizer* wxAuiManager::LayoutAll(wxAuiPaneInfoArray& panes, wxSizer* cont = nullptr; wxSizer* middle = nullptr; int layer = 0; - int row, row_count; for (layer = 0; layer <= max_layer; ++layer) { - wxAuiDockInfoPtrArray arr; - // find any docks in this layer - FindDocks(docks, -1, layer, -1, arr); - // if there aren't any, skip to the next layer - if (arr.IsEmpty()) + if ( FindDocks(docks, -1, layer, -1, FindDocksFlags::OnlyFirst).IsEmpty() ) continue; wxSizer* old_cont = cont; @@ -2058,11 +2299,9 @@ wxSizer* wxAuiManager::LayoutAll(wxAuiPaneInfoArray& panes, // find any top docks in this layer - FindDocks(docks, wxAUI_DOCK_TOP, layer, -1, arr); - if (!arr.IsEmpty()) + for ( auto dockInfo : FindDocks(docks, wxAUI_DOCK_TOP, layer, -1) ) { - for (row = 0, row_count = arr.GetCount(); row < row_count; ++row) - LayoutAddDock(cont, *arr.Item(row), uiparts, spacer_only); + LayoutAddDock(cont, *dockInfo, uiparts, spacer_only); } @@ -2072,11 +2311,9 @@ wxSizer* wxAuiManager::LayoutAll(wxAuiPaneInfoArray& panes, middle = new wxBoxSizer(wxHORIZONTAL); // find any left docks in this layer - FindDocks(docks, wxAUI_DOCK_LEFT, layer, -1, arr); - if (!arr.IsEmpty()) + for ( auto dockInfo : FindDocks(docks, wxAUI_DOCK_LEFT, layer, -1) ) { - for (row = 0, row_count = arr.GetCount(); row < row_count; ++row) - LayoutAddDock(middle, *arr.Item(row), uiparts, spacer_only); + LayoutAddDock(middle, *dockInfo, uiparts, spacer_only); } // add content dock (or previous layer's sizer @@ -2084,13 +2321,13 @@ wxSizer* wxAuiManager::LayoutAll(wxAuiPaneInfoArray& panes, if (!old_cont) { // find any center docks - FindDocks(docks, wxAUI_DOCK_CENTER, -1, -1, arr); - if (!arr.IsEmpty()) + bool hasCenter = false; + for ( auto dockInfo : FindDocks(docks, wxAUI_DOCK_CENTER, -1, -1) ) { - for (row = 0,row_count = arr.GetCount(); rowAdd(1,1, 1, wxEXPAND); @@ -2110,26 +2347,24 @@ wxSizer* wxAuiManager::LayoutAll(wxAuiPaneInfoArray& panes, } // find any right docks in this layer - FindDocks(docks, wxAUI_DOCK_RIGHT, layer, -1, arr); - if (!arr.IsEmpty()) + for ( auto dockInfo : FindDocks(docks, wxAUI_DOCK_RIGHT, layer, -1, + FindDocksFlags::ReverseOrder) ) { - for (row = arr.GetCount()-1; row >= 0; --row) - LayoutAddDock(middle, *arr.Item(row), uiparts, spacer_only); + LayoutAddDock(middle, *dockInfo, uiparts, spacer_only); } if (middle->GetChildren().GetCount() > 0) cont->Add(middle, 1, wxEXPAND); - else + else delete middle; // find any bottom docks in this layer - FindDocks(docks, wxAUI_DOCK_BOTTOM, layer, -1, arr); - if (!arr.IsEmpty()) + for ( auto dockInfo : FindDocks(docks, wxAUI_DOCK_BOTTOM, layer, -1, + FindDocksFlags::ReverseOrder) ) { - for (row = arr.GetCount()-1; row >= 0; --row) - LayoutAddDock(cont, *arr.Item(row), uiparts, spacer_only); + LayoutAddDock(cont, *dockInfo, uiparts, spacer_only); } } @@ -2150,8 +2385,7 @@ wxSizer* wxAuiManager::LayoutAll(wxAuiPaneInfoArray& panes, uiparts.Add(part); } - container->Add(cont, 1, wxEXPAND); - return container; + return cont; } @@ -2182,6 +2416,17 @@ void wxAuiManager::GetDockSizeConstraint(double* width_pct, double* height_pct) void wxAuiManager::Update() { + wxTopLevelWindow * const + tlw = wxDynamicCast(wxGetTopLevelParent(m_frame), wxTopLevelWindow); + if ( tlw && tlw->IsIconized() ) + { + // We can't compute the layout correctly when the frame is minimized + // because at least under MSW its client size is (0,0) in this case + // but, luckily, we don't need to do it right now anyhow. + m_updateOnRestore = true; + return; + } + m_hoverButton = nullptr; m_actionPart = nullptr; @@ -2984,11 +3229,14 @@ void wxAuiManager::OnHintFadeTimer(wxTimerEvent& WXUNUSED(event)) ShowHint(m_lastHint); } -void wxAuiManager::ShowHint(const wxRect& rect) +void wxAuiManager::ShowHint(const wxRect& rectScreen) { wxOverlayDC dc(m_overlay, m_frame); dc.Clear(); + wxRect rect = rectScreen; + m_frame->ScreenToClient(&rect.x, &rect.y); + wxDCClipper clip(dc, rect); if ( m_flags & wxAUI_MGR_RECTANGLE_HINT ) @@ -3125,7 +3373,7 @@ void wxAuiManager::StartPaneDrag(wxWindow* pane_window, // first calls DoDrop() to determine the exact position the pane would // be at were if dropped. If the pane would indeed become docked at the // specified drop point, the rectangle hint will be returned in -// client coordinates. Otherwise, an empty rectangle is returned. +// screen coordinates. Otherwise, an empty rectangle is returned. // |pane_window| is the window pointer of the pane being dragged, |pt| is // the mouse position, in client coordinates. |offset| describes the offset // that the mouse is from the upper-left corner of the item being dragged @@ -3196,15 +3444,15 @@ wxRect wxAuiManager::CalculateHintRect(wxWindow* pane_window, delete sizer; - if ( !rect.IsEmpty() ) - { - rect.Offset( m_frame->GetClientAreaOrigin() ); + if ( rect.IsEmpty() ) + return rect; - if ( m_frame->GetLayoutDirection() == wxLayout_RightToLeft ) - { - // Mirror rectangle in RTL mode - rect.x -= rect.GetWidth(); - } + m_frame->ClientToScreen(&rect.x, &rect.y); + + if ( m_frame->GetLayoutDirection() == wxLayout_RightToLeft ) + { + // Mirror rectangle in RTL mode + rect.x -= rect.GetWidth(); } return rect; @@ -3218,13 +3466,18 @@ void wxAuiManager::DrawHintRect(wxWindow* pane_window, const wxPoint& pt, const wxPoint& offset) { - wxRect rect = CalculateHintRect(pane_window, pt, offset); + const wxRect rect = CalculateHintRect(pane_window, pt, offset); + if (rect != m_lastHint) + UpdateHint(rect); +} +void wxAuiManager::UpdateHint(const wxRect& rect) +{ if (rect.IsEmpty()) { HideHint(); } - else if (m_lastHint != rect) // if the hint rect is the same as last time, don't do anything + else { m_lastHint = rect; @@ -3644,8 +3897,19 @@ void wxAuiManager::OnSize(wxSizeEvent& event) { if (m_frame) { - DoFrameLayout(); - Repaint(); + if ( m_updateOnRestore ) + { + // If we had postponed updating, do it now: we only receive size + // events once the window is restored. + m_updateOnRestore = false; + + Update(); + } + else // Otherwise just re-layout, without redoing the full update. + { + DoFrameLayout(); + Repaint(); + } #if wxUSE_MDI if (wxDynamicCast(m_frame, wxMDIParentFrame)) @@ -3913,7 +4177,7 @@ bool wxAuiManager::DoEndResizeAction(wxMouseEvent& event) } #endif - wxRect& rect = m_actionPart->dock->rect; + const wxRect& rect = m_actionPart->dock->rect; wxPoint new_pos(event.m_x - m_actionOffset.x, event.m_y - m_actionOffset.y); @@ -4179,12 +4443,11 @@ void wxAuiManager::OnLeftUp(wxMouseEvent& event) wxASSERT_MSG(pane.IsOk(), wxT("Pane window not found")); // save the new positions - wxAuiDockInfoPtrArray docks; - FindDocks(m_docks, pane.dock_direction, - pane.dock_layer, pane.dock_row, docks); - if (docks.GetCount() == 1) + for ( auto dockInfo : FindDocks(m_docks, pane.dock_direction, + pane.dock_layer, pane.dock_row, + FindDocksFlags::OnlyFirst) ) { - wxAuiDockInfo& dock = *docks.Item(0); + wxAuiDockInfo& dock = *dockInfo; wxArrayInt pane_positions, pane_sizes; GetPanePositionsAndSizes(dock, pane_positions, pane_sizes); @@ -4246,17 +4509,9 @@ void wxAuiManager::OnMotion(wxMouseEvent& event) } else { - wxRect rect(pos, m_actionPart->rect.GetSize()); - - if (!m_actionHintRect.IsEmpty()) - { - m_actionHintRect = wxRect(); - } - // draw resize hint - m_actionHintRect = rect; - rect.SetPosition(rect.GetPosition() + m_frame->GetClientAreaOrigin()); - wxDrawOverlayResizeHint(m_frame, m_overlay, rect); + m_actionHintRect = wxRect(pos, m_actionPart->rect.GetSize()); + wxDrawOverlayResizeHint(m_frame, m_overlay, m_actionHintRect); } } } diff --git a/src/common/any.cpp b/src/common/any.cpp index c4bb067ab64d..3a16df39c790 100644 --- a/src/common/any.cpp +++ b/src/common/any.cpp @@ -150,7 +150,6 @@ bool wxConvertAnyToVariant(const wxAny& any, wxVariant* variant) // and others to "longlong". if ( wxANY_CHECK_TYPE(any, signed int) ) { -#if defined(wxLongLong_t) && wxUSE_LONGLONG wxLongLong_t ll = 0; if ( any.GetAs(&ll) ) { @@ -166,13 +165,6 @@ bool wxConvertAnyToVariant(const wxAny& any, wxVariant* variant) { return false; } -#else - long l; - if ( any.GetAs(&l) ) - *variant = l; - else - return false; -#endif return true; } @@ -240,24 +232,12 @@ wxIMPLEMENT_DYNAMIC_CLASS(wxAnyValueTypeGlobalsManager, wxModule); // Dynamic conversion member functions //------------------------------------------------------------------------- -// -// Define integer minimum and maximum as helpers -#ifdef wxLongLong_t - #define UseIntMin (wxINT64_MIN) - #define UseIntMax (wxINT64_MAX) - #define UseUintMax (wxUINT64_MAX) -#else - #define UseIntMin (LONG_MIN) - #define UseIntMax (LONG_MAX) - #define UseUintMax (ULONG_MAX) -#endif - namespace { -const double UseIntMinF = static_cast(UseIntMin); -const double UseIntMaxF = static_cast(UseIntMax); -const double UseUintMaxF = static_cast(UseUintMax); +const double UseIntMinF = static_cast(wxINT64_MIN); +const double UseIntMaxF = static_cast(wxINT64_MAX); +const double UseUintMaxF = static_cast(wxUINT64_MAX); } // anonymous namespace @@ -268,12 +248,8 @@ bool wxAnyValueTypeImplInt::ConvertValue(const wxAnyValueBuffer& src, wxAnyBaseIntType value = GetValue(src); if ( wxANY_VALUE_TYPE_CHECK_TYPE(dstType, wxString) ) { -#if defined(wxLongLong_t) && wxUSE_LONGLONG wxLongLong ll(value); wxString s = ll.ToString(); -#else - wxString s = wxString::Format(wxS("%ld"), (long)value); -#endif wxAnyValueTypeImpl::SetValue(s, dst); } else if ( wxANY_VALUE_TYPE_CHECK_TYPE(dstType, wxAnyBaseUintType) ) @@ -306,17 +282,13 @@ bool wxAnyValueTypeImplUint::ConvertValue(const wxAnyValueBuffer& src, wxAnyBaseUintType value = GetValue(src); if ( wxANY_VALUE_TYPE_CHECK_TYPE(dstType, wxString) ) { -#if defined(wxLongLong_t) && wxUSE_LONGLONG wxULongLong ull(value); wxString s = ull.ToString(); -#else - wxString s = wxString::Format(wxS("%lu"), (long)value); -#endif wxAnyValueTypeImpl::SetValue(s, dst); } else if ( wxANY_VALUE_TYPE_CHECK_TYPE(dstType, wxAnyBaseIntType) ) { - if ( value > UseIntMax ) + if ( value > wxINT64_MAX ) return false; wxAnyBaseIntType l = (wxAnyBaseIntType) value; wxAnyValueTypeImplInt::SetValue(l, dst); @@ -349,22 +321,14 @@ bool wxAnyConvertString(const wxString& value, else if ( wxANY_VALUE_TYPE_CHECK_TYPE(dstType, wxAnyBaseIntType) ) { wxAnyBaseIntType value2; -#ifdef wxLongLong_t if ( !value.ToLongLong(&value2) ) -#else - if ( !value.ToLong(&value2) ) -#endif return false; wxAnyValueTypeImplInt::SetValue(value2, dst); } else if ( wxANY_VALUE_TYPE_CHECK_TYPE(dstType, wxAnyBaseUintType) ) { wxAnyBaseUintType value2; -#ifdef wxLongLong_t if ( !value.ToULongLong(&value2) ) -#else - if ( !value.ToULong(&value2) ) -#endif return false; wxAnyValueTypeImplUint::SetValue(value2, dst); } diff --git a/src/common/combocmn.cpp b/src/common/combocmn.cpp index b294690b9f5e..cbb4cf0b0298 100644 --- a/src/common/combocmn.cpp +++ b/src/common/combocmn.cpp @@ -116,7 +116,7 @@ wxCONSTRUCTOR_5( wxComboBox, wxWindow*, Parent, wxWindowID, Id, \ #define BMP_BUTTON_MARGIN 4 -#define DEFAULT_POPUP_HEIGHT 400 +#define DEFAULT_POPUP_ITEMS 21 #define DEFAULT_TEXT_INDENT 3 @@ -2159,8 +2159,13 @@ void wxComboCtrlBase::ShowPopup() wxASSERT( !m_popup || m_popup == popup ); // Consistency check. + int heightPopup = m_heightPopup; + if (heightPopup <= 0) + // estimated height for a row containig text + heightPopup = DEFAULT_POPUP_ITEMS * (GetCharHeight() + FromDIP(4)); + wxSize adjustedSize = m_popupInterface->GetAdjustedSize(widthPopup, - m_heightPopup<=0?DEFAULT_POPUP_HEIGHT:m_heightPopup, + heightPopup, maxHeightPopup); popup->SetSize(adjustedSize); diff --git a/src/common/datavcmn.cpp b/src/common/datavcmn.cpp index 03e3a6f4a72f..d3fd80955840 100644 --- a/src/common/datavcmn.cpp +++ b/src/common/datavcmn.cpp @@ -1211,15 +1211,6 @@ bool wxDataViewEditorCtrlEvtHandler::IsEditorSubControl(wxWindow* win) const // wxDataViewColumnBase // --------------------------------------------------------- -void wxDataViewColumnBase::Init(wxDataViewRenderer *renderer, - unsigned int model_column) -{ - m_renderer = renderer; - m_model_column = model_column; - m_owner = nullptr; - m_renderer->SetOwner( (wxDataViewColumn*) this ); -} - wxDataViewColumnBase::~wxDataViewColumnBase() { delete m_renderer; diff --git a/src/common/datstrm.cpp b/src/common/datstrm.cpp index 1314144c8613..870d3cb35295 100644 --- a/src/common/datstrm.cpp +++ b/src/common/datstrm.cpp @@ -78,14 +78,12 @@ wxDataInputStream::wxDataInputStream(wxInputStream& s, const wxMBConv& conv) { } -#if wxHAS_INT64 wxUint64 wxDataInputStream::Read64() { wxUint64 tmp; Read64(&tmp, 1); return tmp; } -#endif // wxHAS_INT64 wxUint32 wxDataInputStream::Read32() { @@ -184,8 +182,6 @@ wxString wxDataInputStream::ReadString() return ret; } -#if wxUSE_LONGLONG - template static void DoReadLL(T *buffer, size_t size, wxInputStream *input, bool be_order) @@ -202,8 +198,8 @@ void DoReadLL(T *buffer, size_t size, wxInputStream *input, bool be_order) buffer[uiIndex] = 0l; for ( unsigned ui = 0; ui != 8; ++ui ) { - buffer[uiIndex] = buffer[uiIndex] * 256l + - DataType((unsigned long) pchBuffer[idx_base + ui]); + buffer[uiIndex] <<= 8; + buffer[uiIndex] += DataType((unsigned long) pchBuffer[idx_base + ui]); } idx_base += 8; @@ -215,8 +211,11 @@ void DoReadLL(T *buffer, size_t size, wxInputStream *input, bool be_order) { buffer[uiIndex] = 0l; for ( unsigned ui=0; ui!=8; ++ui ) - buffer[uiIndex] = buffer[uiIndex] * 256l + - DataType((unsigned long) pchBuffer[idx_base + 7 - ui]); + { + buffer[uiIndex] <<= 8; + buffer[uiIndex] += DataType((unsigned long) pchBuffer[idx_base + 7 - ui]); + } + idx_base += 8; } } @@ -265,10 +264,6 @@ static void DoWriteLL(const T *buffer, size_t size, wxOutputStream *output, bool delete[] pchBuffer; } -#endif // wxUSE_LONGLONG - -#ifdef wxLongLong_t - template static void DoReadI64(T *buffer, size_t size, wxInputStream *input, bool be_order) @@ -320,30 +315,17 @@ void DoWriteI64(const T *buffer, size_t size, wxOutputStream *output, bool be_or } } -#endif // wxLongLong_t - -#if wxHAS_INT64 void wxDataInputStream::Read64(wxUint64 *buffer, size_t size) { -#ifndef wxLongLong_t - DoReadLL(buffer, size, m_input, m_be_order); -#else DoReadI64(buffer, size, m_input, m_be_order); -#endif } void wxDataInputStream::Read64(wxInt64 *buffer, size_t size) { -#ifndef wxLongLong_t - DoReadLL(buffer, size, m_input, m_be_order); -#else DoReadI64(buffer, size, m_input, m_be_order); -#endif } -#endif // wxHAS_INT64 -#if defined(wxLongLong_t) && wxUSE_LONGLONG void wxDataInputStream::Read64(wxULongLong *buffer, size_t size) { DoReadLL(buffer, size, m_input, m_be_order); @@ -353,9 +335,7 @@ void wxDataInputStream::Read64(wxLongLong *buffer, size_t size) { DoReadLL(buffer, size, m_input, m_be_order); } -#endif // wxLongLong_t -#if wxUSE_LONGLONG void wxDataInputStream::ReadLL(wxULongLong *buffer, size_t size) { DoReadLL(buffer, size, m_input, m_be_order); @@ -372,7 +352,6 @@ wxLongLong wxDataInputStream::ReadLL(void) DoReadLL(&ll, (size_t)1, m_input, m_be_order); return ll; } -#endif // wxUSE_LONGLONG void wxDataInputStream::Read32(wxUint32 *buffer, size_t size) { @@ -481,7 +460,6 @@ wxDataInputStream& wxDataInputStream::operator>>(wxUint32& i) return *this; } -#if wxHAS_INT64 wxDataInputStream& wxDataInputStream::operator>>(wxUint64& i) { i = Read64(); @@ -493,9 +471,7 @@ wxDataInputStream& wxDataInputStream::operator>>(wxInt64& i) i = Read64(); return *this; } -#endif // wxHAS_INT64 -#if defined(wxLongLong_t) && wxUSE_LONGLONG wxDataInputStream& wxDataInputStream::operator>>(wxULongLong& i) { i = ReadLL(); @@ -507,7 +483,6 @@ wxDataInputStream& wxDataInputStream::operator>>(wxLongLong& i) i = ReadLL(); return *this; } -#endif // wxLongLong_t wxDataInputStream& wxDataInputStream::operator>>(double& d) { @@ -531,7 +506,6 @@ wxDataOutputStream::wxDataOutputStream(wxOutputStream& s, const wxMBConv& conv) { } -#if wxHAS_INT64 void wxDataOutputStream::Write64(wxUint64 i) { Write64(&i, 1); @@ -541,7 +515,6 @@ void wxDataOutputStream::Write64(wxInt64 i) { Write64(&i, 1); } -#endif // wxHAS_INT64 void wxDataOutputStream::Write32(wxUint32 i) { @@ -627,27 +600,16 @@ void wxDataOutputStream::WriteFloat(float f) } } -#if wxHAS_INT64 void wxDataOutputStream::Write64(const wxUint64 *buffer, size_t size) { -#ifndef wxLongLong_t - DoWriteLL(buffer, size, m_output, m_be_order); -#else DoWriteI64(buffer, size, m_output, m_be_order); -#endif } void wxDataOutputStream::Write64(const wxInt64 *buffer, size_t size) { -#ifndef wxLongLong_t - DoWriteLL(buffer, size, m_output, m_be_order); -#else DoWriteI64(buffer, size, m_output, m_be_order); -#endif } -#endif // wxHAS_INT64 -#if defined(wxLongLong_t) && wxUSE_LONGLONG void wxDataOutputStream::Write64(const wxULongLong *buffer, size_t size) { DoWriteLL(buffer, size, m_output, m_be_order); @@ -657,9 +619,7 @@ void wxDataOutputStream::Write64(const wxLongLong *buffer, size_t size) { DoWriteLL(buffer, size, m_output, m_be_order); } -#endif // wxLongLong_t -#if wxUSE_LONGLONG void wxDataOutputStream::WriteLL(const wxULongLong *buffer, size_t size) { DoWriteLL(buffer, size, m_output, m_be_order); @@ -679,7 +639,6 @@ void wxDataOutputStream::WriteLL(const wxULongLong &ll) { WriteLL(&ll, 1); } -#endif // wxUSE_LONGLONG void wxDataOutputStream::Write32(const wxUint32 *buffer, size_t size) { @@ -788,7 +747,6 @@ wxDataOutputStream& wxDataOutputStream::operator<<(wxUint32 i) return *this; } -#if wxHAS_INT64 wxDataOutputStream& wxDataOutputStream::operator<<(wxUint64 i) { Write64(i); @@ -800,9 +758,7 @@ wxDataOutputStream& wxDataOutputStream::operator<<(wxInt64 i) Write64(i); return *this; } -#endif // wxHAS_INT64 -#if defined(wxLongLong_t) && wxUSE_LONGLONG wxDataOutputStream& wxDataOutputStream::operator<<(const wxULongLong &i) { WriteLL(i); @@ -814,7 +770,6 @@ wxDataOutputStream& wxDataOutputStream::operator<<(const wxLongLong &i) WriteLL(i); return *this; } -#endif // wxLongLong_t wxDataOutputStream& wxDataOutputStream::operator<<(double d) { diff --git a/src/common/dircmn.cpp b/src/common/dircmn.cpp index a270836006fc..069e54569d0f 100644 --- a/src/common/dircmn.cpp +++ b/src/common/dircmn.cpp @@ -309,8 +309,6 @@ wxString wxDir::FindFirst(const wxString& dirname, // wxDir::GetTotalSize() // ---------------------------------------------------------------------------- -#if wxUSE_LONGLONG - class wxDirTraverserSumSize : public wxDirTraverser { public: @@ -374,8 +372,6 @@ wxULongLong wxDir::GetTotalSize(const wxString &dirname, wxArrayString *filesSki return traverser.GetTotalSize(); } -#endif // wxUSE_LONGLONG - // ---------------------------------------------------------------------------- // wxDir helpers // ---------------------------------------------------------------------------- diff --git a/src/common/event.cpp b/src/common/event.cpp index 0fbf530f19a6..dbb7e6f8f7a2 100644 --- a/src/common/event.cpp +++ b/src/common/event.cpp @@ -456,9 +456,7 @@ wxNcPaintEvent::wxNcPaintEvent(wxWindowBase* window) // wxUpdateUIEvent // ---------------------------------------------------------------------------- -#if wxUSE_LONGLONG wxLongLong wxUpdateUIEvent::sm_lastUpdate = 0; -#endif long wxUpdateUIEvent::sm_updateInterval = 0; @@ -509,7 +507,6 @@ bool wxUpdateUIEvent::CanUpdate(wxWindowBase *win) if (sm_updateInterval == 0) return true; -#if wxUSE_STOPWATCH && wxUSE_LONGLONG wxLongLong now = wxGetLocalTimeMillis(); if (now > (sm_lastUpdate + sm_updateInterval)) { @@ -517,18 +514,12 @@ bool wxUpdateUIEvent::CanUpdate(wxWindowBase *win) } return false; -#else - // If we don't have wxStopWatch or wxLongLong, we - // should err on the safe side and update now anyway. - return true; -#endif } // Reset the update time to provide a delay until the next // time we should update void wxUpdateUIEvent::ResetUpdateTime() { -#if wxUSE_STOPWATCH && wxUSE_LONGLONG if (sm_updateInterval > 0) { wxLongLong now = wxGetLocalTimeMillis(); @@ -537,7 +528,6 @@ void wxUpdateUIEvent::ResetUpdateTime() sm_lastUpdate = now; } } -#endif } // ---------------------------------------------------------------------------- diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 262dc1cd406c..6392ffce4faf 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -125,9 +125,7 @@ #define S_ISDIR(mode) ((mode) & S_IFDIR) #endif -#if wxUSE_LONGLONG extern const wxULongLong wxInvalidSize = (unsigned)-1; -#endif // wxUSE_LONGLONG namespace { @@ -2884,8 +2882,6 @@ bool wxFileName::GetTimes(wxDateTime *dtAccess, // file size functions // ---------------------------------------------------------------------------- -#if wxUSE_LONGLONG - /* static */ wxULongLong wxFileName::GetSize(const wxString &filename) { @@ -2975,6 +2971,3 @@ wxString wxFileName::GetHumanReadableSize(const wxString& failmsg, { return GetHumanReadableSize(GetSize(), failmsg, precision, conv); } - -#endif // wxUSE_LONGLONG - diff --git a/src/common/framecmn.cpp b/src/common/framecmn.cpp index 3a7c667c8dd7..bf233f0ebbb5 100644 --- a/src/common/framecmn.cpp +++ b/src/common/framecmn.cpp @@ -246,6 +246,25 @@ wxPoint wxFrameBase::GetClientAreaOrigin() const return pt; } +void wxFrameBase::RemoveChild(wxWindowBase *child) +{ +#if wxUSE_STATUSBAR + if ( child == m_frameStatusBar ) + { + m_frameStatusBar = nullptr; + } +#endif // wxUSE_STATUSBAR + +#if wxUSE_TOOLBAR + if ( child == m_frameToolBar ) + { + m_frameToolBar = nullptr; + } +#endif // wxUSE_STATUSBAR + + wxTopLevelWindow::RemoveChild(child); +} + // ---------------------------------------------------------------------------- // misc // ---------------------------------------------------------------------------- @@ -343,7 +362,14 @@ void wxFrameBase::OnMenuHighlight(wxMenuEvent& event) { event.Skip(); - (void)ShowMenuHelp(event.GetMenuId()); + if ( wxMenuItem* menuItem = event.GetMenuItem() ) + { + DoGiveHelp(menuItem->GetHelp(), true); + } + else + { + (void)ShowMenuHelp(event.GetMenuId()); + } } void wxFrameBase::OnMenuClose(wxMenuEvent& event) diff --git a/src/common/gdicmn.cpp b/src/common/gdicmn.cpp index 8681170c10da..f38e71258943 100644 --- a/src/common/gdicmn.cpp +++ b/src/common/gdicmn.cpp @@ -60,6 +60,11 @@ const wxPoint wxDefaultPosition(wxDefaultCoord, wxDefaultCoord); #include "wx/listimpl.cpp" WX_DEFINE_LIST(wxPointList) +// If wxIcon is really a different class (which is currently only the case in +// wxMSW), this is done in its implementation file instead. +#ifdef wxICON_IS_BITMAP +wxIMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap); +#endif #if wxUSE_EXTENDED_RTTI diff --git a/src/common/http.cpp b/src/common/http.cpp index 40e921e17af1..ed3c5692c633 100644 --- a/src/common/http.cpp +++ b/src/common/http.cpp @@ -242,7 +242,6 @@ void wxHTTP::SendHeaders() bool wxHTTP::ParseHeaders() { wxString line; - wxStringTokenizer tokenzr; ClearHeaders(); ClearCookies(); diff --git a/src/common/imagbmp.cpp b/src/common/imagbmp.cpp index 0c5e2ee78442..9ec5bb9c76af 100644 --- a/src/common/imagbmp.cpp +++ b/src/common/imagbmp.cpp @@ -562,25 +562,7 @@ bool LoadBMPData(wxImage * image, const BMPDesc& desc, return false; } - unsigned char *alpha; - if ( bpp == 32 ) - { - // tell the image to allocate an alpha buffer - image->SetAlpha(); - alpha = image->GetAlpha(); - if ( !alpha ) - { - if ( verbose ) - { - wxLogError(_("BMP: Couldn't allocate memory.")); - } - return false; - } - } - else // no alpha - { - alpha = nullptr; - } + unsigned char* alpha = nullptr; // Reading the palette, if it exists: if ( bpp < 16 && ncolors != 0 ) @@ -633,6 +615,17 @@ bool LoadBMPData(wxImage * image, const BMPDesc& desc, { amask = 0xFF000000; ashift = 24; + + image->SetAlpha(); + alpha = image->GetAlpha(); + if (!alpha) + { + if (verbose) + { + wxLogError(_("BMP: Couldn't allocate memory.")); + } + return false; + } } // find shift amount (Least significant bit of mask) @@ -673,9 +666,7 @@ bool LoadBMPData(wxImage * image, const BMPDesc& desc, rmask = 0x00FF0000; gmask = 0x0000FF00; bmask = 0x000000FF; - amask = 0xFF000000; - ashift = 24; rshift = 16; gshift = 8; bshift = 0; @@ -705,14 +696,6 @@ bool LoadBMPData(wxImage * image, const BMPDesc& desc, int linesize = ((width * bpp + 31) / 32) * 4; - // flag indicating if we have any not fully transparent alpha values: this - // is used to account for the bitmaps which use 32bpp format (normally - // meaning that they have alpha channel) but have only zeroes in it so that - // without this hack they appear fully transparent -- and as this is - // unlikely intentional, we consider that they don't have alpha at all in - // this case (see #10915) - bool hasValidAlpha = false; - for ( int row = 0; row < height; row++ ) { int line = isUpsideDown ? height - 1 - row : row; @@ -977,9 +960,6 @@ bool LoadBMPData(wxImage * image, const BMPDesc& desc, { temp = (unsigned char)((aDword & amask) >> ashift); alpha[line * width + column] = temp; - - if ( temp != wxALPHA_TRANSPARENT ) - hasValidAlpha = true; } column++; } @@ -994,13 +974,6 @@ bool LoadBMPData(wxImage * image, const BMPDesc& desc, image->SetMask(false); - // check if we had any valid alpha values in this bitmap - if ( alpha && !hasValidAlpha ) - { - // we didn't, so finally discard the alpha channel completely - image->ClearAlpha(); - } - const wxStreamError err = stream.GetLastError(); return err == wxSTREAM_NO_ERROR || err == wxSTREAM_EOF; } diff --git a/src/common/longlong.cpp b/src/common/longlong.cpp index 0a40e4fd0e71..08dd3b979109 100644 --- a/src/common/longlong.cpp +++ b/src/common/longlong.cpp @@ -1,9 +1,7 @@ ///////////////////////////////////////////////////////////////////////////// // Name: src/common/longlong.cpp -// Purpose: implementation of wxLongLongNative +// Purpose: implementation of wxLongLong // Author: Jeffrey C. Ollie , Vadim Zeitlin -// Remarks: this class is not public in wxWidgets 2.0! It is intentionally -// not documented and is for private use only. // Created: 10.02.99 // Copyright: (c) 1998 Vadim Zeitlin // Licence: wxWindows licence @@ -15,34 +13,23 @@ #include "wx/wxprec.h" - -#if wxUSE_LONGLONG - #include "wx/longlong.h" -#ifndef WX_PRECOMP - #include "wx/math.h" // for fabs() -#endif - #if wxUSE_STREAMS #include "wx/txtstrm.h" #endif -#include // for memset() - #include "wx/ioswrap.h" // ============================================================================ // implementation // ============================================================================ -#if wxUSE_LONGLONG_NATIVE - // ---------------------------------------------------------------------------- // misc // ---------------------------------------------------------------------------- -void *wxLongLongNative::asArray() const +void *wxLongLong::asArray() const { static unsigned char temp[8]; @@ -58,7 +45,7 @@ void *wxLongLongNative::asArray() const return temp; } -void *wxULongLongNative::asArray() const +void *wxULongLong::asArray() const { static unsigned char temp[8]; @@ -74,1151 +61,6 @@ void *wxULongLongNative::asArray() const return temp; } -#if wxUSE_LONGLONG_WX -wxLongLongNative::wxLongLongNative(wxLongLongWx ll) -{ - // assign first to avoid precision loss! - m_ll = ll.GetHi(); - m_ll <<= 32; - m_ll |= ll.GetLo(); -} - -wxLongLongNative& wxLongLongNative::operator=(wxLongLongWx ll) -{ - // assign first to avoid precision loss! - m_ll = ll.GetHi(); - m_ll <<= 32; - m_ll |= ll.GetLo(); - return *this; -} - -wxLongLongNative& wxLongLongNative::operator=(const class wxULongLongWx &ll) -{ - // assign first to avoid precision loss! - m_ll = ll.GetHi(); - m_ll <<= 32; - m_ll |= ll.GetLo(); - return *this; -} - -wxULongLongNative::wxULongLongNative(const class wxULongLongWx &ll) -{ - // assign first to avoid precision loss! - m_ll = ll.GetHi(); - m_ll <<= 32; - m_ll |= ((unsigned long) ll.GetLo()); -} - -wxULongLongNative& wxULongLongNative::operator=(wxLongLongWx ll) -{ - // assign first to avoid precision loss! - m_ll = ll.GetHi(); - m_ll <<= 32; - m_ll |= ((unsigned long) ll.GetLo()); - return *this; -} - -wxULongLongNative& wxULongLongNative::operator=(const class wxULongLongWx &ll) -{ - // assign first to avoid precision loss! - m_ll = ll.GetHi(); - m_ll <<= 32; - m_ll |= ((unsigned long) ll.GetLo()); - return *this; -} -#endif - -#endif // wxUSE_LONGLONG_NATIVE - -// ============================================================================ -// wxLongLongWx: emulation of 'long long' using 2 longs -// ============================================================================ - -#if wxUSE_LONGLONG_WX - -// Set value from unsigned wxULongLongWx -wxLongLongWx &wxLongLongWx::operator=(const class wxULongLongWx &ll) -{ - m_hi = (unsigned long) ll.GetHi(); - m_lo = ll.GetLo(); - return *this; -} - -// assignment -wxLongLongWx& wxLongLongWx::Assign(double d) -{ - bool positive = d >= 0; - d = fabs(d); - if ( d <= ULONG_MAX ) - { - m_hi = 0; - m_lo = (long)d; - } - else - { - m_hi = (unsigned long)(d / (1.0 + (double)ULONG_MAX)); - m_lo = (unsigned long)(d - ((double)m_hi * (1.0 + (double)ULONG_MAX))); - } - -#ifdef wxLONGLONG_TEST_MODE - m_ll = (wxLongLong_t)d; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - if ( !positive ) - Negate(); - - return *this; -} - -double wxLongLongWx::ToDouble() const -{ - double d = m_hi; - d *= 1.0 + (double)ULONG_MAX; - d += m_lo; - -#ifdef wxLONGLONG_TEST_MODE - wxASSERT( d == m_ll ); -#endif // wxLONGLONG_TEST_MODE - - return d; -} - -double wxULongLongWx::ToDouble() const -{ - unsigned double d = m_hi; - d *= 1.0 + (double)ULONG_MAX; - d += m_lo; - -#ifdef wxLONGLONG_TEST_MODE - wxASSERT( d == m_ll ); -#endif // wxLONGLONG_TEST_MODE - - return d; -} - -wxLongLongWx wxLongLongWx::operator<<(int shift) const -{ - wxLongLongWx ll(*this); - ll <<= shift; - - return ll; -} - -wxULongLongWx wxULongLongWx::operator<<(int shift) const -{ - wxULongLongWx ll(*this); - ll <<= shift; - - return ll; -} - -wxLongLongWx& wxLongLongWx::operator<<=(int shift) -{ - if (shift != 0) - { - if (shift < 32) - { - m_hi <<= shift; - m_hi |= m_lo >> (32 - shift); - m_lo <<= shift; - } - else - { - m_hi = m_lo << (shift - 32); - m_lo = 0; - } - } - -#ifdef wxLONGLONG_TEST_MODE - m_ll <<= shift; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator<<=(int shift) -{ - if (shift != 0) - { - if (shift < 32) - { - m_hi <<= shift; - m_hi |= m_lo >> (32 - shift); - m_lo <<= shift; - } - else - { - m_hi = m_lo << (shift - 32); - m_lo = 0; - } - } - -#ifdef wxLONGLONG_TEST_MODE - m_ll <<= shift; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxLongLongWx wxLongLongWx::operator>>(int shift) const -{ - wxLongLongWx ll(*this); - ll >>= shift; - - return ll; -} - -wxULongLongWx wxULongLongWx::operator>>(int shift) const -{ - wxULongLongWx ll(*this); - ll >>= shift; - - return ll; -} - -wxLongLongWx& wxLongLongWx::operator>>=(int shift) -{ - if (shift != 0) - { - if (shift < 32) - { - m_lo >>= shift; - m_lo |= m_hi << (32 - shift); - m_hi >>= shift; - } - else - { - m_lo = m_hi >> (shift - 32); - m_hi = (m_hi < 0 ? -1L : 0); - } - } - -#ifdef wxLONGLONG_TEST_MODE - m_ll >>= shift; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator>>=(int shift) -{ - if (shift != 0) - { - if (shift < 32) - { - m_lo >>= shift; - m_lo |= m_hi << (32 - shift); - m_hi >>= shift; - } - else - { - m_lo = m_hi >> (shift - 32); - m_hi = 0; - } - } - -#ifdef wxLONGLONG_TEST_MODE - m_ll >>= shift; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxLongLongWx wxLongLongWx::operator+(const wxLongLongWx& ll) const -{ - wxLongLongWx res(*this); - res += ll; - - return res; -} - -wxULongLongWx wxULongLongWx::operator+(const wxULongLongWx& ll) const -{ - wxULongLongWx res(*this); - res += ll; - - return res; -} - -wxLongLongWx wxLongLongWx::operator+(long l) const -{ - wxLongLongWx res(*this); - res += l; - - return res; -} - -wxULongLongWx wxULongLongWx::operator+(unsigned long l) const -{ - wxULongLongWx res(*this); - res += l; - - return res; -} - -wxLongLongWx& wxLongLongWx::operator+=(const wxLongLongWx& ll) -{ - unsigned long previous = m_lo; - - m_lo += ll.m_lo; - m_hi += ll.m_hi; - - if ((m_lo < previous) || (m_lo < ll.m_lo)) - m_hi++; - -#ifdef wxLONGLONG_TEST_MODE - m_ll += ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator+=(const wxULongLongWx& ll) -{ - unsigned long previous = m_lo; - - m_lo += ll.m_lo; - m_hi += ll.m_hi; - - if ((m_lo < previous) || (m_lo < ll.m_lo)) - m_hi++; - -#ifdef wxLONGLONG_TEST_MODE - m_ll += ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxLongLongWx& wxLongLongWx::operator+=(long l) -{ - unsigned long previous = m_lo; - - m_lo += l; - if (l < 0) - m_hi += -1l; - - if ((m_lo < previous) || (m_lo < (unsigned long)l)) - m_hi++; - -#ifdef wxLONGLONG_TEST_MODE - m_ll += l; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator+=(unsigned long l) -{ - unsigned long previous = m_lo; - - m_lo += l; - - if ((m_lo < previous) || (m_lo < l)) - m_hi++; - -#ifdef wxLONGLONG_TEST_MODE - m_ll += l; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -// pre increment -wxLongLongWx& wxLongLongWx::operator++() -{ - m_lo++; - if (m_lo == 0) - m_hi++; - -#ifdef wxLONGLONG_TEST_MODE - m_ll++; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator++() -{ - m_lo++; - if (m_lo == 0) - m_hi++; - -#ifdef wxLONGLONG_TEST_MODE - m_ll++; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -// negation -wxLongLongWx wxLongLongWx::operator-() const -{ - wxLongLongWx res(*this); - res.Negate(); - - return res; -} - -wxLongLongWx& wxLongLongWx::Negate() -{ - m_hi = ~m_hi; - m_lo = ~m_lo; - - m_lo++; - if ( m_lo == 0 ) - m_hi++; - -#ifdef wxLONGLONG_TEST_MODE - m_ll = -m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -// subtraction - -wxLongLongWx wxLongLongWx::operator-(const wxLongLongWx& ll) const -{ - wxLongLongWx res(*this); - res -= ll; - - return res; -} - -wxLongLongWx wxULongLongWx::operator-(const wxULongLongWx& ll) const -{ - wxASSERT(m_hi <= LONG_MAX ); - wxASSERT(ll.m_hi <= LONG_MAX ); - - wxLongLongWx res( (long)m_hi , m_lo ); - wxLongLongWx op( (long)ll.m_hi , ll.m_lo ); - res -= op; - - return res; -} - -wxLongLongWx& wxLongLongWx::operator-=(const wxLongLongWx& ll) -{ - unsigned long previous = m_lo; - - m_lo -= ll.m_lo; - m_hi -= ll.m_hi; - - if (previous < ll.m_lo) - m_hi--; - -#ifdef wxLONGLONG_TEST_MODE - m_ll -= ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator-=(const wxULongLongWx& ll) -{ - unsigned long previous = m_lo; - - m_lo -= ll.m_lo; - m_hi -= ll.m_hi; - - if (previous < ll.m_lo) - m_hi--; - -#ifdef wxLONGLONG_TEST_MODE - m_ll -= ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -// pre decrement -wxLongLongWx& wxLongLongWx::operator--() -{ - m_lo--; - if (m_lo == 0xFFFFFFFF) - m_hi--; - -#ifdef wxLONGLONG_TEST_MODE - m_ll--; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator--() -{ - m_lo--; - if (m_lo == 0xFFFFFFFF) - m_hi--; - -#ifdef wxLONGLONG_TEST_MODE - m_ll--; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -// comparison operators - -bool wxLongLongWx::operator<(const wxLongLongWx& ll) const -{ - if ( m_hi < ll.m_hi ) - return true; - else if ( m_hi == ll.m_hi ) - return m_lo < ll.m_lo; - else - return false; -} - -bool wxULongLongWx::operator<(const wxULongLongWx& ll) const -{ - if ( m_hi < ll.m_hi ) - return true; - else if ( m_hi == ll.m_hi ) - return m_lo < ll.m_lo; - else - return false; -} - -bool wxLongLongWx::operator>(const wxLongLongWx& ll) const -{ - if ( m_hi > ll.m_hi ) - return true; - else if ( m_hi == ll.m_hi ) - return m_lo > ll.m_lo; - else - return false; -} - -bool wxULongLongWx::operator>(const wxULongLongWx& ll) const -{ - if ( m_hi > ll.m_hi ) - return true; - else if ( m_hi == ll.m_hi ) - return m_lo > ll.m_lo; - else - return false; -} - -// bitwise operators - -wxLongLongWx wxLongLongWx::operator&(const wxLongLongWx& ll) const -{ - return wxLongLongWx(m_hi & ll.m_hi, m_lo & ll.m_lo); -} - -wxULongLongWx wxULongLongWx::operator&(const wxULongLongWx& ll) const -{ - return wxULongLongWx(m_hi & ll.m_hi, m_lo & ll.m_lo); -} - -wxLongLongWx wxLongLongWx::operator|(const wxLongLongWx& ll) const -{ - return wxLongLongWx(m_hi | ll.m_hi, m_lo | ll.m_lo); -} - -wxULongLongWx wxULongLongWx::operator|(const wxULongLongWx& ll) const -{ - return wxULongLongWx(m_hi | ll.m_hi, m_lo | ll.m_lo); -} - -wxLongLongWx wxLongLongWx::operator^(const wxLongLongWx& ll) const -{ - return wxLongLongWx(m_hi ^ ll.m_hi, m_lo ^ ll.m_lo); -} - -wxULongLongWx wxULongLongWx::operator^(const wxULongLongWx& ll) const -{ - return wxULongLongWx(m_hi ^ ll.m_hi, m_lo ^ ll.m_lo); -} - -wxLongLongWx& wxLongLongWx::operator&=(const wxLongLongWx& ll) -{ - m_lo &= ll.m_lo; - m_hi &= ll.m_hi; - -#ifdef wxLONGLONG_TEST_MODE - m_ll &= ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator&=(const wxULongLongWx& ll) -{ - m_lo &= ll.m_lo; - m_hi &= ll.m_hi; - -#ifdef wxLONGLONG_TEST_MODE - m_ll &= ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxLongLongWx& wxLongLongWx::operator|=(const wxLongLongWx& ll) -{ - m_lo |= ll.m_lo; - m_hi |= ll.m_hi; - -#ifdef wxLONGLONG_TEST_MODE - m_ll |= ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator|=(const wxULongLongWx& ll) -{ - m_lo |= ll.m_lo; - m_hi |= ll.m_hi; - -#ifdef wxLONGLONG_TEST_MODE - m_ll |= ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxLongLongWx& wxLongLongWx::operator^=(const wxLongLongWx& ll) -{ - m_lo ^= ll.m_lo; - m_hi ^= ll.m_hi; - -#ifdef wxLONGLONG_TEST_MODE - m_ll ^= ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator^=(const wxULongLongWx& ll) -{ - m_lo ^= ll.m_lo; - m_hi ^= ll.m_hi; - -#ifdef wxLONGLONG_TEST_MODE - m_ll ^= ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxLongLongWx wxLongLongWx::operator~() const -{ - return wxLongLongWx(~m_hi, ~m_lo); -} - -wxULongLongWx wxULongLongWx::operator~() const -{ - return wxULongLongWx(~m_hi, ~m_lo); -} - -// multiplication - -wxLongLongWx wxLongLongWx::operator*(const wxLongLongWx& ll) const -{ - wxLongLongWx res(*this); - res *= ll; - - return res; -} - -wxULongLongWx wxULongLongWx::operator*(const wxULongLongWx& ll) const -{ - wxULongLongWx res(*this); - res *= ll; - - return res; -} - -wxLongLongWx& wxLongLongWx::operator*=(const wxLongLongWx& ll) -{ - wxLongLongWx t(m_hi, m_lo); - wxLongLongWx q(ll.m_hi, ll.m_lo); - - m_hi = m_lo = 0; - -#ifdef wxLONGLONG_TEST_MODE - wxLongLong_t llOld = m_ll; - m_ll = 0; -#endif // wxLONGLONG_TEST_MODE - - int counter = 0; - do - { - if ((q.m_lo & 1) != 0) - *this += t; - q >>= 1; - t <<= 1; - counter++; - } - while ((counter < 64) && ((q.m_hi != 0) || (q.m_lo != 0))); - -#ifdef wxLONGLONG_TEST_MODE - m_ll = llOld * ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator*=(const wxULongLongWx& ll) -{ - wxULongLongWx t(m_hi, m_lo); - wxULongLongWx q(ll.m_hi, ll.m_lo); - - m_hi = m_lo = 0; - -#ifdef wxLONGLONG_TEST_MODE - wxULongLong_t llOld = m_ll; - m_ll = 0; -#endif // wxLONGLONG_TEST_MODE - - int counter = 0; - do - { - if ((q.m_lo & 1) != 0) - *this += t; - q >>= 1; - t <<= 1; - counter++; - } - while ((counter < 64) && ((q.m_hi != 0) || (q.m_lo != 0))); - -#ifdef wxLONGLONG_TEST_MODE - m_ll = llOld * ll.m_ll; - - Check(); -#endif // wxLONGLONG_TEST_MODE - - return *this; -} - -// division - -#define IS_MSB_SET(ll) ((ll.GetHi()) & (1 << (8*sizeof(long) - 1))) - -void wxLongLongWx::Divide(const wxLongLongWx& divisorIn, - wxLongLongWx& quotient, - wxLongLongWx& remainderIO) const -{ - if ((divisorIn.m_lo == 0) && (divisorIn.m_hi == 0)) - { - // provoke division by zero error and silence the compilers warnings - // about an expression without effect and unused variable - long dummy = divisorIn.m_lo/divisorIn.m_hi; - dummy += 0; - } - - // VZ: I'm writing this in a hurry and it's surely not the fastest way to - // do this - any improvements are more than welcome - // - // code inspired by the snippet at - // http://www.bearcave.com/software/divide.htm - // - // Copyright notice: - // - // Use of this program, for any purpose, is granted the author, Ian - // Kaplan, as long as this copyright notice is included in the source - // code or any source code derived from this program. The user assumes - // all responsibility for using this code. - - // init everything - wxULongLongWx dividend, divisor, remainder; - - quotient = 0l; - remainder = 0l; - - // always do unsigned division and adjust the signs later: in C integer - // division, the sign of the remainder is the same as the sign of the - // dividend, while the sign of the quotient is the product of the signs of - // the dividend and divisor. Of course, we also always have - // - // dividend = quotient*divisor + remainder - // - // with 0 <= abs(remainder) < abs(divisor) - bool negRemainder = GetHi() < 0; - bool negQuotient = false; // assume positive - if ( GetHi() < 0 ) - { - negQuotient = !negQuotient; - dividend = -*this; - } else { - dividend = *this; - } - if ( divisorIn.GetHi() < 0 ) - { - negQuotient = !negQuotient; - divisor = -divisorIn; - } else { - divisor = divisorIn; - } - - // check for some particular cases - if ( divisor > dividend ) - { - remainder = dividend; - } - else if ( divisor == dividend ) - { - quotient = 1l; - } - else - { - // here: dividend > divisor and both are positive: do unsigned division - size_t nBits = 64u; - wxLongLongWx d; - - while ( remainder < divisor ) - { - remainder <<= 1; - if ( IS_MSB_SET(dividend) ) - { - remainder |= 1; - } - - d = dividend; - dividend <<= 1; - - nBits--; - } - - // undo the last loop iteration - dividend = d; - remainder >>= 1; - nBits++; - - for ( size_t i = 0; i < nBits; i++ ) - { - remainder <<= 1; - if ( IS_MSB_SET(dividend) ) - { - remainder |= 1; - } - - wxLongLongWx t = remainder - divisor; - dividend <<= 1; - quotient <<= 1; - if ( !IS_MSB_SET(t) ) - { - quotient |= 1; - - remainder = t; - } - } - } - - remainderIO = remainder; - - // adjust signs - if ( negRemainder ) - { - remainderIO = -remainderIO; - } - - if ( negQuotient ) - { - quotient = -quotient; - } -} - -void wxULongLongWx::Divide(const wxULongLongWx& divisorIn, - wxULongLongWx& quotient, - wxULongLongWx& remainder) const -{ - if ((divisorIn.m_lo == 0) && (divisorIn.m_hi == 0)) - { - // provoke division by zero error and silence the compilers warnings - // about an expression without effect and unused variable - unsigned long dummy = divisorIn.m_lo/divisorIn.m_hi; - dummy += 0; - } - - // VZ: I'm writing this in a hurry and it's surely not the fastest way to - // do this - any improvements are more than welcome - // - // code inspired by the snippet at - // http://www.bearcave.com/software/divide.htm - // - // Copyright notice: - // - // Use of this program, for any purpose, is granted the author, Ian - // Kaplan, as long as this copyright notice is included in the source - // code or any source code derived from this program. The user assumes - // all responsibility for using this code. - - // init everything - wxULongLongWx dividend = *this, - divisor = divisorIn; - - quotient = 0l; - remainder = 0l; - - // check for some particular cases - if ( divisor > dividend ) - { - remainder = dividend; - } - else if ( divisor == dividend ) - { - quotient = 1l; - } - else - { - // here: dividend > divisor - size_t nBits = 64u; - wxULongLongWx d; - - while ( remainder < divisor ) - { - remainder <<= 1; - if ( IS_MSB_SET(dividend) ) - { - remainder |= 1; - } - - d = dividend; - dividend <<= 1; - - nBits--; - } - - // undo the last loop iteration - dividend = d; - remainder >>= 1; - nBits++; - - for ( size_t i = 0; i < nBits; i++ ) - { - remainder <<= 1; - if ( IS_MSB_SET(dividend) ) - { - remainder |= 1; - } - - wxULongLongWx t = remainder - divisor; - dividend <<= 1; - quotient <<= 1; - if ( !IS_MSB_SET(t) ) - { - quotient |= 1; - - remainder = t; - } - } - } -} - -wxLongLongWx wxLongLongWx::operator/(const wxLongLongWx& ll) const -{ - wxLongLongWx quotient, remainder; - - Divide(ll, quotient, remainder); - - return quotient; -} - -wxULongLongWx wxULongLongWx::operator/(const wxULongLongWx& ll) const -{ - wxULongLongWx quotient, remainder; - - Divide(ll, quotient, remainder); - - return quotient; -} - -wxLongLongWx& wxLongLongWx::operator/=(const wxLongLongWx& ll) -{ - wxLongLongWx quotient, remainder; - - Divide(ll, quotient, remainder); - - *this = quotient; - - return *this; -} - -wxULongLongWx& wxULongLongWx::operator/=(const wxULongLongWx& ll) -{ - wxULongLongWx quotient, remainder; - - Divide(ll, quotient, remainder); - - *this = quotient; - - return *this; -} - -wxLongLongWx wxLongLongWx::operator%(const wxLongLongWx& ll) const -{ - wxLongLongWx quotient, remainder; - - Divide(ll, quotient, remainder); - - return remainder; -} - -wxULongLongWx wxULongLongWx::operator%(const wxULongLongWx& ll) const -{ - wxULongLongWx quotient, remainder; - - Divide(ll, quotient, remainder); - - return remainder; -} - -// ---------------------------------------------------------------------------- -// misc -// ---------------------------------------------------------------------------- - -// temporary - just for testing -void *wxLongLongWx::asArray() const -{ - static unsigned char temp[8]; - - temp[0] = (char)((m_hi >> 24) & 0xFF); - temp[1] = (char)((m_hi >> 16) & 0xFF); - temp[2] = (char)((m_hi >> 8) & 0xFF); - temp[3] = (char)((m_hi >> 0) & 0xFF); - temp[4] = (char)((m_lo >> 24) & 0xFF); - temp[5] = (char)((m_lo >> 16) & 0xFF); - temp[6] = (char)((m_lo >> 8) & 0xFF); - temp[7] = (char)((m_lo >> 0) & 0xFF); - - return temp; -} - -void *wxULongLongWx::asArray() const -{ - static unsigned char temp[8]; - - temp[0] = (char)((m_hi >> 24) & 0xFF); - temp[1] = (char)((m_hi >> 16) & 0xFF); - temp[2] = (char)((m_hi >> 8) & 0xFF); - temp[3] = (char)((m_hi >> 0) & 0xFF); - temp[4] = (char)((m_lo >> 24) & 0xFF); - temp[5] = (char)((m_lo >> 16) & 0xFF); - temp[6] = (char)((m_lo >> 8) & 0xFF); - temp[7] = (char)((m_lo >> 0) & 0xFF); - - return temp; -} - -#endif // wxUSE_LONGLONG_WX - -#define LL_TO_STRING(name) \ - wxString name::ToString() const \ - { \ - /* TODO: this is awfully inefficient, anything better? */ \ - wxString result; \ - \ - name ll = *this; \ - \ - bool neg = ll < 0; \ - if ( neg ) \ - { \ - while ( ll != 0 ) \ - { \ - long digit = (ll % 10).ToLong(); \ - result.Prepend((wxChar)(wxT('0') - digit)); \ - ll /= 10; \ - } \ - } \ - else \ - { \ - while ( ll != 0 ) \ - { \ - long digit = (ll % 10).ToLong(); \ - result.Prepend((wxChar)(wxT('0') + digit)); \ - ll /= 10; \ - } \ - } \ - \ - if ( result.empty() ) \ - result = wxT('0'); \ - else if ( neg ) \ - result.Prepend(wxT('-')); \ - \ - return result; \ - } - -#define ULL_TO_STRING(name) \ - wxString name::ToString() const \ - { \ - /* TODO: this is awfully inefficient, anything better? */ \ - wxString result; \ - \ - name ll = *this; \ - \ - while ( ll != 0 ) \ - { \ - result.Prepend((wxChar)(wxT('0') + (ll % 10).ToULong())); \ - ll /= 10; \ - } \ - \ - if ( result.empty() ) \ - result = wxT('0'); \ - \ - return result; \ - } - -#if wxUSE_LONGLONG_NATIVE - LL_TO_STRING(wxLongLongNative) - ULL_TO_STRING(wxULongLongNative) -#endif - -#if wxUSE_LONGLONG_WX - LL_TO_STRING(wxLongLongWx) - ULL_TO_STRING(wxULongLongWx) -#endif - #if wxUSE_STD_IOSTREAM // input/output @@ -1314,17 +156,11 @@ WXDLLIMPEXP_BASE class wxTextInputStream &operator>>(class wxTextInputStream &o, ch = READ_STRING_CHAR(s, idx, length); } -#if wxUSE_LONGLONG_NATIVE ll = ll * wxLongLong((wxLongLong_t) iSign); -#else - ll = ll * wxLongLong((long) iSign); -#endif return o; } -#if wxUSE_LONGLONG_NATIVE - WXDLLIMPEXP_BASE class wxTextOutputStream &operator<<(class wxTextOutputStream &o, wxULongLong_t value) { return o << wxULongLong(value).ToString(); @@ -1351,8 +187,4 @@ WXDLLIMPEXP_BASE class wxTextInputStream &operator>>(class wxTextInputStream &o, return o; } -#endif // wxUSE_LONGLONG_NATIVE - #endif // wxUSE_STREAMS - -#endif // wxUSE_LONGLONG diff --git a/src/common/modalhook.cpp b/src/common/modalhook.cpp index daf246b530fb..305560a8037c 100644 --- a/src/common/modalhook.cpp +++ b/src/common/modalhook.cpp @@ -25,6 +25,7 @@ #endif // WX_PRECOMP wxModalDialogHook::Hooks wxModalDialogHook::ms_hooks; +int wxModalDialogHook::ms_countOpen = 0; // ============================================================================ // wxModalDialogHook implementation @@ -37,11 +38,9 @@ wxModalDialogHook::Hooks wxModalDialogHook::ms_hooks; void wxModalDialogHook::Register() { #if wxDEBUG_LEVEL - for ( Hooks::const_iterator it = ms_hooks.begin(); - it != ms_hooks.end(); - ++it) + for ( auto hook : ms_hooks ) { - if ( *it == this ) + if ( hook == this ) { wxFAIL_MSG( wxS("Registering already registered hook?") ); return; @@ -62,9 +61,7 @@ void wxModalDialogHook::Unregister() bool wxModalDialogHook::DoUnregister() { - for ( Hooks::iterator it = ms_hooks.begin(); - it != ms_hooks.end(); - ++it ) + for ( auto it = ms_hooks.begin(); it != ms_hooks.end(); ++it ) { if ( *it == this ) { @@ -89,9 +86,9 @@ int wxModalDialogHook::CallEnter(wxDialog* dialog) // the call to their Exit(), so do it here for symmetry as well. const Hooks hooks = ms_hooks; - for ( Hooks::const_iterator it = hooks.begin(); it != hooks.end(); ++it ) + for ( auto hook : hooks ) { - const int rc = (*it)->Enter(dialog); + const int rc = hook->Enter(dialog); if ( rc != wxID_NONE ) { // Skip calling all the rest of the hooks if one of them preempts @@ -100,17 +97,21 @@ int wxModalDialogHook::CallEnter(wxDialog* dialog) } } + ms_countOpen++; + return wxID_NONE; } /* static */ void wxModalDialogHook::CallExit(wxDialog* dialog) { + ms_countOpen--; + // See comment in CallEnter() for the reasons for making a copy here. const Hooks hooks = ms_hooks; - for ( Hooks::const_iterator it = hooks.begin(); it != hooks.end(); ++it ) + for ( auto hook : hooks ) { - (*it)->Exit(dialog); + hook->Exit(dialog); } } diff --git a/src/common/pickerbase.cpp b/src/common/pickerbase.cpp index 2dd27fd4f290..647c6e5bafd2 100644 --- a/src/common/pickerbase.cpp +++ b/src/common/pickerbase.cpp @@ -89,7 +89,6 @@ bool wxPickerBase::CreateBase(wxWindow *parent, m_text->Bind(wxEVT_TEXT, &wxPickerBase::OnTextCtrlUpdate, this); m_text->Bind(wxEVT_KILL_FOCUS, &wxPickerBase::OnTextCtrlKillFocus, this); - m_text->Bind(wxEVT_DESTROY, &wxPickerBase::OnTextCtrlDelete, this); m_sizer->Add(m_text, wxSizerFlags(1).CentreVertical().Border(wxRIGHT)); @@ -179,12 +178,6 @@ void wxPickerBase::OnTextCtrlKillFocus(wxFocusEvent& event) UpdateTextCtrlFromPicker(); } -void wxPickerBase::OnTextCtrlDelete(wxWindowDestroyEvent &) -{ - // the textctrl has been deleted; our pointer is invalid! - m_text = nullptr; -} - void wxPickerBase::OnTextCtrlUpdate(wxCommandEvent &) { // for each text-change, update the picker diff --git a/src/common/sizer.cpp b/src/common/sizer.cpp index 05d06a76ae40..fd937a2a38b3 100644 --- a/src/common/sizer.cpp +++ b/src/common/sizer.cpp @@ -964,7 +964,7 @@ bool wxSizer::Detach( wxSizer *sizer ) return false; } -bool wxSizer::Detach( wxWindow *window ) +bool wxSizer::Detach( wxWindowBase *window ) { wxASSERT_MSG( window, wxT("Detaching null window") ); @@ -2440,7 +2440,7 @@ void wxBoxSizer::RepositionChildren(const wxSize& minSize) if ( propItem ) { // is the desired size of this item big enough? - if ( (remaining*propItem)/totalProportion >= minMajor ) + if ( wxMulDivInt32(remaining, propItem, totalProportion) >= minMajor ) { // yes, it is, we'll determine the real size of this // item later, for now just leave it as wxDefaultCoord @@ -2537,7 +2537,7 @@ void wxBoxSizer::RepositionChildren(const wxSize& minSize) if ( majorSizes[n] == wxDefaultCoord ) { const int propItem = item->GetProportion(); - majorSizes[n] = (remaining*propItem)/totalProportion; + majorSizes[n] = wxMulDivInt32(remaining, propItem, totalProportion); remaining -= majorSizes[n]; totalProportion -= propItem; @@ -2901,7 +2901,7 @@ bool wxStaticBoxSizer::AreAnyItemsShown() const return m_staticBox->IsShown(); } -bool wxStaticBoxSizer::Detach( wxWindow *window ) +bool wxStaticBoxSizer::Detach( wxWindowBase *window ) { // avoid deleting m_staticBox in our dtor if it's being detached from the // sizer (which can happen because it's being already destroyed for diff --git a/src/common/statbar.cpp b/src/common/statbar.cpp index 04ade7fb0814..50345fc943a5 100644 --- a/src/common/statbar.cpp +++ b/src/common/statbar.cpp @@ -24,10 +24,6 @@ #include "wx/statusbr.h" -#ifndef WX_PRECOMP - #include "wx/frame.h" -#endif //WX_PRECOMP - const char wxStatusBarNameStr[] = "statusBar"; // ============================================================================ @@ -116,14 +112,7 @@ wxStatusBarBase::wxStatusBarBase() Bind(wxEVT_SIZE, &wxStatusBarBase::OnSize, this); } -wxStatusBarBase::~wxStatusBarBase() -{ - // notify the frame that it doesn't have a status bar any longer to avoid - // dangling pointers - wxFrame *frame = wxDynamicCast(GetParent(), wxFrame); - if ( frame && frame->GetStatusBar() == this ) - frame->SetStatusBar(nullptr); -} +wxStatusBarBase::~wxStatusBarBase() = default; // ---------------------------------------------------------------------------- // field widths diff --git a/src/common/stopwatch.cpp b/src/common/stopwatch.cpp index 6d3fc45daa88..869c19a43479 100644 --- a/src/common/stopwatch.cpp +++ b/src/common/stopwatch.cpp @@ -150,8 +150,6 @@ wxLongLong wxStopWatch::TimeInMicro() const // old timer functions superceded by wxStopWatch // ---------------------------------------------------------------------------- -#if wxUSE_LONGLONG - static wxLongLong wxStartTime = 0l; // starts the global timer @@ -171,5 +169,3 @@ long wxGetElapsedTime(bool resetTimer) return (newTime - oldTime).GetLo(); } - -#endif // wxUSE_LONGLONG diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index 4fbc018ca2dd..413a18b638c1 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -100,46 +100,37 @@ static size_t encode_utf16(wxUint32 input, wxUint16 *output) } } -// Returns the next UTF-32 character from the wchar_t buffer terminated by the -// "end" pointer (the caller must ensure that on input "*pSrc < end") and -// advances the pointer to the character after this one. -// -// If an invalid or incomplete character is found, *pSrc is set to nullptr, the -// caller must check for this. -static wxUint32 wxDecodeSurrogate(const wxChar16 **pSrc, const wxChar16* end) +namespace { - const wxChar16*& src = *pSrc; - // Is this a BMP character? - const wxUint16 u = *src++; - if ((u < 0xd800) || (u > 0xdfff)) - { - // Yes, just return it. - return u; - } - - // No, we have the first half of a surrogate, check if we also have the - // second half (notice that this check does nothing if end == nullptr, as it - // is allowed to be, and this is correct). - if ( src == end ) - { - // No, we don't because this is the end of input. - src = nullptr; - return 0; - } +// Check if the given character is (the first one of) a surrogate. +inline bool IsSurrogate(wxUint16 c) +{ + // First surrogate character value must be less than 0xDBFF, but check for + // the entire surrogate range -- we'll give an error in EncodeSurrogate() + // later if it's invalid. + return c >= 0xd800 && c <= 0xdfff; +} - const wxUint16 u2 = *src++; - if ( (u2 < 0xdc00) || (u2 > 0xdfff) ) +// Encode 2 components of a surrogate pair into a single Unicode code point. +// +// Returns 0 if the input is invalid, the encoded code point otherwise. +inline wxUint32 EncodeSurrogate(wxUint16 hi, wxUint16 lo) +{ + // The first check here is redundant, but the compiler should be able to + // optimize it away and it's better to be sure that the input is valid to + // avoid producing garbage on output. + if ( hi < 0xd800 || hi > 0xdbff || lo < 0xdc00 || lo > 0xdfff ) { - // No, it's not in the low surrogate range. - src = nullptr; + // Invalid surrogate pair. return 0; } - // Yes, decode it and return the corresponding Unicode character. - return ((u - 0xd7c0) << 10) + (u2 - 0xdc00); + return ((hi - 0xd7c0) << 10) + (lo - 0xdc00); } +} // anonymous namespace + // ---------------------------------------------------------------------------- // wxMBConv // ---------------------------------------------------------------------------- @@ -1099,9 +1090,18 @@ wxMBConvStrictUTF8::FromWChar(char *dst, size_t dstLen, wxUint32 code; #ifdef WC_UTF16 - code = wxDecodeSurrogate(&wp, end); - if ( !wp ) - return wxCONV_FAILED; + code = *wp++; + + if ( IsSurrogate(code) ) + { + // Check that we have the second part of the surrogate pair. + if ( end ? wp == end : !*wp ) + return wxCONV_FAILED; + + code = EncodeSurrogate(code, *wp++); + if ( !code ) + return wxCONV_FAILED; + } #else // wchar_t is UTF-32 code = *wp++ & 0x7fffffff; #endif @@ -1367,9 +1367,18 @@ size_t wxMBConvUTF8::FromWChar(char *buf, size_t n, wxUint32 cc; #ifdef WC_UTF16 - cc = wxDecodeSurrogate(&psz, end); - if ( !psz ) - return wxCONV_FAILED; + cc = *psz++; + + if ( IsSurrogate(cc) ) + { + // Check that we have the second part of the surrogate pair. + if ( end ? psz == end : !*psz ) + return wxCONV_FAILED; + + cc = EncodeSurrogate(cc, *psz++); + if ( !cc ) + return wxCONV_FAILED; + } #else cc = (*psz++) & 0x7fffffff; #endif @@ -1450,20 +1459,75 @@ size_t wxMBConvUTF8::FromWChar(char *buf, size_t n, #ifdef WORDS_BIGENDIAN #define wxMBConvUTF16straight wxMBConvUTF16BE #define wxMBConvUTF16swap wxMBConvUTF16LE + + #define ReadNonNative16 ReadLE16 + #define WriteNonNative16 WriteLE16 #else #define wxMBConvUTF16swap wxMBConvUTF16BE #define wxMBConvUTF16straight wxMBConvUTF16LE + + #define ReadNonNative16 ReadBE16 + #define WriteNonNative16 WriteBE16 #endif +namespace +{ + +// Reminder: in LE (little-endian) order the lowest byte of the value comes +// first in the buffer, in BE (big-endian) order it comes last. + +// LE functions are not used on LE platforms with WC_UTF16 (aka Windows), so +// don't define them there to avoid clang warnings about unused functions. +#if !defined(WC_UTF16) || defined(WORDS_BIGENDIAN) + +// Read a 16-bit integer in LE format from the buffer and advance the pointer. +inline wxUint16 ReadLE16(const char*& src) +{ + wxUint16 u16 = static_cast(*src++); + u16 |= static_cast(*src++) << 8; + + return u16; +} + +// Write a 16-bit integer to the buffer in LE format and advance the pointer. +inline void WriteLE16(char*& dst, wxUint16 u16) +{ + *dst++ = u16 & 0xff; + *dst++ = (u16 & 0xff00) >> 8; +} + +#endif // !WC_UTF16 || WORDS_BIGENDIAN + +// Read a 16-bit integer in BE format from the buffer and advance the pointer. +inline wxUint16 ReadBE16(const char*& src) +{ + wxUint16 u16 = static_cast(*src++); + u16 <<= 8; + u16 |= static_cast(*src++); + + return u16; +} + +// Write a 16-bit integer to the buffer in BE format and advance the pointer. +inline void WriteBE16(char*& dst, wxUint16 u16) +{ + *dst++ = (u16 & 0xff00) >> 8; + *dst++ = u16 & 0xff; +} + +} // anonymous namespace + /* static */ size_t wxMBConvUTF16Base::GetLength(const char *src, size_t srcLen) { if ( srcLen == wxNO_LEN ) { // count the number of bytes in input, including the trailing NULs - const wxUint16 *inBuff = reinterpret_cast(src); - for ( srcLen = 1; *inBuff++; srcLen++ ) - ; + for ( srcLen = 1; ; src += BYTES_PER_CHAR, srcLen++ ) + { + if ( !src[0] && !src[1] ) + break; + } srcLen *= BYTES_PER_CHAR; } @@ -1471,7 +1535,7 @@ size_t wxMBConvUTF16Base::GetLength(const char *src, size_t srcLen) { // we can only convert an entire number of UTF-16 characters if ( srcLen % BYTES_PER_CHAR ) - return wxCONV_FAILED; + return wxNO_LEN; } return srcLen; @@ -1481,15 +1545,13 @@ size_t wxMBConvUTF16Base::GetLength(const char *src, size_t srcLen) #ifdef WC_UTF16 // ---------------------------------------------------------------------------- -// conversions without endianness change +// more efficient conversions when endianness is the same as native one // ---------------------------------------------------------------------------- size_t wxMBConvUTF16straight::ToWChar(wchar_t *dst, size_t dstLen, const char *src, size_t srcLen) const { - // set up the scene for using memcpy() (which is presumably more efficient - // than copying the bytes one by one) srcLen = GetLength(src, srcLen); if ( srcLen == wxNO_LEN ) return wxCONV_FAILED; @@ -1527,7 +1589,7 @@ wxMBConvUTF16straight::FromWChar(char *dst, size_t dstLen, } // ---------------------------------------------------------------------------- -// endian-reversing conversions +// per-byte conversion used when endianness doesn't match the native one // ---------------------------------------------------------------------------- size_t @@ -1545,10 +1607,9 @@ wxMBConvUTF16swap::ToWChar(wchar_t *dst, size_t dstLen, if ( dstLen < srcLen ) return wxCONV_FAILED; - const wxUint16 *inBuff = reinterpret_cast(src); - for ( size_t n = 0; n < srcLen; n++, inBuff++ ) + for ( size_t n = 0; n < srcLen; n++ ) { - *dst++ = wxUINT16_SWAP_ALWAYS(*inBuff); + *dst++ = ReadNonNative16(src); } } @@ -1569,10 +1630,9 @@ wxMBConvUTF16swap::FromWChar(char *dst, size_t dstLen, if ( dstLen < srcLen ) return wxCONV_FAILED; - wxUint16 *outBuff = reinterpret_cast(dst); for ( size_t n = 0; n < srcLen; n += BYTES_PER_CHAR, src++ ) { - *outBuff++ = wxUINT16_SWAP_ALWAYS(*src); + WriteNonNative16(dst, *src); } } @@ -1582,25 +1642,32 @@ wxMBConvUTF16swap::FromWChar(char *dst, size_t dstLen, #else // !WC_UTF16: wchar_t is UTF-32 // ---------------------------------------------------------------------------- -// conversions without endianness change +// little-endian conversions // ---------------------------------------------------------------------------- size_t -wxMBConvUTF16straight::ToWChar(wchar_t *dst, size_t dstLen, - const char *src, size_t srcLen) const +wxMBConvUTF16LE::ToWChar(wchar_t *dst, size_t dstLen, + const char *src, size_t srcLen) const { srcLen = GetLength(src, srcLen); if ( srcLen == wxNO_LEN ) return wxCONV_FAILED; - const size_t inLen = srcLen / BYTES_PER_CHAR; size_t outLen = 0; - const wxUint16 *inBuff = reinterpret_cast(src); - for ( const wxUint16 * const inEnd = inBuff + inLen; inBuff < inEnd; ) + for ( const char* const end = src + srcLen; src < end; ) { - const wxUint32 ch = wxDecodeSurrogate(&inBuff, inEnd); - if ( !inBuff ) - return wxCONV_FAILED; + wxUint32 ch = ReadLE16(src); + + if ( IsSurrogate(ch) ) + { + // Check that we have the second part of the surrogate pair. + if ( src == end ) + return wxCONV_FAILED; + + ch = EncodeSurrogate(ch, ReadLE16(src)); + if ( !ch ) + return wxCONV_FAILED; + } outLen++; @@ -1618,14 +1685,13 @@ wxMBConvUTF16straight::ToWChar(wchar_t *dst, size_t dstLen, } size_t -wxMBConvUTF16straight::FromWChar(char *dst, size_t dstLen, - const wchar_t *src, size_t srcLen) const +wxMBConvUTF16LE::FromWChar(char *dst, size_t dstLen, + const wchar_t *src, size_t srcLen) const { if ( srcLen == wxNO_LEN ) srcLen = wxWcslen(src) + 1; size_t outLen = 0; - wxUint16 *outBuff = reinterpret_cast(dst); for ( size_t n = 0; n < srcLen; n++ ) { wxUint16 cc[2] = { 0 }; @@ -1634,16 +1700,16 @@ wxMBConvUTF16straight::FromWChar(char *dst, size_t dstLen, return wxCONV_FAILED; outLen += numChars * BYTES_PER_CHAR; - if ( outBuff ) + if ( dst ) { if ( outLen > dstLen ) return wxCONV_FAILED; - *outBuff++ = cc[0]; + WriteLE16(dst, cc[0]); if ( numChars == 2 ) { // second character of a surrogate - *outBuff++ = cc[1]; + WriteLE16(dst, cc[1]); } } } @@ -1652,42 +1718,32 @@ wxMBConvUTF16straight::FromWChar(char *dst, size_t dstLen, } // ---------------------------------------------------------------------------- -// endian-reversing conversions +// big-endian conversions // ---------------------------------------------------------------------------- size_t -wxMBConvUTF16swap::ToWChar(wchar_t *dst, size_t dstLen, - const char *src, size_t srcLen) const +wxMBConvUTF16BE::ToWChar(wchar_t *dst, size_t dstLen, + const char *src, size_t srcLen) const { srcLen = GetLength(src, srcLen); if ( srcLen == wxNO_LEN ) return wxCONV_FAILED; - const size_t inLen = srcLen / BYTES_PER_CHAR; size_t outLen = 0; - const wxUint16 *inBuff = reinterpret_cast(src); - for ( const wxUint16 * const inEnd = inBuff + inLen; inBuff < inEnd; ) + for ( const char* const end = src + srcLen; src < end; ) { - wxUint16 tmp[2]; - const wxUint16* tmpEnd = tmp; + wxUint32 ch = ReadBE16(src); - tmp[0] = wxUINT16_SWAP_ALWAYS(*inBuff); - tmpEnd++; - - if ( inBuff + 1 < inEnd ) + if ( IsSurrogate(ch) ) { - // Normal case, we have a next character to decode. - tmp[1] = wxUINT16_SWAP_ALWAYS(inBuff[1]); - tmpEnd++; - } - - const wxUint16* p = tmp; - const wxUint32 ch = wxDecodeSurrogate(&p, tmpEnd); - if ( !p ) - return wxCONV_FAILED; + // Check that we have the second part of the surrogate pair. + if ( src == end ) + return wxCONV_FAILED; - // Move the real pointer by the same amount as "p" was updated by. - inBuff += p - tmp; + ch = EncodeSurrogate(ch, ReadBE16(src)); + if ( !ch ) + return wxCONV_FAILED; + } outLen++; @@ -1705,14 +1761,13 @@ wxMBConvUTF16swap::ToWChar(wchar_t *dst, size_t dstLen, } size_t -wxMBConvUTF16swap::FromWChar(char *dst, size_t dstLen, - const wchar_t *src, size_t srcLen) const +wxMBConvUTF16BE::FromWChar(char *dst, size_t dstLen, + const wchar_t *src, size_t srcLen) const { if ( srcLen == wxNO_LEN ) srcLen = wxWcslen(src) + 1; size_t outLen = 0; - wxUint16 *outBuff = reinterpret_cast(dst); for ( const wchar_t *srcEnd = src + srcLen; src < srcEnd; src++ ) { wxUint16 cc[2] = { 0 }; @@ -1721,16 +1776,16 @@ wxMBConvUTF16swap::FromWChar(char *dst, size_t dstLen, return wxCONV_FAILED; outLen += numChars * BYTES_PER_CHAR; - if ( outBuff ) + if ( dst ) { if ( outLen > dstLen ) return wxCONV_FAILED; - *outBuff++ = wxUINT16_SWAP_ALWAYS(cc[0]); + WriteBE16(dst, cc[0]); if ( numChars == 2 ) { // second character of a surrogate - *outBuff++ = wxUINT16_SWAP_ALWAYS(cc[1]); + WriteBE16(dst, cc[1]); } } } @@ -1748,20 +1803,76 @@ wxMBConvUTF16swap::FromWChar(char *dst, size_t dstLen, #ifdef WORDS_BIGENDIAN #define wxMBConvUTF32straight wxMBConvUTF32BE #define wxMBConvUTF32swap wxMBConvUTF32LE + + #define ReadNonNative32 ReadLE32 + #define WriteNonNative32 WriteLE32 #else #define wxMBConvUTF32swap wxMBConvUTF32BE #define wxMBConvUTF32straight wxMBConvUTF32LE + + #define ReadNonNative32 ReadBE32 + #define WriteNonNative32 WriteBE32 #endif +namespace +{ + +#if defined(WC_UTF16) || defined(WORDS_BIGENDIAN) + +inline wxUint32 ReadLE32(const char*& src) +{ + wxUint32 u32 = static_cast(*src++); + u32 |= static_cast(*src++) << 8; + u32 |= static_cast(*src++) << 16; + u32 |= static_cast(*src++) << 24; + + return u32; +} + +inline void WriteLE32(char*& dst, wxUint32 u32) +{ + *dst++ = u32 & 0xff; + *dst++ = (u32 >> 8) & 0xff; + *dst++ = (u32 >> 16) & 0xff; + *dst++ = (u32 >> 24) & 0xff; +} + +#endif // WC_UTF16 || WORDS_BIGENDIAN + +inline wxUint32 ReadBE32(const char*& src) +{ + wxUint32 u32 = static_cast(*src++); + u32 <<= 8; + u32 |= static_cast(*src++); + u32 <<= 8; + u32 |= static_cast(*src++); + u32 <<= 8; + u32 |= static_cast(*src++); + + return u32; +} + +inline void WriteBE32(char*& dst, wxUint32 u32) +{ + *dst++ = (u32 >> 24) & 0xff; + *dst++ = (u32 >> 16) & 0xff; + *dst++ = (u32 >> 8) & 0xff; + *dst++ = u32 & 0xff; +} + +} // anonymous namespace + /* static */ size_t wxMBConvUTF32Base::GetLength(const char *src, size_t srcLen) { if ( srcLen == wxNO_LEN ) { // count the number of bytes in input, including the trailing NULs - const wxUint32 *inBuff = reinterpret_cast(src); - for ( srcLen = 1; *inBuff++; srcLen++ ) - ; + for ( srcLen = 1; ; src += BYTES_PER_CHAR, srcLen++ ) + { + if ( !src[0] && !src[1] && !src[2] && !src[3] ) + break; + } srcLen *= BYTES_PER_CHAR; } @@ -1769,7 +1880,7 @@ size_t wxMBConvUTF32Base::GetLength(const char *src, size_t srcLen) { // we can only convert an entire number of UTF-32 characters if ( srcLen % BYTES_PER_CHAR ) - return wxCONV_FAILED; + return wxNO_LEN; } return srcLen; @@ -1779,24 +1890,22 @@ size_t wxMBConvUTF32Base::GetLength(const char *src, size_t srcLen) #ifdef WC_UTF16 // ---------------------------------------------------------------------------- -// conversions without endianness change +// little-endian // ---------------------------------------------------------------------------- size_t -wxMBConvUTF32straight::ToWChar(wchar_t *dst, size_t dstLen, - const char *src, size_t srcLen) const +wxMBConvUTF32LE::ToWChar(wchar_t *dst, size_t dstLen, + const char *src, size_t srcLen) const { srcLen = GetLength(src, srcLen); if ( srcLen == wxNO_LEN ) return wxCONV_FAILED; - const wxUint32 *inBuff = reinterpret_cast(src); - const size_t inLen = srcLen / BYTES_PER_CHAR; size_t outLen = 0; - for ( size_t n = 0; n < inLen; n++ ) + for ( const char* const end = src + srcLen; src < end; ) { wxUint16 cc[2] = { 0 }; - const size_t numChars = encode_utf16(*inBuff++, cc); + const size_t numChars = encode_utf16(ReadLE32(src), cc); if ( numChars == wxCONV_FAILED ) return wxCONV_FAILED; @@ -1819,28 +1928,36 @@ wxMBConvUTF32straight::ToWChar(wchar_t *dst, size_t dstLen, } size_t -wxMBConvUTF32straight::FromWChar(char *dst, size_t dstLen, - const wchar_t *src, size_t srcLen) const +wxMBConvUTF32LE::FromWChar(char *dst, size_t dstLen, + const wchar_t *src, size_t srcLen) const { if ( srcLen == wxNO_LEN ) srcLen = wxWcslen(src) + 1; - wxUint32 *outBuff = reinterpret_cast(dst); size_t outLen = 0; for ( const wchar_t * const srcEnd = src + srcLen; src < srcEnd; ) { - const wxUint32 ch = wxDecodeSurrogate(&src, srcEnd); - if ( !src ) - return wxCONV_FAILED; + wxUint32 ch = *src++; + + if ( IsSurrogate(ch) ) + { + // Check that we have the second part of the surrogate pair. + if ( src == srcEnd ) + return wxCONV_FAILED; + + ch = EncodeSurrogate(ch, *src++); + if ( !ch ) + return wxCONV_FAILED; + } outLen += BYTES_PER_CHAR; - if ( outBuff ) + if ( dst ) { if ( outLen > dstLen ) return wxCONV_FAILED; - *outBuff++ = ch; + WriteLE32(dst, ch); } } @@ -1848,24 +1965,22 @@ wxMBConvUTF32straight::FromWChar(char *dst, size_t dstLen, } // ---------------------------------------------------------------------------- -// endian-reversing conversions +// big-endian conversions // ---------------------------------------------------------------------------- size_t -wxMBConvUTF32swap::ToWChar(wchar_t *dst, size_t dstLen, - const char *src, size_t srcLen) const +wxMBConvUTF32BE::ToWChar(wchar_t *dst, size_t dstLen, + const char *src, size_t srcLen) const { srcLen = GetLength(src, srcLen); if ( srcLen == wxNO_LEN ) return wxCONV_FAILED; - const wxUint32 *inBuff = reinterpret_cast(src); - const size_t inLen = srcLen / BYTES_PER_CHAR; size_t outLen = 0; - for ( size_t n = 0; n < inLen; n++, inBuff++ ) + for ( const char* const end = src + srcLen; src < end; ) { wxUint16 cc[2] = { 0 }; - const size_t numChars = encode_utf16(wxUINT32_SWAP_ALWAYS(*inBuff), cc); + const size_t numChars = encode_utf16(ReadBE32(src), cc); if ( numChars == wxCONV_FAILED ) return wxCONV_FAILED; @@ -1888,28 +2003,36 @@ wxMBConvUTF32swap::ToWChar(wchar_t *dst, size_t dstLen, } size_t -wxMBConvUTF32swap::FromWChar(char *dst, size_t dstLen, - const wchar_t *src, size_t srcLen) const +wxMBConvUTF32BE::FromWChar(char *dst, size_t dstLen, + const wchar_t *src, size_t srcLen) const { if ( srcLen == wxNO_LEN ) srcLen = wxWcslen(src) + 1; - wxUint32 *outBuff = reinterpret_cast(dst); size_t outLen = 0; for ( const wchar_t * const srcEnd = src + srcLen; src < srcEnd; ) { - const wxUint32 ch = wxDecodeSurrogate(&src, srcEnd); - if ( !src ) - return wxCONV_FAILED; + wxUint32 ch = *src++; + + if ( IsSurrogate(ch) ) + { + // Check that we have the second part of the surrogate pair. + if ( src == srcEnd ) + return wxCONV_FAILED; + + ch = EncodeSurrogate(ch, *src++); + if ( !ch ) + return wxCONV_FAILED; + } outLen += BYTES_PER_CHAR; - if ( outBuff ) + if ( dst ) { if ( outLen > dstLen ) return wxCONV_FAILED; - *outBuff++ = wxUINT32_SWAP_ALWAYS(ch); + WriteBE32(dst, ch); } } @@ -1919,14 +2042,13 @@ wxMBConvUTF32swap::FromWChar(char *dst, size_t dstLen, #else // !WC_UTF16: wchar_t is UTF-32 // ---------------------------------------------------------------------------- -// conversions without endianness change +// more efficient conversions when endianness is the same as native one // ---------------------------------------------------------------------------- size_t wxMBConvUTF32straight::ToWChar(wchar_t *dst, size_t dstLen, const char *src, size_t srcLen) const { - // use memcpy() as it should be much faster than hand-written loop srcLen = GetLength(src, srcLen); if ( srcLen == wxNO_LEN ) return wxCONV_FAILED; @@ -1982,10 +2104,9 @@ wxMBConvUTF32swap::ToWChar(wchar_t *dst, size_t dstLen, if ( dstLen < srcLen ) return wxCONV_FAILED; - const wxUint32 *inBuff = reinterpret_cast(src); - for ( size_t n = 0; n < srcLen; n++, inBuff++ ) + for ( size_t n = 0; n < srcLen; n++ ) { - *dst++ = wxUINT32_SWAP_ALWAYS(*inBuff); + *dst++ = ReadNonNative32(src); } } @@ -2006,10 +2127,9 @@ wxMBConvUTF32swap::FromWChar(char *dst, size_t dstLen, if ( dstLen < srcLen ) return wxCONV_FAILED; - wxUint32 *outBuff = reinterpret_cast(dst); for ( size_t n = 0; n < srcLen; n += BYTES_PER_CHAR, src++ ) { - *outBuff++ = wxUINT32_SWAP_ALWAYS(*src); + WriteNonNative32(dst, *src); } } diff --git a/src/common/strvararg.cpp b/src/common/strvararg.cpp index dafdd2cf74a3..f278fd3bdccf 100644 --- a/src/common/strvararg.cpp +++ b/src/common/strvararg.cpp @@ -669,10 +669,8 @@ wxFormatString::ArgumentType ArgTypeFromParamType(wxPrintfArgType type) return wxFormatString::Arg_Int; case wxPAT_LONGINT: return wxFormatString::Arg_LongInt; -#ifdef wxLongLong_t case wxPAT_LONGLONGINT: return wxFormatString::Arg_LongLongInt; -#endif case wxPAT_SIZET: return wxFormatString::Arg_Size_t; diff --git a/src/common/tbarbase.cpp b/src/common/tbarbase.cpp index f49d9908e3b5..6d09c06cd982 100644 --- a/src/common/tbarbase.cpp +++ b/src/common/tbarbase.cpp @@ -530,14 +530,6 @@ bool wxToolBarBase::Realize() wxToolBarBase::~wxToolBarBase() { wxClearList(m_tools); - - // notify the frame that it doesn't have a tool bar any longer to avoid - // dangling pointers - wxFrame *frame = wxDynamicCast(GetParent(), wxFrame); - if ( frame && frame->GetToolBar() == this ) - { - frame->SetToolBar(nullptr); - } } // ---------------------------------------------------------------------------- diff --git a/src/common/time.cpp b/src/common/time.cpp index c2f7f637fd82..a91f31e81005 100644 --- a/src/common/time.cpp +++ b/src/common/time.cpp @@ -219,8 +219,6 @@ long wxGetUTCTime() return (long)time(nullptr); } -#if wxUSE_LONGLONG - wxLongLong wxGetUTCTimeUSec() { #if defined(__WINDOWS__) @@ -311,12 +309,3 @@ wxLongLong wxGetLocalTimeMillis() { return wxGetUTCTimeMillis() - wxGetTimeZone()*MILLISECONDS_PER_SECOND; } - -#else // !wxUSE_LONGLONG - -double wxGetLocalTimeMillis() -{ - return (double(clock()) / double(CLOCKS_PER_SEC)) * MILLISECONDS_PER_SECOND; -} - -#endif // wxUSE_LONGLONG/!wxUSE_LONGLONG diff --git a/src/common/toplvcmn.cpp b/src/common/toplvcmn.cpp index c0da2a47c15c..81f9dec05cde 100644 --- a/src/common/toplvcmn.cpp +++ b/src/common/toplvcmn.cpp @@ -27,6 +27,7 @@ #endif // WX_PRECOMP #include "wx/display.h" +#include "wx/modalhook.h" #include "wx/private/tlwgeom.h" @@ -499,8 +500,16 @@ wxSize wxTopLevelWindowBase::DoGetBestClientSize() const } // The default implementation for the close window event. -void wxTopLevelWindowBase::OnCloseWindow(wxCloseEvent& WXUNUSED(event)) +void wxTopLevelWindowBase::OnCloseWindow(wxCloseEvent& event) { + if ( event.CanVeto() && wxModalDialogHook::GetOpenCount() ) + { + // We can't close the window if there are any app-modal dialogs still + // shown. + event.Veto(); + return; + } + Destroy(); } diff --git a/src/common/variant.cpp b/src/common/variant.cpp index d8d9dc2141ae..3d9d6d24eac4 100644 --- a/src/common/variant.cpp +++ b/src/common/variant.cpp @@ -1522,8 +1522,6 @@ wxArrayString wxVariant::GetArrayString() const // wxVariantDataLongLong // ---------------------------------------------------------------------------- -#if wxUSE_LONGLONG - class WXDLLIMPEXP_BASE wxVariantDataLongLong : public wxVariantData { public: @@ -1562,7 +1560,6 @@ class WXDLLIMPEXP_BASE wxVariantDataLongLong : public wxVariantData // wxLongLong type requires customized wxAny conversion code // #if wxUSE_ANY -#ifdef wxLongLong_t bool wxVariantDataLongLong::GetAsAny(wxAny* any) const { @@ -1577,22 +1574,6 @@ wxVariantData* wxVariantDataLongLong::VariantDataFactory(const wxAny& any) REGISTER_WXANY_CONVERSION(wxLongLong_t, wxVariantDataLongLong) -#else // if !defined(wxLongLong_t) - -bool wxVariantDataLongLong::GetAsAny(wxAny* any) const -{ - *any = m_value; - return true; -} - -wxVariantData* wxVariantDataLongLong::VariantDataFactory(const wxAny& any) -{ - return new wxVariantDataLongLong(any.As()); -} - -REGISTER_WXANY_CONVERSION(wxLongLong, wxVariantDataLongLong) - -#endif // defined(wxLongLong_t)/!defined(wxLongLong_t) #endif // wxUSE_ANY bool wxVariantDataLongLong::Eq(wxVariantData& data) const @@ -1617,12 +1598,8 @@ bool wxVariantDataLongLong::Write(std::ostream& str) const bool wxVariantDataLongLong::Write(wxString& str) const { -#ifdef wxLongLong_t str.Printf(wxS("%lld"), m_value.GetValue()); return true; -#else - return false; -#endif } #if wxUSE_STD_IOSTREAM @@ -1654,15 +1631,11 @@ bool wxVariantDataLongLong::Read(wxInputStream& str) bool wxVariantDataLongLong::Read(wxString& str) { -#ifdef wxLongLong_t wxLongLong_t value_t; if ( !str.ToLongLong(&value_t) ) return false; m_value = value_t; return true; -#else - return false; -#endif } // wxVariant @@ -1715,14 +1688,10 @@ wxLongLong wxVariant::GetLongLong() const } } -#endif // wxUSE_LONGLONG - // ---------------------------------------------------------------------------- // wxVariantDataULongLong // ---------------------------------------------------------------------------- -#if wxUSE_LONGLONG - class WXDLLIMPEXP_BASE wxVariantDataULongLong : public wxVariantData { public: @@ -1761,7 +1730,6 @@ class WXDLLIMPEXP_BASE wxVariantDataULongLong : public wxVariantData // wxULongLong type requires customized wxAny conversion code // #if wxUSE_ANY -#ifdef wxLongLong_t bool wxVariantDataULongLong::GetAsAny(wxAny* any) const { @@ -1776,22 +1744,6 @@ wxVariantData* wxVariantDataULongLong::VariantDataFactory(const wxAny& any) REGISTER_WXANY_CONVERSION(wxULongLong_t, wxVariantDataULongLong) -#else // if !defined(wxLongLong_t) - -bool wxVariantDataULongLong::GetAsAny(wxAny* any) const -{ - *any = m_value; - return true; -} - -wxVariantData* wxVariantDataULongLong::VariantDataFactory(const wxAny& any) -{ - return new wxVariantDataULongLong(any.As()); -} - -REGISTER_WXANY_CONVERSION(wxULongLong, wxVariantDataULongLong) - -#endif // defined(wxLongLong_t)/!defined(wxLongLong_t) #endif // wxUSE_ANY @@ -1817,12 +1769,8 @@ bool wxVariantDataULongLong::Write(std::ostream& str) const bool wxVariantDataULongLong::Write(wxString& str) const { -#ifdef wxLongLong_t str.Printf(wxS("%llu"), m_value.GetValue()); return true; -#else - return false; -#endif } #if wxUSE_STD_IOSTREAM @@ -1854,15 +1802,11 @@ bool wxVariantDataULongLong::Read(wxInputStream& str) bool wxVariantDataULongLong::Read(wxString& str) { -#ifdef wxLongLong_t wxULongLong_t value_t; if ( !str.ToULongLong(&value_t) ) return false; m_value = value_t; return true; -#else - return false; -#endif } // wxVariant @@ -1915,8 +1859,6 @@ wxULongLong wxVariant::GetULongLong() const } } -#endif // wxUSE_LONGLONG - // ---------------------------------------------------------------------------- // wxVariantDataList // ---------------------------------------------------------------------------- @@ -2252,7 +2194,6 @@ bool wxVariant::Convert(long* value) const *value = (long) (((wxVariantDataBool*)GetData())->GetValue()); else if (type == wxS("string")) *value = wxAtol(((wxVariantDataString*)GetData())->GetValue()); -#if wxUSE_LONGLONG else if (type == wxS("longlong")) { wxLongLong v = ((wxVariantDataLongLong*)GetData())->GetValue(); @@ -2269,7 +2210,6 @@ bool wxVariant::Convert(long* value) const return false; *value = (long) v.ToULong(); } -#endif else return false; @@ -2313,7 +2253,6 @@ bool wxVariant::Convert(double* value) const *value = (double) (((wxVariantDataBool*)GetData())->GetValue()); else if (type == wxT("string")) *value = (double) wxAtof(((wxVariantDataString*)GetData())->GetValue()); -#if wxUSE_LONGLONG else if (type == wxS("longlong")) { *value = ((wxVariantDataLongLong*)GetData())->GetValue().ToDouble(); @@ -2322,7 +2261,6 @@ bool wxVariant::Convert(double* value) const { *value = ((wxVariantDataULongLong*)GetData())->GetValue().ToDouble(); } -#endif else return false; @@ -2377,7 +2315,6 @@ bool wxVariant::Convert(wxString* value) const return true; } -#if wxUSE_LONGLONG bool wxVariant::Convert(wxLongLong* value) const { wxString type(GetType()); @@ -2388,17 +2325,10 @@ bool wxVariant::Convert(wxLongLong* value) const else if (type == wxS("string")) { wxString s = ((wxVariantDataString*)GetData())->GetValue(); -#ifdef wxLongLong_t wxLongLong_t value_t; if ( !s.ToLongLong(&value_t) ) return false; *value = value_t; -#else - long l_value; - if ( !s.ToLong(&l_value) ) - return false; - *value = l_value; -#endif } else if (type == wxS("bool")) *value = (long) (((wxVariantDataBool*)GetData())->GetValue()); @@ -2424,17 +2354,10 @@ bool wxVariant::Convert(wxULongLong* value) const else if (type == wxS("string")) { wxString s = ((wxVariantDataString*)GetData())->GetValue(); -#ifdef wxLongLong_t wxULongLong_t value_t; if ( !s.ToULongLong(&value_t) ) return false; *value = value_t; -#else - unsigned long l_value; - if ( !s.ToULong(&l_value) ) - return false; - *value = l_value; -#endif } else if (type == wxS("bool")) *value = (long) (((wxVariantDataBool*)GetData())->GetValue()); @@ -2445,13 +2368,7 @@ bool wxVariant::Convert(wxULongLong* value) const if ( value_d < 0.0 ) return false; -#ifdef wxLongLong_t *value = (wxULongLong_t) value_d; -#else - wxLongLong temp; - temp.Assign(value_d); - *value = temp; -#endif } else if (type == wxS("longlong")) *value = ((wxVariantDataLongLong*)GetData())->GetValue(); @@ -2460,7 +2377,6 @@ bool wxVariant::Convert(wxULongLong* value) const return true; } -#endif // wxUSE_LONGLONG #if wxUSE_DATETIME bool wxVariant::Convert(wxDateTime* value) const diff --git a/src/common/webrequest.cpp b/src/common/webrequest.cpp index ea333f82231d..c46d39821e56 100644 --- a/src/common/webrequest.cpp +++ b/src/common/webrequest.cpp @@ -321,7 +321,7 @@ SplitParameters(const wxString& s, wxWebRequestHeaderMap& parameters) } pvalue.Trim(); if ( !pname.empty() ) - parameters[pname] = pvalue; + parameters[pname] = { pvalue }; if ( it != end ) ++it; } @@ -420,6 +420,13 @@ void wxWebRequestBase::SetHeader(const wxString& name, const wxString& value) m_impl->SetHeader(name, value); } +void wxWebRequestBase::AddHeader(const wxString& name, const wxString& value) +{ + wxCHECK_IMPL_VOID(); + + m_impl->AddHeader(name, value); +} + void wxWebRequestBase::SetMethod(const wxString& method) { wxCHECK_IMPL_VOID(); @@ -702,10 +709,10 @@ wxString wxWebResponseImpl::GetSuggestedFileName() const wxString contentDisp = GetHeader("Content-Disposition"); wxWebRequestHeaderMap params; const wxString disp = wxPrivate::SplitParameters(contentDisp, params); - if ( disp == "attachment" ) + if ( disp == "attachment" && !params["filename"].empty() ) { // Parse as filename to filter potential path names - wxFileName fn(params["filename"]); + wxFileName fn(params["filename"].back()); suggestedFilename = fn.GetFullName(); } @@ -843,6 +850,13 @@ wxString wxWebResponse::GetHeader(const wxString& name) const return m_impl->GetHeader(name); } +std::vector wxWebResponse::GetAllHeaderValues(const wxString& name) const +{ + wxCHECK_IMPL( std::vector() ); + + return m_impl->GetAllHeaderValues(name); +} + wxString wxWebResponse::GetMimeType() const { wxCHECK_IMPL( wxString() ); diff --git a/src/common/webrequest_curl.cpp b/src/common/webrequest_curl.cpp index f99ff7b550be..2336071d3794 100644 --- a/src/common/webrequest_curl.cpp +++ b/src/common/webrequest_curl.cpp @@ -222,7 +222,7 @@ size_t wxWebResponseCURL::CURLOnHeader(const char * buffer, size_t size) wxString hdrValue; wxString hdrName = hdr.BeforeFirst(':', &hdrValue).Strip(wxString::trailing); hdrName.MakeUpper(); - m_headers[hdrName] = hdrValue.Strip(wxString::leading); + m_headers[hdrName].push_back(hdrValue.Strip(wxString::leading)); } return size; @@ -269,11 +269,22 @@ wxString wxWebResponseCURL::GetURL() const wxString wxWebResponseCURL::GetHeader(const wxString& name) const { + wxWebRequestHeaderMap::const_iterator it = m_headers.find(name.Upper()); + if ( it != m_headers.end() && !it->second.empty() ) + return it->second.back(); + + return wxString(); +} + +std::vector wxWebResponseCURL::GetAllHeaderValues(const wxString& name) const +{ + std::vector result; + wxWebRequestHeaderMap::const_iterator it = m_headers.find(name.Upper()); if ( it != m_headers.end() ) - return it->second; - else - return wxString(); + result = it->second; + + return result; } int wxWebResponseCURL::GetStatus() const @@ -445,10 +456,13 @@ wxWebRequest::Result wxWebRequestCURL::DoFinishPrepare() for ( wxWebRequestHeaderMap::const_iterator it = m_headers.begin(); it != m_headers.end(); ++it ) { - // TODO: We need to implement RFC 2047 encoding here instead of blindly - // sending UTF-8 which is against the standard. - wxString hdrStr = wxString::Format("%s: %s", it->first, it->second); - m_headerList = curl_slist_append(m_headerList, hdrStr.utf8_str()); + for ( const wxString& value : it->second ) + { + // TODO: We need to implement RFC 2047 encoding here instead of blindly + // sending UTF-8 which is against the standard. + wxString hdrStr = wxString::Format("%s: %s", it->first, value); + m_headerList = curl_slist_append(m_headerList, hdrStr.utf8_str()); + } } wxCURLSetOpt(m_handle, CURLOPT_HTTPHEADER, m_headerList); @@ -851,12 +865,17 @@ SocketPollerImpl* SocketPollerImpl::Create(wxEvtHandler* hndlr) #else +constexpr const char* TRACE_CURL = "curl"; + // SocketPollerSourceHandler - a source handler used by the SocketPoller class. +class SourceSocketPoller; + class SocketPollerSourceHandler: public wxEventLoopSourceHandler { public: - SocketPollerSourceHandler(curl_socket_t, wxEvtHandler*); + SocketPollerSourceHandler(curl_socket_t sock, SourceSocketPoller* poller) + : m_socket(sock), m_poller(poller) {} void OnReadWaiting() override; void OnWriteWaiting() override; @@ -865,16 +884,9 @@ class SocketPollerSourceHandler: public wxEventLoopSourceHandler private: void SendEvent(int); curl_socket_t m_socket; - wxEvtHandler* m_handler; + SourceSocketPoller* const m_poller; }; -SocketPollerSourceHandler::SocketPollerSourceHandler(curl_socket_t sock, - wxEvtHandler* hndlr) -{ - m_socket = sock; - m_handler = hndlr; -} - void SocketPollerSourceHandler::OnReadWaiting() { SendEvent(SocketPoller::READY_FOR_READ); @@ -890,14 +902,6 @@ void SocketPollerSourceHandler::OnExceptionWaiting() SendEvent(SocketPoller::HAS_ERROR); } -void SocketPollerSourceHandler::SendEvent(int result) -{ - wxThreadEvent event(wxEVT_SOCKET_POLLER_RESULT); - event.SetPayload(m_socket); - event.SetInt(result); - m_handler->ProcessEvent(event); -} - // SourceSocketPoller - a SocketPollerImpl based on event loop sources. class SourceSocketPoller: public SocketPollerImpl @@ -909,6 +913,8 @@ class SourceSocketPoller: public SocketPollerImpl void StopPolling(curl_socket_t) override; void ResumePolling(curl_socket_t) override; + void SendEvent(curl_socket_t sock, int result); + private: using SocketDataMap = std::unordered_map; @@ -916,8 +922,21 @@ class SourceSocketPoller: public SocketPollerImpl SocketDataMap m_socketData; wxEvtHandler* m_handler; + + // The socket for which we're currently processing a write IO notification. + curl_socket_t m_activeWriteSocket = 0; + + // The sockets that we couldn't clean up yet but should do if/when we get + // an error notification for them. + std::vector m_socketsToCleanUp; }; +// This function must be implemented after full SourceSocketPoller declaration. +void SocketPollerSourceHandler::SendEvent(int result) +{ + m_poller->SendEvent(m_socket, result); +} + SourceSocketPoller::SourceSocketPoller(wxEvtHandler* hndlr) { m_handler = hndlr; @@ -925,6 +944,9 @@ SourceSocketPoller::SourceSocketPoller(wxEvtHandler* hndlr) SourceSocketPoller::~SourceSocketPoller() { + wxLogTrace(TRACE_CURL, "Cleaning up all %zu socket pollers", + m_socketData.size()); + // Clean up any leftover socket data. for ( SocketDataMap::iterator it = m_socketData.begin() ; it != m_socketData.end() ; ++it ) @@ -961,6 +983,8 @@ bool SourceSocketPoller::StartPolling(curl_socket_t sock, int pollAction) if ( it != m_socketData.end() ) { + wxLogTrace(TRACE_CURL, "Reusing socket poller for %d", sock); + // If this socket is already being polled, reuse the old handler. Also // delete the old source object to stop the old polling operations. wxEventLoopSource* oldSrc = it->second; @@ -970,9 +994,9 @@ bool SourceSocketPoller::StartPolling(curl_socket_t sock, int pollAction) } else { - // Otherwise create a new source handler. - srcHandler = - new SocketPollerSourceHandler(sock, m_handler); + wxLogTrace(TRACE_CURL, "Creating new socket poller for %d", sock); + + srcHandler = new SocketPollerSourceHandler(sock, this); } // Get a new source object for these polling checks. @@ -984,9 +1008,7 @@ bool SourceSocketPoller::StartPolling(curl_socket_t sock, int pollAction) if ( newSrc == nullptr ) { // We were not able to add a source for this socket. - wxLogDebug(wxString::Format( - "Unable to create event loop source for %d", - static_cast(sock))); + wxLogDebug("Unable to create event loop source for %d", sock); delete srcHandler; socketIsPolled = false; @@ -1006,10 +1028,23 @@ bool SourceSocketPoller::StartPolling(curl_socket_t sock, int pollAction) void SourceSocketPoller::StopPolling(curl_socket_t sock) { + if ( sock == m_activeWriteSocket ) + { + // We can't clean up the socket while we're inside OnWriteWaiting() for + // it because it could be followed by OnExceptionWaiting() and we'd + // crash if we deleted it already. + wxLogTrace(TRACE_CURL, "Delaying cleanup of socket poller for %d", sock); + + m_socketsToCleanUp.push_back(sock); + return; + } + SocketDataMap::iterator it = m_socketData.find(sock); if ( it != m_socketData.end() ) { + wxLogTrace(TRACE_CURL, "Cleaning up socket poller for %d", sock); + CleanUpSocketSource(it->second); m_socketData.erase(it); } @@ -1019,6 +1054,35 @@ void SourceSocketPoller::ResumePolling(curl_socket_t WXUNUSED(sock)) { } +void SourceSocketPoller::SendEvent(curl_socket_t sock, int result) +{ + if ( result == SocketPoller::READY_FOR_WRITE ) + { + // Prevent the handler from this socket from being deleted in case we + // get a HAS_ERROR event for it immediately after this one. + m_activeWriteSocket = sock; + } + + wxThreadEvent event(wxEVT_SOCKET_POLLER_RESULT); + event.SetPayload(sock); + event.SetInt(result); + m_handler->ProcessEvent(event); + + m_activeWriteSocket = 0; + + if ( result == SocketPoller::HAS_ERROR ) + { + // Check if we have any sockets to clean up and do it now, it should be + // safe. + for ( auto sock : m_socketsToCleanUp ) + { + StopPolling(sock); + } + + m_socketsToCleanUp.clear(); + } +} + void SourceSocketPoller::CleanUpSocketSource(wxEventLoopSource* source) { wxEventLoopSourceHandler* srcHandler = source->GetHandler(); diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index c89cb0260abb..24fe99dda1da 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -38,7 +38,6 @@ #include "wx/statusbr.h" #include "wx/toolbar.h" #include "wx/dcclient.h" - #include "wx/dcscreen.h" #include "wx/scrolbar.h" #include "wx/layout.h" #include "wx/sizer.h" @@ -507,7 +506,7 @@ wxWindowBase::~wxWindowBase() #endif // wxUSE_CONSTRAINTS if ( m_containingSizer ) - m_containingSizer->Detach( (wxWindow*)this ); + m_containingSizer->Detach(this); delete m_windowSizer; @@ -1312,7 +1311,7 @@ void wxWindowBase::RemoveChild(wxWindowBase *child) if ( IsFrozen() && !child->IsBeingDeleted() && !child->IsTopLevel() ) child->Thaw(); - GetChildren().DeleteObject((wxWindow *)child); + GetChildren().DeleteObject(child); child->SetParent(nullptr); } @@ -2905,7 +2904,7 @@ static wxSize GetDPIHelper(const wxWindowBase* w) if ( w ) dpi = w->GetDPI(); if ( !dpi.x || !dpi.y ) - dpi = wxScreenDC().GetPPI(); + dpi = wxDisplay().GetPPI(); if ( !dpi.x || !dpi.y ) dpi = wxDisplay::GetStdPPI(); diff --git a/src/common/wxcrt.cpp b/src/common/wxcrt.cpp index 0ac39ad49470..914de8811768 100644 --- a/src/common/wxcrt.cpp +++ b/src/common/wxcrt.cpp @@ -810,7 +810,6 @@ wxCRT_StrftimeW(wchar_t *s, size_t maxsize, const wchar_t *fmt, const struct tm } #endif // !wxCRT_StrftimeW -#ifdef wxLongLong_t template static wxULongLong_t wxCRT_StrtoullBase(const T* nptr, T** endptr, int base, T* sign) @@ -973,8 +972,6 @@ wxULongLong_t wxCRT_StrtoullW(const wchar_t* nptr, wchar_t** endptr, int base) { return wxCRT_DoStrtoull(nptr, endptr, base); } #endif -#endif // wxLongLong_t - // ---------------------------------------------------------------------------- // strtok() functions // ---------------------------------------------------------------------------- diff --git a/src/common/xti.cpp b/src/common/xti.cpp index e0d18ccefc05..02b10cd88ae4 100644 --- a/src/common/xti.cpp +++ b/src/common/xti.cpp @@ -196,7 +196,6 @@ template<> void wxStringWriteValue(wxString &s, const unsigned long &data ) s = wxString::Format(wxT("%ld"), data ); } -#ifdef wxLongLong_t template<> void wxStringReadValue(const wxString &s, wxLongLong_t &data ) { wxSscanf(s, wxT("%lld"), &data ); @@ -216,7 +215,7 @@ template<> void wxStringWriteValue(wxString &s, const wxULongLong_t &data ) { s = wxString::Format(wxT("%lld"), data ); } -#endif + // float template<> void wxStringReadValue(const wxString &s, float &data ) @@ -287,11 +286,8 @@ wxBUILTIN_TYPE_INFO( wxT_ULONG, unsigned_long); wxBUILTIN_TYPE_INFO( wxT_FLOAT, float); wxBUILTIN_TYPE_INFO( wxT_DOUBLE, double); wxBUILTIN_TYPE_INFO( wxT_STRING, wxString); - -#ifdef wxLongLong_t wxBUILTIN_TYPE_INFO(wxT_LONGLONG, wxLongLong_t) wxBUILTIN_TYPE_INFO(wxT_ULONGLONG, wxULongLong_t) -#endif // this are compiler induced specialization which are never used anywhere diff --git a/src/generic/datavgen.cpp b/src/generic/datavgen.cpp index 45d3b3e1c4fe..61f3754ff810 100644 --- a/src/generic/datavgen.cpp +++ b/src/generic/datavgen.cpp @@ -183,6 +183,8 @@ wxTextCtrl *CreateEditorTextCtrl(wxWindow *parent, const wxRect& labelRect, cons void wxDataViewColumn::Init(int width, wxAlignment align, int flags) { + m_renderer->SetOwner(this); + m_width = m_manuallySetWidth = width; m_minWidth = 0; diff --git a/src/generic/gridsel.cpp b/src/generic/gridsel.cpp index e0ed42fd62d2..fe21b6f1b098 100644 --- a/src/generic/gridsel.cpp +++ b/src/generic/gridsel.cpp @@ -423,7 +423,6 @@ wxGridSelection::DeselectBlock(const wxGridBlockCoords& block, void wxGridSelection::ClearSelection() { size_t n; - wxRect r; wxGridCellCoords coords1, coords2; if ( m_grid->UsesOverlaySelection() ) diff --git a/src/generic/icon.cpp b/src/generic/icon.cpp deleted file mode 100644 index 42116e801ba7..000000000000 --- a/src/generic/icon.cpp +++ /dev/null @@ -1,35 +0,0 @@ -///////////////////////////////////////////////////////////////////////////// -// Name: src/generic/icon.cpp -// Purpose: wxIcon implementation for ports where it's same as wxBitmap -// Author: Julian Smart -// Created: 17/09/98 -// Copyright: (c) Julian Smart -// Licence: wxWindows licence -///////////////////////////////////////////////////////////////////////////// - -// for compilers that support precompilation, includes "wx.h". -#include "wx/wxprec.h" - - -#include "wx/icon.h" - -//----------------------------------------------------------------------------- -// wxIcon -//----------------------------------------------------------------------------- - -wxIMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap); - -wxIcon::wxIcon(const char* const* bits) : - wxBitmap( bits ) -{ -} - -wxIcon::wxIcon() : wxBitmap() -{ -} - -void wxIcon::CopyFromBitmap(const wxBitmap& bmp) -{ - const wxIcon* icon = static_cast(&bmp); - *this = *icon; -} diff --git a/src/generic/infobar.cpp b/src/generic/infobar.cpp index c570b3916457..41fb7a40ada3 100644 --- a/src/generic/infobar.cpp +++ b/src/generic/infobar.cpp @@ -66,7 +66,8 @@ bool wxInfoBarGeneric::Create(wxWindow *parent, wxWindowID winid) return false; // use special, easy to notice, colours - SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOBK)); + if( !m_hasBgCol ) + SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOBK)); // create the controls: icon, text and the button to dismiss the // message. @@ -77,7 +78,9 @@ bool wxInfoBarGeneric::Create(wxWindow *parent, wxWindowID winid) m_text = new wxStaticText(this, wxID_ANY, wxString(), wxDefaultPosition, wxDefaultSize, wxST_ELLIPSIZE_MIDDLE); - m_text->SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOTEXT)); + + if(!m_hasFgCol) + m_text->SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_INFOTEXT)); m_button = wxBitmapButton::NewCloseButton(this, wxID_ANY); m_button->SetToolTip(_("Hide this notification message.")); diff --git a/src/generic/odcombo.cpp b/src/generic/odcombo.cpp index 6d5132f105fb..3be447d6401c 100644 --- a/src/generic/odcombo.cpp +++ b/src/generic/odcombo.cpp @@ -809,7 +809,7 @@ void wxVListBoxComboPopup::CalcWidths() wxSize wxVListBoxComboPopup::GetAdjustedSize( int minWidth, int prefHeight, int maxHeight ) { - int height = 250; + int height = FromDIP(250); maxHeight -= 2; // Must take borders into account @@ -841,7 +841,7 @@ wxSize wxVListBoxComboPopup::GetAdjustedSize( int minWidth, int prefHeight, int } } else - height = 50; + height = FromDIP(50); CalcWidths(); diff --git a/src/generic/sashwin.cpp b/src/generic/sashwin.cpp index bf37d8a75f9e..b1440bb0fb39 100644 --- a/src/generic/sashwin.cpp +++ b/src/generic/sashwin.cpp @@ -114,8 +114,6 @@ void wxSashWindow::OnMouseEvent(wxMouseEvent& event) !wxDynamicCast(parent, wxFrame)) parent = parent->GetParent(); - wxScreenDC::StartDrawingOnTop(parent); - // We don't say we're dragging yet; we leave that // decision for the Dragging() branch, to ensure // the user has dragged a little bit. @@ -149,7 +147,6 @@ void wxSashWindow::OnMouseEvent(wxMouseEvent& event) ReleaseMouse(); m_mouseCaptured = false; - wxScreenDC::EndDrawingOnTop(); m_dragMode = wxSASH_DRAG_NONE; m_draggingEdge = wxSASH_NONE; } @@ -164,10 +161,6 @@ void wxSashWindow::OnMouseEvent(wxMouseEvent& event) // Erase old tracker DrawSashTracker(m_draggingEdge, m_oldX, m_oldY); - // End drawing on top (frees the window used for drawing - // over the screen) - wxScreenDC::EndDrawingOnTop(); - int w, h; GetSize(&w, &h); int xp, yp; diff --git a/src/generic/scrlwing.cpp b/src/generic/scrlwing.cpp index b0de3847fbf8..ee8c58509431 100644 --- a/src/generic/scrlwing.cpp +++ b/src/generic/scrlwing.cpp @@ -339,8 +339,6 @@ wxScrollHelperBase::wxScrollHelperBase(wxWindow *win) m_handler = nullptr; - m_win->SetScrollHelper(static_cast(this)); - // by default, the associated window is also the target window DoSetTargetWindow(win); } @@ -1207,6 +1205,8 @@ void wxScrollHelperBase::HandleOnChildFocus(wxChildFocusEvent& event) wxScrollHelper::wxScrollHelper(wxWindow *winToScroll) : wxScrollHelperBase(winToScroll) { + m_win->SetScrollHelper(this); + m_xVisibility = m_yVisibility = wxSHOW_SB_DEFAULT; m_adjustScrollFlagReentrancy = 0; diff --git a/src/generic/spinctlg.cpp b/src/generic/spinctlg.cpp index 20f8c44dc556..f9dc768bad59 100644 --- a/src/generic/spinctlg.cpp +++ b/src/generic/spinctlg.cpp @@ -389,6 +389,7 @@ bool wxSpinCtrlGenericBase::SetBackgroundColour(const wxColour& colour) wxBEGIN_EVENT_TABLE(wxSpinCtrlGenericBase, wxSpinCtrlBase) EVT_CHAR(wxSpinCtrlGenericBase::OnTextChar) EVT_KILL_FOCUS(wxSpinCtrlGenericBase::OnTextLostFocus) + EVT_MOUSEWHEEL(wxSpinCtrlGenericBase::OnMouseWheel) wxEND_EVENT_TABLE() void wxSpinCtrlGenericBase::OnSpinButton(wxSpinEvent& event) @@ -476,6 +477,28 @@ void wxSpinCtrlGenericBase::OnTextChar(wxKeyEvent& event) DoSendEvent(); } +void wxSpinCtrlGenericBase::OnMouseWheel(wxMouseEvent& event) +{ + double value = m_value; + + if(event.GetWheelRotation() > 0) + { + value += m_increment; + } + else + { + value -= m_increment; + } + + value = AdjustToFitInRange(value); + + SyncSpinToText(SendEvent_None); + + // No need to send event, it was already generated by wxTextCtrl itself. + if (DoSetValue(value, SendEvent_None)) + DoSendEvent(); +} + // ---------------------------------------------------------------------------- // Textctrl functions // ---------------------------------------------------------------------------- diff --git a/src/generic/timer.cpp b/src/generic/timer.cpp index c44eb00c265b..691c75448dd7 100644 --- a/src/generic/timer.cpp +++ b/src/generic/timer.cpp @@ -34,14 +34,6 @@ typedef wxLongLong wxTimerTick_t; -#if wxUSE_LONGLONG_WX - #define wxTimerTickFmtSpec wxLongLongFmtSpec "d" - #define wxTimerTickPrintfArg(tt) (tt.GetValue()) -#else // using native wxLongLong - #define wxTimerTickFmtSpec wxT("s") - #define wxTimerTickPrintfArg(tt) (tt.ToString().c_str()) -#endif // wx/native long long - inline bool wxTickGreaterEqual(wxTimerTick_t x, wxTimerTick_t y) { return x >= y; @@ -89,8 +81,8 @@ void wxTimerScheduler::QueueTimer(wxTimerDesc *desc, wxTimerTick_t when) desc->running = true; wxLogTrace( wxT("timer"), - wxT("queued timer %p at tick %") wxTimerTickFmtSpec, - desc->timer, wxTimerTickPrintfArg(when)); + wxT("queued timer %p at tick %s"), + desc->timer, when); if ( m_timers ) { @@ -143,10 +135,9 @@ void wxTimerScheduler::NotifyTimers() if ( !timerDeleted ) { wxLogTrace( wxT("timer"), - wxT("notified timer %p sheduled for %") - wxTimerTickFmtSpec, + wxT("notified timer %p scheduled for %s"), desc->timer, - wxTimerTickPrintfArg(desc->shotTime) ); + desc->shotTime ); desc->deleteFlag = nullptr; if ( !oneShot ) diff --git a/src/generic/treelist.cpp b/src/generic/treelist.cpp index eb903ace0005..8eb8d61d9b40 100644 --- a/src/generic/treelist.cpp +++ b/src/generic/treelist.cpp @@ -1185,6 +1185,7 @@ unsigned wxTreeListCtrl::GetSelections(wxTreeListItems& selections) const void wxTreeListCtrl::Select(wxTreeListItem item) { wxCHECK_RET( m_view, "Must create first" ); + wxCHECK_RET( item->GetParent(), "Can't select the invisible root item" ); m_view->Select(m_model->ToNonRootDVI(item)); } @@ -1192,6 +1193,7 @@ void wxTreeListCtrl::Select(wxTreeListItem item) void wxTreeListCtrl::Unselect(wxTreeListItem item) { wxCHECK_RET( m_view, "Must create first" ); + wxCHECK_RET( item->GetParent(), "Can't deselect the invisible root item" ); m_view->Unselect(m_model->ToNonRootDVI(item)); } @@ -1199,6 +1201,7 @@ void wxTreeListCtrl::Unselect(wxTreeListItem item) bool wxTreeListCtrl::IsSelected(wxTreeListItem item) const { wxCHECK_MSG( m_view, false, "Must create first" ); + wxCHECK_MSG( item->GetParent(), false, "Invisible root can't be selected" ); return m_view->IsSelected(m_model->ToNonRootDVI(item)); } diff --git a/src/gtk/colordlg.cpp b/src/gtk/colordlg.cpp index 31f7a0898fe6..26d27dacec25 100644 --- a/src/gtk/colordlg.cpp +++ b/src/gtk/colordlg.cpp @@ -20,7 +20,6 @@ #endif #include "wx/gtk/private.h" -#include "wx/gtk/private/dialogcount.h" extern "C" { static void response(GtkDialog*, int response_id, wxColourDialog* win) diff --git a/src/gtk/dataview.cpp b/src/gtk/dataview.cpp index 2fed58b08916..a7678839fa28 100644 --- a/src/gtk/dataview.cpp +++ b/src/gtk/dataview.cpp @@ -3240,6 +3240,8 @@ wxDataViewColumn::wxDataViewColumn( const wxString &title, wxDataViewRenderer *c wxAlignment align, int flags ) : wxDataViewColumnBase( cell, model_column ) { + m_renderer->SetOwner( this ); + Init( align, flags, width ); SetTitle( title ); @@ -3250,6 +3252,8 @@ wxDataViewColumn::wxDataViewColumn( const wxBitmapBundle &bitmap, wxDataViewRend wxAlignment align, int flags ) : wxDataViewColumnBase( bitmap, cell, model_column ) { + m_renderer->SetOwner( this ); + Init( align, flags, width ); SetBitmap( bitmap ); diff --git a/src/gtk/dialog.cpp b/src/gtk/dialog.cpp index a3115c037ea5..93480305871e 100644 --- a/src/gtk/dialog.cpp +++ b/src/gtk/dialog.cpp @@ -20,7 +20,6 @@ #include "wx/modalhook.h" #include "wx/gtk/private/wrapgtk.h" -#include "wx/gtk/private/dialogcount.h" wxDEFINE_TIED_SCOPED_PTR_TYPE(wxGUIEventLoop) @@ -162,8 +161,6 @@ int wxDialog::ShowModal() Show( true ); - wxOpenModalDialogLocker modalLock; - // Prevent the widget from being destroyed if the user closes the window. // Needed for derived classes which bypass wxTLW::Create(), and therefore // the wxTLW "delete-event" handler is not connected diff --git a/src/gtk/dnd.cpp b/src/gtk/dnd.cpp index 76557fb4cd9e..813ee140c922 100644 --- a/src/gtk/dnd.cpp +++ b/src/gtk/dnd.cpp @@ -883,7 +883,7 @@ wxDragResult wxDropSource::DoDragDrop(int flags) target_list, (GdkDragAction)allowed_actions, g_lastButtonNumber, // number of mouse button which started drag - (GdkEvent*) g_lastMouseEvent ); + g_lastMouseEvent ); wxGCC_WARNING_RESTORE(deprecated-declarations) diff --git a/src/gtk/evtloop.cpp b/src/gtk/evtloop.cpp index 41526204dfa1..8f35eba83c26 100644 --- a/src/gtk/evtloop.cpp +++ b/src/gtk/evtloop.cpp @@ -46,6 +46,13 @@ GdkWindow* wxGetTopLevelGDK(); wxGUIEventLoop::wxGUIEventLoop() { m_exitcode = 0; + m_lastEvent = new GdkEvent; + memset(m_lastEvent, 0, sizeof(GdkEvent)); +} + +wxGUIEventLoop::~wxGUIEventLoop() +{ + delete m_lastEvent; } int wxGUIEventLoop::DoRun() @@ -105,6 +112,15 @@ void wxGUIEventLoop::WakeUp() wxTheApp->WakeUpIdle(); } +bool wxGUIEventLoop::GTKIsSameAsLastEvent(const GdkEvent* ev, size_t size) +{ + if ( memcmp(m_lastEvent, ev, size) == 0 ) + return true; + + memcpy(m_lastEvent, ev, size); + return false; +} + // ---------------------------------------------------------------------------- // wxEventLoop adding & removing sources // ---------------------------------------------------------------------------- diff --git a/src/gtk/menu.cpp b/src/gtk/menu.cpp index 213109586a39..8bf82dd2bbdc 100644 --- a/src/gtk/menu.cpp +++ b/src/gtk/menu.cpp @@ -28,15 +28,13 @@ #include #endif // wxUSE_ACCEL +#include "wx/modalhook.h" #include "wx/stockitem.h" #include "wx/gtk/private.h" #include "wx/gtk/private/image.h" #include "wx/gtk/private/mnemonics.h" -// Number of currently open modal dialogs, defined in src/gtk/toplevel.cpp. -extern int wxOpenModalDialogsCount; - // we use normal item but with a special id for the menu title static const int wxGTK_TITLE_ID = -3; @@ -84,7 +82,7 @@ class GtkAccel // modal dialog itself that should have a dialog as their invoking window. static bool IsMenuEventAllowed(wxMenu* menu) { - if ( wxOpenModalDialogsCount ) + if ( wxModalDialogHook::GetOpenCount() ) { wxWindow* tlw = wxGetTopLevelParent(menu->GetWindow()); if ( !tlw || !wxDynamicCast(tlw, wxDialog) ) diff --git a/src/gtk/mimetype.cpp b/src/gtk/mimetype.cpp index 99f5aa19a07e..a7d681927bad 100644 --- a/src/gtk/mimetype.cpp +++ b/src/gtk/mimetype.cpp @@ -36,23 +36,34 @@ wxString wxGTKMimeTypesManagerImpl::GetIconFromMimeType(const wxString& mime) if ( !theme ) return icon; - // Notice that we can't use wxGtkObject here because a special function - // needs to be used for freeing this object prior to GTK+ 3.8. - GtkIconInfo* const giconinfo = gtk_icon_theme_lookup_by_gicon - ( - theme, - gicon, - 256, - GTK_ICON_LOOKUP_NO_SVG - ); - - if ( giconinfo ) + for (int flags = GTK_ICON_LOOKUP_NO_SVG; ; flags = 0) { - icon = wxString::FromUTF8(gtk_icon_info_get_filename(giconinfo)); + GtkIconInfo* const giconinfo = gtk_icon_theme_lookup_by_gicon + ( + theme, + gicon, + 32, + GtkIconLookupFlags(flags) + ); + + if ( giconinfo ) + { + const char* filename = gtk_icon_info_get_filename(giconinfo); + + // If icon theme has only SVG files, icon lookup with GTK_ICON_LOOKUP_NO_SVG + // may use a builtin icon, in which case the GtkIconInfo filename is a + // resource path of the form "/org/gtk/libgtk/icons/...", not a file path. + if (filename && strncmp(filename, "/org/", 5) != 0) + icon = wxString::FromUTF8(filename); - wxGCC_WARNING_SUPPRESS(deprecated-declarations) - gtk_icon_info_free(giconinfo); - wxGCC_WARNING_RESTORE() + wxGCC_WARNING_SUPPRESS(deprecated-declarations) + // g_object_unref() cannot be used for GtkIconInfo prior to GTK 3.8 + gtk_icon_info_free(giconinfo); + wxGCC_WARNING_RESTORE() + } + if (!icon.empty() || flags == 0) + break; + // else try again without GTK_ICON_LOOKUP_NO_SVG } #endif // GTK_CHECK_VERSION(2,14,0) return icon; diff --git a/src/gtk/msgdlg.cpp b/src/gtk/msgdlg.cpp index 485eced4ce34..6e94662d50c5 100644 --- a/src/gtk/msgdlg.cpp +++ b/src/gtk/msgdlg.cpp @@ -25,7 +25,6 @@ #include "wx/gtk/private/list.h" #include "wx/gtk/private/messagetype.h" #include "wx/gtk/private/mnemonics.h" -#include "wx/gtk/private/dialogcount.h" wxIMPLEMENT_CLASS(wxMessageDialog, wxDialog); @@ -287,8 +286,6 @@ int wxMessageDialog::ShowModal() if (m_parent) gtk_window_present( GTK_WINDOW(m_parent->m_widget) ); - wxOpenModalDialogLocker modalLocker; - gint result = gtk_dialog_run(GTK_DIALOG(m_widget)); GTKDisconnect(m_widget); gtk_widget_destroy(m_widget); diff --git a/src/gtk/print.cpp b/src/gtk/print.cpp index 8406ec916d62..32af642a033a 100644 --- a/src/gtk/print.cpp +++ b/src/gtk/print.cpp @@ -954,7 +954,6 @@ bool wxGtkPrinter::Print(wxWindow *parent, wxPrintout *printout, bool prompt ) int fromPage, toPage; int minPage, maxPage; printout->GetPageInfo(&minPage, &maxPage, &fromPage, &toPage); - m_printDialogData.SetAllPages(true); if (minPage < 1) minPage = 1; if (maxPage < 1) maxPage = 9999; @@ -975,9 +974,6 @@ bool wxGtkPrinter::Print(wxWindow *parent, wxPrintout *printout, bool prompt ) else if (toPage < minPage) toPage = minPage; } - if (((minPage != fromPage) && fromPage != 0) || ((maxPage != toPage) && toPage != 0)) m_printDialogData.SetAllPages(false); - - wxPrintData printdata = GetPrintDialogData().GetPrintData(); wxGtkPrintNativeData *native = (wxGtkPrintNativeData*) printdata.GetNativeData(); diff --git a/src/gtk/spinbutt.cpp b/src/gtk/spinbutt.cpp index 90f72b6f7924..c58c8ed82f99 100644 --- a/src/gtk/spinbutt.cpp +++ b/src/gtk/spinbutt.cpp @@ -191,13 +191,12 @@ void wxSpinButton::SetRange(int minVal, int maxVal) // wrapping is on (The maximal page increment of 10 is consistent with the // default page increment set by gtk_spin_button_new_with_range(0, 100, 1) // in wxSpinButton::Create().) - const int range = maxVal - minVal; int pageInc; - if ( range < 10 ) + if ( maxVal < minVal + 10 ) pageInc = 1; - else if ( range < 20 ) + else if ( maxVal < minVal + 20 ) pageInc = 2; - else if ( range < 50 ) + else if ( maxVal < minVal + 50 ) pageInc = 5; else pageInc = 10; diff --git a/src/gtk/toplevel.cpp b/src/gtk/toplevel.cpp index ab4d15a135fc..ad51f040da41 100644 --- a/src/gtk/toplevel.cpp +++ b/src/gtk/toplevel.cpp @@ -31,6 +31,7 @@ #endif #include "wx/evtloop.h" +#include "wx/modalhook.h" #include "wx/recguard.h" #include "wx/sysopt.h" @@ -53,9 +54,6 @@ // data // ---------------------------------------------------------------------------- -// this is incremented while a modal dialog is shown -int wxOpenModalDialogsCount = 0; - // the frame that is currently active (i.e. its child has focus). It is // used to generate wxActivateEvents static wxTopLevelWindowGTK *g_activeFrame = nullptr; @@ -311,7 +309,8 @@ gtk_frame_delete_callback( GtkWidget *WXUNUSED(widget), wxTopLevelWindowGTK *win ) { if (win->IsEnabled() && - (wxOpenModalDialogsCount == 0 || (win->GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) || + (wxModalDialogHook::GetOpenCount() == 0 || + (win->GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) || win->IsGrabbed())) win->Close(); diff --git a/src/gtk/window.cpp b/src/gtk/window.cpp index 46dc20669466..921964d9e7b0 100644 --- a/src/gtk/window.cpp +++ b/src/gtk/window.cpp @@ -29,6 +29,7 @@ #include "wx/display.h" #include "wx/dnd.h" +#include "wx/evtloop.h" #include "wx/tooltip.h" #include "wx/caret.h" #include "wx/fontutil.h" @@ -234,14 +235,35 @@ static wxWindowGTK *gs_deferredFocusOut = nullptr; // global variables because GTK+ DnD want to have the // mouse event that caused it -GdkEvent *g_lastMouseEvent = nullptr; +GdkEvent *g_lastMouseEvent = nullptr; // use SetLastMouseEvent below int g_lastButtonNumber = 0; -static wxWindowGTK* g_windowUnderMouse = nullptr; - namespace wxGTKImpl { +// Small RAII helper setting g_lastMouseEvent until the scope exit. +class SetLastMouseEvent +{ +public: + explicit SetLastMouseEvent(GdkEventButton* event) + { + g_lastMouseEvent = reinterpret_cast(event); + } + + explicit SetLastMouseEvent(GdkEventMotion* event) + { + g_lastMouseEvent = reinterpret_cast(event); + } + + ~SetLastMouseEvent() + { + g_lastMouseEvent = nullptr; + } +}; + + +wxWindowGTK* g_windowUnderMouse = nullptr; + bool SetWindowUnderMouse(wxWindowGTK* win) { if ( g_windowUnderMouse == win ) @@ -252,6 +274,9 @@ bool SetWindowUnderMouse(wxWindowGTK* win) return true; } +template +gboolean SendEnterLeaveEvents(wxWindowGTK* win, EventType* gdk_event); + } // namespace wxGTKImpl #ifdef wxHAS_XKB @@ -1334,22 +1359,38 @@ bool AdjustCharEventKeyCodes(wxKeyEvent& event) return modified; } -} // anonymous namespace - // If a widget does not handle a key or mouse event, GTK+ sends it up the // parent chain until it is handled. These events are not supposed to propagate // in wxWidgets, so this code avoids handling them in any parent wxWindow, // while still allowing the event to propagate so things like native keyboard // navigation will work. -#define wxPROCESS_EVENT_ONCE(EventType, event) \ - static EventType eventPrev; \ - if (!gs_isNewEvent && memcmp(&eventPrev, event, sizeof(EventType)) == 0) \ - return false; \ - gs_isNewEvent = false; \ - eventPrev = *event - static bool gs_isNewEvent; +template +bool EventAlreadyProcessed(const EventType* event) +{ + // The cast is safe because we can only have windows when using GUI. + auto* const loop = static_cast(wxEventLoop::GetActive()); + if ( !loop ) + { + // This really shouldn't happen, but don't crash if it does. + return false; + } + + auto* const ev = reinterpret_cast(event); + + // Ensure we call GTKIsSameAsLastEvent() in any case to always update the + // last stored event (i.e. the order of checks here matters). + if ( loop->GTKIsSameAsLastEvent(ev, sizeof(EventType)) && !gs_isNewEvent ) + return true; + + gs_isNewEvent = false; + + return false; +} + +} // anonymous namespace + extern "C" { static gboolean gtk_window_key_press_callback( GtkWidget *WXUNUSED(widget), @@ -1359,7 +1400,8 @@ gtk_window_key_press_callback( GtkWidget *WXUNUSED(widget), if (g_blockEventsOnDrag) return FALSE; - wxPROCESS_EVENT_ONCE(GdkEventKey, gdk_event); + if (EventAlreadyProcessed(gdk_event)) + return FALSE; wxKeyEvent event( wxEVT_KEY_DOWN ); bool ret = false; @@ -1546,7 +1588,8 @@ gtk_window_key_release_callback( GtkWidget * WXUNUSED(widget), if (g_blockEventsOnDrag) return FALSE; - wxPROCESS_EVENT_ONCE(GdkEventKey, gdk_event); + if (EventAlreadyProcessed(gdk_event)) + return FALSE; wxKeyEvent event( wxEVT_KEY_UP ); wxTranslateGTKKeyEventToWx(event, win, gdk_event); @@ -1613,6 +1656,15 @@ static void AdjustEventButtonState(wxMouseEvent& event) static wxWindowGTK *FindWindowForMouseEvent(wxWindowGTK *win, wxCoord& x, wxCoord& y) { + // When a window has mouse capture, it should get all the events. + if ( g_captureWindow ) + { + win->ClientToScreen(&x, &y); + g_captureWindow->ScreenToClient(&x, &y); + + return g_captureWindow; + } + wxCoord xx = x; wxCoord yy = y; @@ -1718,6 +1770,11 @@ gtk_window_button_press_callback( GtkWidget* WXUNUSED_IN_GTK3(widget), GdkEventButton *gdk_event, wxWindowGTK *win ) { + wxLogTrace(TRACE_MOUSE, "Press for button %d at %g,%g in %s at t=%u", + gdk_event->button, gdk_event->x, gdk_event->y, + wxDumpWindow(win), + gdk_event->time); + /* GTK does not set the button1 mask when the event comes from the left button of a mouse. but for some reason, it sets it when the event comes @@ -1725,7 +1782,8 @@ gtk_window_button_press_callback( GtkWidget* WXUNUSED_IN_GTK3(widget), */ gdk_event->state &= ~GDK_BUTTON1_MASK; - wxPROCESS_EVENT_ONCE(GdkEventButton, gdk_event); + if (EventAlreadyProcessed(gdk_event)) + return FALSE; if ( AreGTKEventsBlocked() ) return FALSE; @@ -1807,7 +1865,7 @@ gtk_window_button_press_callback( GtkWidget* WXUNUSED_IN_GTK3(widget), return false; } - g_lastMouseEvent = (GdkEvent*) gdk_event; + SetLastMouseEvent setLastMouse(gdk_event); wxMouseEvent event( event_type ); InitMouseEvent( win, event, gdk_event ); @@ -1817,16 +1875,13 @@ gtk_window_button_press_callback( GtkWidget* WXUNUSED_IN_GTK3(widget), // find the correct window to send the event to: it may be a different one // from the one which got it at GTK+ level because some controls don't have // their own X window and thus cannot get any events. - if ( !g_captureWindow ) - win = FindWindowForMouseEvent(win, event.m_x, event.m_y); + win = FindWindowForMouseEvent(win, event.m_x, event.m_y); // reset the event object and id in case win changed. event.SetEventObject( win ); event.SetId( win->GetId() ); - bool ret = win->GTKProcessEvent( event ); - g_lastMouseEvent = nullptr; - if ( ret ) + if ( win->GTKProcessEvent( event ) ) return TRUE; if ((event_type == wxEVT_LEFT_DOWN) && !win->IsOfStandardClass() && @@ -1860,7 +1915,13 @@ gtk_window_button_release_callback( GtkWidget *WXUNUSED(widget), GdkEventButton *gdk_event, wxWindowGTK *win ) { - wxPROCESS_EVENT_ONCE(GdkEventButton, gdk_event); + wxLogTrace(TRACE_MOUSE, "Release for button %d at %g,%g in %s at t=%u", + gdk_event->button, gdk_event->x, gdk_event->y, + wxDumpWindow(win), + gdk_event->time); + + if (EventAlreadyProcessed(gdk_event)) + return FALSE; if ( AreGTKEventsBlocked() ) return FALSE; @@ -1896,27 +1957,21 @@ gtk_window_button_release_callback( GtkWidget *WXUNUSED(widget), return FALSE; } - g_lastMouseEvent = (GdkEvent*) gdk_event; + SetLastMouseEvent setLastMouse(gdk_event); wxMouseEvent event( event_type ); InitMouseEvent( win, event, gdk_event ); AdjustEventButtonState(event); - if ( !g_captureWindow ) - win = FindWindowForMouseEvent(win, event.m_x, event.m_y); + win = FindWindowForMouseEvent(win, event.m_x, event.m_y); // reset the event object and id in case win changed. event.SetEventObject( win ); event.SetId( win->GetId() ); - // We ignore the result of the event processing here as we don't really - // want to prevent the other handlers from running even if we did process - // this event ourselves, there is no real advantage in doing this and it - // could actually be harmful, see #16055. - (void)win->GTKProcessEvent(event); - - g_lastMouseEvent = nullptr; + if ( win->GTKProcessEvent(event) ) + return TRUE; return FALSE; } @@ -1963,12 +2018,13 @@ gtk_window_motion_notify_callback( GtkWidget * WXUNUSED(widget), GdkEventMotion *gdk_event, wxWindowGTK *win ) { - wxPROCESS_EVENT_ONCE(GdkEventMotion, gdk_event); + if (EventAlreadyProcessed(gdk_event)) + return FALSE; if ( AreGTKEventsBlocked() ) return FALSE; - g_lastMouseEvent = (GdkEvent*) gdk_event; + SetLastMouseEvent setLastMouse(gdk_event); wxMouseEvent event( wxEVT_MOTION ); InitMouseEvent(win, event, gdk_event); @@ -2031,19 +2087,35 @@ gtk_window_motion_notify_callback( GtkWidget * WXUNUSED(widget), } else // no capture { - win = FindWindowForMouseEvent(win, event.m_x, event.m_y); + auto* const winUnderMouse = + FindWindowForMouseEvent(win, event.m_x, event.m_y); - // reset the event object and id in case win changed. - event.SetEventObject( win ); - event.SetId( win->GetId() ); + // If our idea of the window under mouse is different from the actual + // window under it, we need to send enter or leave events. + bool setCursorEventAlreadySent = false; + if ( winUnderMouse != g_windowUnderMouse ) + { + SendEnterLeaveEvents(winUnderMouse, gdk_event); - SendSetCursorEvent(win, event.m_x, event.m_y); + // This is done by SendEnterLeaveEvents() internally. + setCursorEventAlreadySent = true; + } + + // Also redirect the event to the window under mouse if it's different. + if ( winUnderMouse != win ) + { + win = winUnderMouse; + + event.SetEventObject( win ); + event.SetId( win->GetId() ); + } + + if ( !setCursorEventAlreadySent ) + SendSetCursorEvent(win, event.m_x, event.m_y); } bool ret = win->GTKProcessEvent(event); - g_lastMouseEvent = nullptr; - // Request additional motion events. Done at the end to increase the // chances that lower priority events requested by the handler above, such // as painting, can be processed before the next motion event occurs. @@ -2257,6 +2329,37 @@ wx_window_focus_callback(GtkWidget *widget, // "enter_notify_event" //----------------------------------------------------------------------------- +namespace wxGTKImpl +{ + +// Helper function used by both "enter" and "motion" signal handlers. +template +gboolean SendEnterLeaveEvents(wxWindowGTK* win, EventType* gdk_event) +{ + if ( g_windowUnderMouse ) + { + // We must not have got the leave event for the previous window, so + // generate it now -- better late than never. + wxMouseEvent event( wxEVT_LEAVE_WINDOW ); + InitMouseEvent(g_windowUnderMouse, event, gdk_event); + + (void)g_windowUnderMouse->GTKProcessEvent(event); + } + + g_windowUnderMouse = win; + + wxMouseEvent event( wxEVT_ENTER_WINDOW ); + InitMouseEvent(win, event, gdk_event); + + if ( !g_captureWindow ) + SendSetCursorEvent(win, event.m_x, event.m_y); + + return win->GTKProcessEvent(event) ? TRUE : FALSE; +} + +} // namespace wxGTKImpl + +// This is a (internally) public function used by wxChoice too. gboolean wxGTKImpl::WindowEnterCallback(GtkWidget* widget, GdkEventCrossing* gdk_event, @@ -2271,7 +2374,7 @@ wxGTKImpl::WindowEnterCallback(GtkWidget* widget, // Event was emitted after a grab if (gdk_event->mode != GDK_CROSSING_NORMAL) { - wxLogTrace(TRACE_MOUSE, "Ignore event with mode %d", gdk_event->mode); + wxLogTrace(TRACE_MOUSE, "Ignore enter event mode=%d", gdk_event->mode); return FALSE; } @@ -2283,25 +2386,7 @@ wxGTKImpl::WindowEnterCallback(GtkWidget* widget, return FALSE; } - if ( g_windowUnderMouse ) - { - // We must not have got the leave event for the previous window, so - // generate it now -- better late than never. - wxMouseEvent event( wxEVT_LEAVE_WINDOW ); - InitMouseEvent(g_windowUnderMouse, event, gdk_event); - - (void)g_windowUnderMouse->GTKProcessEvent(event); - } - - g_windowUnderMouse = win; - - wxMouseEvent event( wxEVT_ENTER_WINDOW ); - InitMouseEvent(win, event, gdk_event); - - if ( !g_captureWindow ) - SendSetCursorEvent(win, event.m_x, event.m_y); - - return win->GTKProcessEvent(event); + return SendEnterLeaveEvents(win, gdk_event); } extern "C" { @@ -2337,7 +2422,7 @@ wxGTKImpl::WindowLeaveCallback(GtkWidget* widget, // Event was emitted after an ungrab if (gdk_event->mode != GDK_CROSSING_NORMAL) { - wxLogTrace(TRACE_MOUSE, "Ignore event with mode %d", gdk_event->mode); + wxLogTrace(TRACE_MOUSE, "Ignore leave event mode=%d", gdk_event->mode); return FALSE; } diff --git a/src/html/htmprint.cpp b/src/html/htmprint.cpp index c5fccd85e994..0222607548fe 100644 --- a/src/html/htmprint.cpp +++ b/src/html/htmprint.cpp @@ -559,22 +559,22 @@ wxString wxHtmlPrintout::TranslateHeader(const wxString& instr, int page) wxString r = instr; wxString num; - num.Printf(wxT("%i"), page); - r.Replace(wxT("@PAGENUM@"), num); + num.Printf("%i", page); + r.Replace("@PAGENUM@", num); - num.Printf(wxT("%lu"), (unsigned long)(m_PageBreaks.size() - 1)); - r.Replace(wxT("@PAGESCNT@"), num); + num.Printf("%zu", m_PageBreaks.size() - 1); + r.Replace("@PAGESCNT@", num); #if wxUSE_DATETIME const wxDateTime now = wxDateTime::Now(); - r.Replace(wxT("@DATE@"), now.FormatDate()); - r.Replace(wxT("@TIME@"), now.FormatTime()); + r.Replace("@DATE@", now.FormatDate()); + r.Replace("@TIME@", now.FormatTime()); #else - r.Replace(wxT("@DATE@"), wxEmptyString); - r.Replace(wxT("@TIME@"), wxEmptyString); + r.Replace("@DATE@", wxEmptyString); + r.Replace("@TIME@", wxEmptyString); #endif - r.Replace(wxT("@TITLE@"), GetTitle()); + r.Replace("@TITLE@", GetTitle()); return r; } @@ -709,8 +709,9 @@ bool wxHtmlEasyPrinting::DoPreview(wxHtmlPrintout *printout1, wxHtmlPrintout *pr } wxPreviewFrame *frame = new wxPreviewFrame(preview, m_ParentWindow, - m_Name + _(" Preview"), - wxPoint(100, 100), wxSize(650, 500)); + wxString::Format(/* TRANSLATORS: %s may be a document title. */_("%s Preview"), m_Name), + wxDefaultPosition, + wxWindow::FromDIP(wxSize(650, 500), m_ParentWindow)); frame->Centre(wxBOTH); frame->Initialize(); frame->Show(true); diff --git a/src/html/winpars.cpp b/src/html/winpars.cpp index 07bc8ef59218..adbdd14a0fb7 100644 --- a/src/html/winpars.cpp +++ b/src/html/winpars.cpp @@ -194,10 +194,24 @@ void wxHtmlWinParser::InitParser(const wxString& source) m_UseLink = false; m_Link = wxHtmlLinkInfo( wxEmptyString ); m_LinkColor = wxPrivate::GetLinkColour(); - m_ActualColor = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT); - m_ActualBackgroundColor = m_windowInterface - ? m_windowInterface->GetHTMLBackgroundColour() - : wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW); + + // if an HTML window interface is connected to this parser, + // then use its control background color and the system + // default text color. + if ( m_windowInterface ) + { + m_ActualColor = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT); + m_ActualBackgroundColor = m_windowInterface->GetHTMLBackgroundColour(); + } + // Otherwise, no window interface is connected to this parser + // (e.g., an HTML renderer being used for printing). + // Fall back to the default white background and black text. + else + { + m_ActualColor = *wxBLACK; + m_ActualBackgroundColor = *wxWHITE; + } + m_ActualBackgroundMode = wxBRUSHSTYLE_TRANSPARENT; m_Align = wxHTML_ALIGN_LEFT; m_ScriptMode = wxHTML_SCRIPT_NORMAL; diff --git a/src/msw/app.cpp b/src/msw/app.cpp index 5a2e1e3f65b0..a55c5efa4faf 100644 --- a/src/msw/app.cpp +++ b/src/msw/app.cpp @@ -875,21 +875,22 @@ void wxApp::OnEndSession(wxCloseEvent& WXUNUSED(event)) // WM_ENDSESSION handler or when we delete our last window, so make sure we // at least execute our cleanup code before - // prevent the window from being destroyed when the corresponding wxTLW is - // destroyed: this will result in a leak of a HWND, of course, but who - // cares when the process is being killed anyhow - if ( !wxTopLevelWindows.empty() ) - wxTopLevelWindows[0]->SetHWND(0); - // Destroy all the remaining TLWs before calling OnExit() to have the same // sequence of events in this case as in case of the normal shutdown, // otherwise we could have many problems due to wxApp being already // destroyed when window cleanup code (in close event handlers or dtor) is // executed. + // + // Note that we survive after this call only because we don't delete any + // windows at MSW level, see gs_gotEndSession check in wxWindow dtor. DeleteAllTLWs(); const int rc = OnExit(); + // Skip unregistering windows classes: this is not really necessary and + // would result in an error because we may still have an open window. + gs_regClassesInfo.clear(); + wxEntryCleanup(); // calling exit() instead of ExitProcess() or not doing anything at all and @@ -902,10 +903,20 @@ void wxApp::OnEndSession(wxCloseEvent& WXUNUSED(event)) // user can veto the close, and therefore the end session. void wxApp::OnQueryEndSession(wxCloseEvent& event) { - if (GetTopWindow()) + // Make a copy to avoid problems due to iterator invalidation if any + // windows get destroyed (rather than just closed) during the loop. + const auto tlws = wxTopLevelWindows; + for ( auto* tlw : tlws ) { - if (!GetTopWindow()->Close(!event.CanVeto())) - event.Veto(true); + // If it's not in the list any more it could have been destroyed. + if ( !wxTopLevelWindows.Member(tlw) ) + continue; + + if ( !tlw->Close(!event.CanVeto()) ) + { + event.Veto(); + return; + } } } diff --git a/src/msw/checkbox.cpp b/src/msw/checkbox.cpp index 1c76a429a9be..9b5c74796605 100644 --- a/src/msw/checkbox.cpp +++ b/src/msw/checkbox.cpp @@ -189,6 +189,9 @@ wxCOMPILE_TIME_ASSERT(wxCHK_UNCHECKED == BST_UNCHECKED void wxCheckBox::DoSet3StateValue(wxCheckBoxState state) { + if ( m_state == state ) + return; + m_state = state; if ( !IsOwnerDrawn() ) ::SendMessage(GetHwnd(), BM_SETCHECK, (WPARAM) state, 0); diff --git a/src/msw/checklst.cpp b/src/msw/checklst.cpp index 2e0498f9c754..21f64928e272 100644 --- a/src/msw/checklst.cpp +++ b/src/msw/checklst.cpp @@ -36,7 +36,7 @@ #include "wx/log.h" #endif -#include "wx/ownerdrw.h" +#include "wx/msw/private/listboxitem.h" #include @@ -69,26 +69,14 @@ namespace // declaration and implementation of wxCheckListBoxItem class // ---------------------------------------------------------------------------- -class wxCheckListBoxItem : public wxOwnerDrawn +class wxCheckListBoxItem : public wxListBoxItemBase { public: - // ctor wxCheckListBoxItem(wxCheckListBox *parent); // drawing functions virtual bool OnDrawItem(wxDC& dc, const wxRect& rc, wxODAction act, wxODStatus stat) override; - // simple accessors and operations - wxCheckListBox *GetParent() const - { return m_parent; } - - int GetIndex() const - { return m_parent->GetItemIndex(const_cast(this)); } - - wxString GetName() const override - { return m_parent->GetString(GetIndex()); } - - bool IsChecked() const { return m_checked; } @@ -108,22 +96,20 @@ class wxCheckListBoxItem : public wxOwnerDrawn } private: - wxCheckListBox *m_parent; bool m_checked; wxDECLARE_NO_COPY_CLASS(wxCheckListBoxItem); }; wxCheckListBoxItem::wxCheckListBoxItem(wxCheckListBox *parent) + : wxListBoxItemBase(parent) { - m_parent = parent; m_checked = false; wxSize size = wxRendererNative::Get().GetCheckBoxSize(parent); size.x += 2 * CHECKMARK_EXTRA_SPACE + CHECKMARK_LABEL_SPACE; SetMarginWidth(size.GetWidth()); - SetBackgroundColour(parent->GetBackgroundColour()); } bool wxCheckListBoxItem::OnDrawItem(wxDC& dc, const wxRect& rc, diff --git a/src/msw/combo.cpp b/src/msw/combo.cpp index 9f36de0d5617..ca41f69b5437 100644 --- a/src/msw/combo.cpp +++ b/src/msw/combo.cpp @@ -607,11 +607,7 @@ void wxComboCtrl::DoTimerEvent() wxMilliClock_t t = ::wxGetLocalTimeMillis(); const wxRect& rect = m_animRect; -#if wxUSE_LONGLONG int pos = (int) (t-m_animStart).GetLo(); -#else - int pos = (int) (t-m_animStart); -#endif if ( pos < COMBOBOX_ANIMATION_DURATION ) { int height = rect.height; diff --git a/src/msw/datectrl.cpp b/src/msw/datectrl.cpp index a72de22c00b6..05cf2184f8e3 100644 --- a/src/msw/datectrl.cpp +++ b/src/msw/datectrl.cpp @@ -32,6 +32,8 @@ #include "wx/datectrl.h" #include "wx/dateevt.h" +#include "wx/uilocale.h" +#include "wx/msw/private/uilocale.h" wxIMPLEMENT_DYNAMIC_CLASS(wxDatePickerCtrl, wxControl); @@ -57,9 +59,16 @@ wxDatePickerCtrl::Create(wxWindow *parent, if ( !(style & wxDP_DROPDOWN) ) style |= wxDP_SPIN; - return MSWCreateDateTimePicker(parent, id, dt, - pos, size, style, - validator, name); + bool ok = MSWCreateDateTimePicker(parent, id, dt, + pos, size, style, + validator, name); +#if wxUSE_INTL + if (ok) + { + MSWSetTimeFormat(wxLOCALE_SHORT_DATE_FMT); + } +#endif + return ok; } WXDWORD wxDatePickerCtrl::MSWGetStyle(long style, WXDWORD *exstyle) const diff --git a/src/msw/datetimectrl.cpp b/src/msw/datetimectrl.cpp index 787a30b8e919..214e12e497f3 100644 --- a/src/msw/datetimectrl.cpp +++ b/src/msw/datetimectrl.cpp @@ -32,6 +32,7 @@ #endif // WX_PRECOMP #include "wx/msw/private/datecontrols.h" +#include "wx/msw/private/uilocale.h" // apparently some versions of mingw define these macros erroneously #ifndef DateTime_GetSystemtime @@ -122,6 +123,16 @@ wxDateTimePickerCtrl::MSWCreateDateTimePicker(wxWindow *parent, return true; } +void wxDateTimePickerCtrl::MSWSetTimeFormat(wxLocaleInfo index) +{ + const wxString format = wxGetMSWDateTimeFormat(index); + if ( !format.empty() ) + { + DateTime_SetFormat(GetHwnd(), + static_cast(format.t_str())); + } +} + void wxDateTimePickerCtrl::SetValue(const wxDateTime& dt) { wxCHECK_RET( dt.IsValid() || MSWAllowsNone(), diff --git a/src/msw/dc.cpp b/src/msw/dc.cpp index 82b940ee1457..fffe1d1dd70e 100644 --- a/src/msw/dc.cpp +++ b/src/msw/dc.cpp @@ -96,10 +96,10 @@ static const int VIEWPORT_EXTENT = 134217727; device = physical/scale + logicalOrigin = logical + deviceOrigin/scale */ -#define XLOG2DEV(x) ((x) + (m_deviceOriginX / m_scaleX)) -#define YLOG2DEV(y) ((y) + (m_deviceOriginY / m_scaleY)) -#define XDEV2LOG(x) ((x) - (m_deviceOriginX / m_scaleX)) -#define YDEV2LOG(y) ((y) - (m_deviceOriginY / m_scaleY)) +#define XLOG2DEV(x) ((x) + (m_deviceOriginX*m_signX / m_scaleX)) +#define YLOG2DEV(y) ((y) + (m_deviceOriginY*m_signY / m_scaleY)) +#define XDEV2LOG(x) ((x) - (m_deviceOriginX*m_signX / m_scaleX)) +#define YDEV2LOG(y) ((y) - (m_deviceOriginY*m_signY / m_scaleY)) // --------------------------------------------------------------------------- // private functions diff --git a/src/msw/dcclient.cpp b/src/msw/dcclient.cpp index cc2549ca7c5e..58185626181a 100644 --- a/src/msw/dcclient.cpp +++ b/src/msw/dcclient.cpp @@ -188,9 +188,8 @@ void wxClientDCImpl::InitDC() { wxWindowDCImpl::InitDC(); - // in wxUniv build we must manually do some DC adjustments usually - // performed by Windows for us -#if defined(__WXUNIVERSAL__) + // Account for the origin of the client area which is non-zero only for + // TLWs with (left or top) toolbar: we shouldn't draw over the toolbar. wxPoint ptOrigin = m_window->GetClientAreaOrigin(); if ( ptOrigin.x || ptOrigin.y ) { @@ -198,6 +197,9 @@ void wxClientDCImpl::InitDC() SetDeviceOrigin(ptOrigin.x, ptOrigin.y); } + // in wxUniv build we must manually do some DC adjustments usually + // performed by Windows for us +#if defined(__WXUNIVERSAL__) // clip the DC to avoid overwriting the non client area wxSize size = m_window->GetClientSize(); DoSetClippingRegion(0, 0, size.x, size.y); diff --git a/src/msw/frame.cpp b/src/msw/frame.cpp index a391cbf94b80..cab78a1bd202 100644 --- a/src/msw/frame.cpp +++ b/src/msw/frame.cpp @@ -244,6 +244,17 @@ void wxFrame::DoGetClientSize(int *x, int *y) const } } #endif // wxUSE_STATUSBAR + + // Ensure that we always return a valid size, it can never be negative. + // + // Note that this takes care of the case when the frame is minimized, as + // Windows client size in this case is (0,0), but while we could test for + // this separately, it seems more robust to just always do this here to + // establish our post-condition. + if ( x && *x < 0 ) + *x = 0; + if ( y && *y < 0 ) + *y = 0; } // ---------------------------------------------------------------------------- diff --git a/src/msw/listbox.cpp b/src/msw/listbox.cpp index f1a0fba66ea1..6bb2ee406ab6 100644 --- a/src/msw/listbox.cpp +++ b/src/msw/listbox.cpp @@ -34,7 +34,7 @@ #include #if wxUSE_OWNER_DRAWN - #include "wx/ownerdrw.h" + #include "wx/msw/private/listboxitem.h" namespace { @@ -49,24 +49,7 @@ #if wxUSE_OWNER_DRAWN -class wxListBoxItem : public wxOwnerDrawn -{ -public: - wxListBoxItem(wxListBox *parent) - { m_parent = parent; } - - wxListBox *GetParent() const - { return m_parent; } - - int GetIndex() const - { return m_parent->GetItemIndex(const_cast(this)); } - - wxString GetName() const override - { return m_parent->GetString(GetIndex()); } - -private: - wxListBox *m_parent; -}; +using wxListBoxItem = wxListBoxItemBase; wxOwnerDrawn *wxListBox::CreateLboxItem(size_t WXUNUSED(n)) { diff --git a/src/msw/mediactrl_am.cpp b/src/msw/mediactrl_am.cpp index 4f232531b2c3..10bb39975195 100644 --- a/src/msw/mediactrl_am.cpp +++ b/src/msw/mediactrl_am.cpp @@ -1374,15 +1374,7 @@ wxLongLong wxAMMediaBackend::GetDuration() case S_OK: // outDuration is in seconds, we need milliseconds -#ifdef wxLongLong_t return static_cast(outDuration * 1000); -#else - // In principle it's possible to have video of duration greater - // than ~1193 hours which corresponds LONG_MAX in milliseconds so - // cast to wxLongLong first and multiply by 1000 only then to avoid - // the overflow (resulting in maximal duration of ~136 years). - return wxLongLong(static_cast(outDuration)) * 1000; -#endif } } diff --git a/src/msw/ole/oleutils.cpp b/src/msw/ole/oleutils.cpp index 72f5b29cc8f6..07468138f193 100644 --- a/src/msw/ole/oleutils.cpp +++ b/src/msw/ole/oleutils.cpp @@ -293,7 +293,6 @@ WXDLLEXPORT bool wxConvertVariantToOle(const wxVariant& variant, VARIANTARG& ole oleVariant.vt = VT_I4; oleVariant.lVal = variant.GetLong() ; } -#if wxUSE_LONGLONG else if (type == wxT("longlong")) { oleVariant.vt = VT_I8; @@ -304,7 +303,6 @@ WXDLLEXPORT bool wxConvertVariantToOle(const wxVariant& variant, VARIANTARG& ole oleVariant.vt = VT_UI8; oleVariant.ullVal = variant.GetULongLong().GetValue(); } -#endif // wxUSE_LONGLONG else if (type == wxT("char")) { oleVariant.vt=VT_I1; // Signed Char @@ -470,14 +468,12 @@ wxConvertOleToVariant(const VARIANTARG& oleVariant, wxVariant& variant, long fla #endif // wxUSE_DATETIME break; -#if wxUSE_LONGLONG case VT_I8: variant = wxLongLong(oleVariant.llVal); break; case VT_UI8: variant = wxULongLong(oleVariant.ullVal); break; -#endif // wxUSE_LONGLONG case VT_I4: case VT_UI4: diff --git a/src/msw/overlay.cpp b/src/msw/overlay.cpp index 9d8240efa3f8..1fbdb383be0f 100644 --- a/src/msw/overlay.cpp +++ b/src/msw/overlay.cpp @@ -161,9 +161,15 @@ void wxOverlayImpl::Init(wxDC* dc, int , int , int , int ) m_window = dc->GetWindow(); // The rectangle must be in screen coordinates - m_rect = m_window->GetClientRect(); + m_rect = m_window->GetClientSize(); m_window->ClientToScreen(&m_rect.x, &m_rect.y); + // Because wxClientDC adjusts the origin of the device context to the + // origin of the client area of the window, we need to compensate for it + // here, to make sure that (0, 0) of the rectangle corresponds to the point + // (0, 0) of the window client area. + m_rect.Offset(-m_window->GetClientAreaOrigin()); + if ( IsUsingConstantOpacity() ) { m_bitmap.CreateWithDIPSize(m_rect.GetSize(), m_window->GetDPIScaleFactor()); diff --git a/src/msw/textctrl.cpp b/src/msw/textctrl.cpp index 3c9da618d050..3fe35c542015 100644 --- a/src/msw/textctrl.cpp +++ b/src/msw/textctrl.cpp @@ -1198,6 +1198,57 @@ void wxTextCtrl::SetRTFValue(const wxString& val) SetInsertionPoint(0); } +wxTextSearchResult wxTextCtrl::SearchText(const wxTextSearch& search) const +{ + // set up the flags + WPARAM flags = 0; + switch ( search.m_direction ) + { + case wxTextSearch::Direction::Down: + flags |= FR_DOWN; + break; + + case wxTextSearch::Direction::Up: + // Nothing to do this is (surprisingly) the default. + break; + } + if (search.m_wholeWord) + { + flags |= FR_WHOLEWORD; + } + if (search.m_matchCase) + { + flags |= FR_MATCHCASE; + } + + FINDTEXTEX findText; + findText.chrg.cpMin = (search.m_startingPosition != -1) ? + // user-provided start + search.m_startingPosition : + // if going down, then start from 0; otherwise, start from end + (search.m_direction == wxTextSearch::Direction::Down) ? 0 : GetLastPosition(); + if (search.m_direction == wxTextSearch::Direction::Down) + { + // go to the end of the text + findText.chrg.cpMax = -1; + } + else + { + // will search from the start of the selection and upward + // to the start of the text + findText.chrg.cpMax = 0; + } + + findText.lpstrText = search.m_searchValue.wc_str(); + + if (SendMessage(GetHwnd(), EM_FINDTEXTEXW, flags, (LPARAM)&findText) == -1) + { + return wxTextSearchResult(); + } + + return wxTextSearchResult{ findText.chrgText.cpMin, findText.chrgText.cpMax }; +} + #endif // wxUSE_RICHEDIT void wxTextCtrl::WriteText(const wxString& value) diff --git a/src/msw/timectrl.cpp b/src/msw/timectrl.cpp index f918f47039fb..27698679996b 100644 --- a/src/msw/timectrl.cpp +++ b/src/msw/timectrl.cpp @@ -27,12 +27,36 @@ #include "wx/timectrl.h" #include "wx/dateevt.h" +#include "wx/msw/private/uilocale.h" + wxIMPLEMENT_DYNAMIC_CLASS(wxTimePickerCtrl, wxControl); // ============================================================================ // wxTimePickerCtrl implementation // ============================================================================ +bool +wxTimePickerCtrl::Create(wxWindow *parent, + wxWindowID id, + const wxDateTime& dt, + const wxPoint& pos, + const wxSize& size, + long style, + const wxValidator& validator, + const wxString& name) +{ + if ( !MSWCreateDateTimePicker(parent, id, dt, + pos, size, style, + validator, name) ) + return false; + +#if wxUSE_INTL + MSWSetTimeFormat(wxLOCALE_TIME_FMT); +#endif + + return true; +} + WXDWORD wxTimePickerCtrl::MSWGetStyle(long style, WXDWORD *exstyle) const { WXDWORD styleMSW = wxTimePickerCtrlBase::MSWGetStyle(style, exstyle); diff --git a/src/msw/toolbar.cpp b/src/msw/toolbar.cpp index 53a52abe72a1..71fb23f35e96 100644 --- a/src/msw/toolbar.cpp +++ b/src/msw/toolbar.cpp @@ -1687,15 +1687,88 @@ bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl), return true; case CDDS_ITEMPREPAINT: + { // If we get here, we must have returned CDRF_NOTIFYITEMDRAW // from above, so we're using the dark mode and need to // customize the colours for it. nmtbcd->clrText = nmtbcd->clrTextHighlight = wxColourToRGB(GetForegroundColour()); - nmtbcd->clrHighlightHotTrack = wxSysColourToRGB(wxSYS_COLOUR_HOTLIGHT); - *result = CDRF_DODEFAULT | TBCDRF_USECDCOLORS | TBCDRF_HILITEHOTTRACK; + const wxColour colBg = m_hasBgCol + ? GetBackgroundColour() + : wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE); + nmtbcd->clrHighlightHotTrack = wxColourToRGB(colBg.ChangeLightness(115)); + + *result = CDRF_DODEFAULT | + CDRF_NOTIFYPOSTPAINT | + TBCDRF_USECDCOLORS | + TBCDRF_HILITEHOTTRACK; + + // Draw custom checked button background when it is not hot: + // by default it is drawn in a light colour not appropriate for + // the dark mode under Windows 11. + if ( (nmtbcd->nmcd.uItemState & + (CDIS_CHECKED | CDIS_HOT)) == CDIS_CHECKED ) + { + const wxColor color = + wxSystemSettings::GetColour(wxSYS_COLOUR_HOTLIGHT) + .ChangeLightness(110); + + AutoHBRUSH br(wxColourToRGB(color)); + ::FillRect(nmtbcd->nmcd.hdc, &nmtbcd->nmcd.rc, br); + *result |= TBCDRF_NOBACKGROUND; + } + + return true; + } + + case CDDS_ITEMPOSTPAINT: + { + // custom draw the drop-down arrow here, as it is always black + WinStruct bi; + bi.dwMask = TBIF_STYLE | TBIF_COMMAND; + const auto itemIndex = + ::SendMessage(GetHwnd(), TB_GETBUTTONINFO, + (WPARAM)nmtbcd->nmcd.dwItemSpec, (LPARAM)&bi); + if ( itemIndex >= 0 && bi.fsStyle & TBSTYLE_DROPDOWN ) + { + RECT ddrc = { 0 }; + ::SendMessage(GetHwnd(), TB_GETITEMDROPDOWNRECT, + (WPARAM)itemIndex, (LPARAM)&ddrc); + + wxColour colBg = m_hasBgCol + ? GetBackgroundColour() + : wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE); + + if ( nmtbcd->nmcd.uItemState & CDIS_HOT ) + { + // Make this slightly different from the colour used + // for the button itself above. + colBg = colBg.ChangeLightness(120); + } + + AutoHBRUSH bgBrush(wxColourToRGB(colBg)); + ::FillRect(nmtbcd->nmcd.hdc, &ddrc, bgBrush); + + int arrowCenterX = (ddrc.left + ddrc.right) / 2; + int arrowCenterY = (ddrc.top + ddrc.bottom) / 2; + POINT ptsArrow[3] = + { + { arrowCenterX - FromDIP(3), arrowCenterY - FromDIP(2) }, + { arrowCenterX + FromDIP(3), arrowCenterY - FromDIP(2) }, + { arrowCenterX, arrowCenterY + FromDIP(2) } + }; + + AutoHBRUSH fgBrush(wxColourToRGB(GetForegroundColour())); + AutoHPEN hPen(wxColourToRGB(GetForegroundColour())); + ::SelectObject(nmtbcd->nmcd.hdc, hPen); + ::SelectObject(nmtbcd->nmcd.hdc, fgBrush); + ::Polygon(nmtbcd->nmcd.hdc, ptsArrow, 3); + } + + *result = CDRF_DODEFAULT; return true; + } } return false; diff --git a/src/msw/uilocale.cpp b/src/msw/uilocale.cpp index 0e21112654d9..4562bb8ad925 100644 --- a/src/msw/uilocale.cpp +++ b/src/msw/uilocale.cpp @@ -109,6 +109,32 @@ LCTYPE wxGetLCTYPEFormatFromLocalInfo(wxLocaleInfo index) return 0; } +WXDLLIMPEXP_BASE wxString wxGetMSWDateTimeFormat(wxLocaleInfo index) +{ + wxString format; + wxString localeName = wxUILocale::GetCurrent().GetName(); + if (localeName.IsSameAs("C")) + { + localeName = "en-US"; + } + + const wchar_t* name = localeName.wc_str(); + LCTYPE lctype = wxGetLCTYPEFormatFromLocalInfo(index); + if (lctype != 0) + { + wchar_t buf[256]; + if (::GetLocaleInfoEx(name, lctype, buf, WXSIZEOF(buf))) + { + format = buf; + } + else + { + wxLogLastError(wxT("GetLocaleInfoEx")); + } + } + return format; +} + // ---------------------------------------------------------------------------- // wxLocaleIdent::GetName() implementation for MSW // ---------------------------------------------------------------------------- diff --git a/src/msw/utils.cpp b/src/msw/utils.cpp index b18d536b606b..5efe2ea24b23 100644 --- a/src/msw/utils.cpp +++ b/src/msw/utils.cpp @@ -479,25 +479,14 @@ bool wxGetDiskSpace(const wxString& path, return false; } - // ULARGE_INTEGER is a union of a 64 bit value and a struct containing - // two 32 bit fields which may be or may be not named - #define UL(ul) ul if ( pTotal ) { -#if wxUSE_LONGLONG - *pTotal = wxDiskspaceSize_t(UL(bytesTotal).HighPart, UL(bytesTotal).LowPart); -#else - *pTotal = wxDiskspaceSize_t(UL(bytesTotal).LowPart); -#endif + *pTotal = wxDiskspaceSize_t(bytesTotal.HighPart, bytesTotal.LowPart); } if ( pFree ) { -#if wxUSE_LONGLONG - *pFree = wxLongLong(UL(bytesFree).HighPart, UL(bytesFree).LowPart); -#else - *pFree = wxDiskspaceSize_t(UL(bytesFree).LowPart); -#endif + *pFree = wxLongLong(bytesFree.HighPart, bytesFree.LowPart); } return true; diff --git a/src/msw/webrequest_winhttp.cpp b/src/msw/webrequest_winhttp.cpp index bc48463973ad..5692737fcf8c 100644 --- a/src/msw/webrequest_winhttp.cpp +++ b/src/msw/webrequest_winhttp.cpp @@ -185,35 +185,51 @@ struct wxURLComponents : URL_COMPONENTS // Helper functions -static wxString wxWinHTTPQueryHeaderString(HINTERNET hRequest, DWORD dwInfoLevel, +static std::vector wxWinHTTPQueryAllHeaderStrings(HINTERNET hRequest, DWORD dwInfoLevel, LPCWSTR pwszName = WINHTTP_HEADER_NAME_BY_INDEX) { - wxString result; - DWORD bufferLen = 0; - wxWinHTTP::WinHttpQueryHeaders(hRequest, dwInfoLevel, pwszName, nullptr, &bufferLen, - WINHTTP_NO_HEADER_INDEX); - if ( ::GetLastError() == ERROR_INSUFFICIENT_BUFFER ) + std::vector result; + DWORD nextIndex = 0; + ::SetLastError(NO_ERROR); + while ( ::GetLastError() != ERROR_WINHTTP_HEADER_NOT_FOUND ) { - // Buffer length is in bytes, including the terminating (wide) NUL, but - // wxWCharBuffer needs the size in characters and adds NUL itself. - if ( !bufferLen || (bufferLen % sizeof(wchar_t)) ) + DWORD bufferLen = 0; + DWORD currentIndex = nextIndex; + wxWinHTTP::WinHttpQueryHeaders(hRequest, dwInfoLevel, pwszName, nullptr, &bufferLen, &nextIndex); + if ( ::GetLastError() == ERROR_INSUFFICIENT_BUFFER ) { - wxLogDebug("Unexpected size of header %s: %lu", pwszName, bufferLen); - return wxString(); - } + // Buffer length is in bytes, including the terminating (wide) NUL, but + // wxWCharBuffer needs the size in characters and adds NUL itself. + if ( !bufferLen || (bufferLen % sizeof(wchar_t)) ) + { + wxLogDebug("Unexpected size of header %s: %lu", pwszName, bufferLen); + return std::vector(); + } - wxWCharBuffer resBuf(bufferLen / sizeof(wchar_t) - 1); - if ( wxWinHTTP::WinHttpQueryHeaders(hRequest, dwInfoLevel, pwszName, - resBuf.data(), &bufferLen, - WINHTTP_NO_HEADER_INDEX) ) - { - result.assign(resBuf); + wxWCharBuffer resBuf(bufferLen / sizeof(wchar_t) - 1); + if ( wxWinHTTP::WinHttpQueryHeaders(hRequest, dwInfoLevel, pwszName, + resBuf.data(), &bufferLen, &nextIndex) ) + { + result.push_back(resBuf); + } } + + if ( nextIndex <= currentIndex ) + break; } return result; } +static wxString wxWinHTTPQueryHeaderString(HINTERNET hRequest, DWORD dwInfoLevel, + LPCWSTR pwszName = WINHTTP_HEADER_NAME_BY_INDEX) +{ + std::vector result = wxWinHTTPQueryAllHeaderStrings( + hRequest, dwInfoLevel, pwszName); + + return result.empty() ? wxString() : result.back(); +} + static wxString wxWinHTTPQueryOptionString(HINTERNET hInternet, DWORD dwOption) { wxString result; @@ -737,7 +753,8 @@ wxWebRequest::Result wxWebRequestWinHTTP::SendRequest() header != m_headers.end(); ++header ) { - allHeaders.append(wxString::Format("%s: %s\n", header->first, header->second)); + for ( const wxString& value : header->second ) + allHeaders.append(wxString::Format("%s: %s\n", header->first, value)); } if ( m_dataSize ) @@ -803,6 +820,12 @@ wxString wxWebResponseWinHTTP::GetHeader(const wxString& name) const name.wc_str()); } +std::vector wxWebResponseWinHTTP::GetAllHeaderValues(const wxString& name) const +{ + return wxWinHTTPQueryAllHeaderStrings(m_requestHandle, WINHTTP_QUERY_CUSTOM, + name.wc_str()); +} + int wxWebResponseWinHTTP::GetStatus() const { DWORD status = 0; @@ -973,7 +996,7 @@ bool wxWebSessionWinHTTP::Open() m_handle = wxWinHTTP::WinHttpOpen ( - GetHeaders().find("User-Agent")->second.wc_str(), + GetHeaders().find("User-Agent")->second.back().wc_str(), accessType, proxyName, WINHTTP_NO_PROXY_BYPASS, diff --git a/src/msw/window.cpp b/src/msw/window.cpp index e882a5cdb7ba..4a647526b1e6 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -188,6 +188,14 @@ int gs_modalEntryWindowCount = 0; // Indicates whether we are currently processing WM_CAPTURECHANGED message. bool gs_insideCaptureChanged = false; +// Set to true once we receive WM_ENDSESSION: after this happens we know that +// the process will shut down, so we try to do as little as possible and +// notably don't delete any windows as this is not only useless (everything +// will be torn down by the OS anyhow) but also dangerous as it could lead to +// getting another WM_ENDSESSION when dispatching messages happening during +// their destruction. +bool gs_gotEndSession = false; + } // anonymous namespace #ifdef WM_GESTURE @@ -469,8 +477,10 @@ wxWindowMSW::~wxWindowMSW() if ( m_hWnd ) { - // VZ: test temp removed to understand what really happens here - //if (::IsWindow(GetHwnd())) + // Don't destroy the window when shutting down, this is unnecessary and + // can result in other messages being generated and possibly resulting + // in WM_ENDSESSION reentrancy. + if ( !gs_gotEndSession ) { if ( !::DestroyWindow(GetHwnd()) ) { @@ -2524,11 +2534,13 @@ wxWindowMSW::HandleMenuSelect(WXWORD nItem, WXWORD flags, WXHMENU hMenu) // the top level menus of the menu bar, which can't be represented using // any valid identifier in wxMenuEvent so use an otherwise unused value for // them - if ( flags & (MF_POPUP | MF_SEPARATOR) ) + if ( flags & MF_SEPARATOR ) item = wxID_NONE; wxMenu* menu = MSWFindMenuFromHMENU(hMenu); - wxMenuEvent event(wxEVT_MENU_HIGHLIGHT, item, menu); + wxMenuItem* menuItem = MSWFindMenuItemFromHMENU(hMenu, item); + + wxMenuEvent event(wxEVT_MENU_HIGHLIGHT, item, menu, menuItem); if ( wxMenu::ProcessMenuEvent(menu, event, this) ) return true; @@ -2577,6 +2589,37 @@ wxMenu* wxWindowMSW::MSWFindMenuFromHMENU(WXHMENU hMenu) return nullptr; } +wxMenuItem* wxWindowMSW::MSWFindMenuItemFromHMENU(WXHMENU hMenu, int item) +{ + WinStruct mii; + mii.fMask = MIIM_ID | MIIM_DATA; // Include MIIM_DATA to access dwItemData + + const int count = ::GetMenuItemCount(hMenu); + for ( int i = 0; i < count; i++ ) + { + if ( ::GetMenuItemInfo(hMenu, i, TRUE, &mii) ) + { + wxMenuItem* menuItem = (wxMenuItem*)mii.dwItemData; + if ( mii.wID == (unsigned int)item && menuItem ) + { + return menuItem; + } + + // Check for submenus + if ( mii.hSubMenu ) + { + wxMenuItem* foundInSubmenu = MSWFindMenuItemFromHMENU(mii.hSubMenu, item); + if ( foundInSubmenu ) + { + return foundInSubmenu; + } + } + } + } + + return nullptr; // Not found +} + #endif // wxUSE_MENUS && !defined(__WXUNIVERSAL__) // =========================================================================== @@ -4293,34 +4336,71 @@ bool wxWindowMSW::MSWOnNotify(int WXUNUSED(idCtrl), // end session messages // --------------------------------------------------------------------------- -bool wxWindowMSW::HandleQueryEndSession(long logOff, bool *mayEnd) +namespace { - wxCloseEvent event(wxEVT_QUERY_END_SESSION, wxID_ANY); - event.SetEventObject(wxTheApp); - event.SetCanVeto(true); - event.SetLoggingOff(logOff == (long)ENDSESSION_LOGOFF); - bool rc = wxTheApp->SafelyProcessEvent(event); +// Possible values for the flag below. +enum class QueryEndSession +{ + Unknown, + Allow, + Veto +}; + +// This flag is set to either Allow or Veto when our first top level window +// gets WM_QUERYENDSESSION in order to allow all the other windows to just +// return the same value without asking the user again, because this should +// have been already done in wxApp::OnQueryEndSession(). +QueryEndSession gs_queryEndSession = QueryEndSession::Unknown; + +} // anonymous namespace - if ( rc ) +bool wxWindowMSW::HandleQueryEndSession(long logOff, bool *mayEnd) +{ + if ( gs_queryEndSession == QueryEndSession::Unknown ) { - // we may end only if the app didn't veto session closing (double - // negation...) - *mayEnd = !event.GetVeto(); + // Make sure we won't generate another wxEVT_QUERY_END_SESSION. + gs_queryEndSession = QueryEndSession::Allow; + + wxCloseEvent event(wxEVT_QUERY_END_SESSION, wxID_ANY); + event.SetEventObject(wxTheApp); + event.SetCanVeto(true); + event.SetLoggingOff(logOff == (long)ENDSESSION_LOGOFF); + + if ( !wxTheApp->SafelyProcessEvent(event) ) + { + // If the event wasn't handled at all, skip all the rest. + return false; + } + + if ( event.GetVeto() ) + gs_queryEndSession = QueryEndSession::Veto; } - return rc; + *mayEnd = gs_queryEndSession == QueryEndSession::Allow; + + return true; } bool wxWindowMSW::HandleEndSession(bool endSession, long logOff) { - // do nothing if the session isn't ending + // If the session isn't ending we don't need to generate any events, but we + // need to reset the flag set in HandleQueryEndSession() to make sure we + // send wxEVT_QUERY_END_SESSION again next time. if ( !endSession ) + { + gs_queryEndSession = QueryEndSession::Unknown; return false; + } - // only send once - if ( this != wxApp::GetMainTopWindow() ) + if ( gs_gotEndSession ) + { + // Never generate wxEVT_END_SESSION twice, this can only result in + // trouble, such as trying to delete the already deleted window. return false; + } + + gs_gotEndSession = true; wxCloseEvent event(wxEVT_END_SESSION, wxID_ANY); event.SetEventObject(wxTheApp); diff --git a/src/osx/carbon/dcscreen.cpp b/src/osx/carbon/dcscreen.cpp index 2820080e5f6b..bcc361c96c5c 100644 --- a/src/osx/carbon/dcscreen.cpp +++ b/src/osx/carbon/dcscreen.cpp @@ -13,6 +13,7 @@ #include "wx/osx/dcscreen.h" #include "wx/osx/private.h" +#include "wx/osx/private/available.h" #include "wx/graphics.h" wxIMPLEMENT_ABSTRACT_CLASS(wxScreenDCImpl, wxWindowDCImpl); @@ -68,14 +69,25 @@ wxBitmap wxScreenDCImpl::DoGetAsBitmap(const wxRect *subrect) const srcRect = CGRectOffset( srcRect, -subrect->x, -subrect->y ) ; CGImageRef image = nullptr; - - image = CGDisplayCreateImage(kCGDirectMainDisplay); - wxASSERT_MSG(image, wxT("wxScreenDC::GetAsBitmap - unable to get screenshot.")); - - CGContextDrawImage(context, srcRect, image); +#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 140000 + if ( WX_IS_MACOS_AVAILABLE(14, 4) ) // errors on lower versions of macOS 14 + { + // TODO add ScreenKit implementation + } + else +#endif // macOS 10.14+ + { +#if __MAC_OS_X_VERSION_MAX_ALLOWED < 150000 + image = CGDisplayCreateImage(kCGDirectMainDisplay); +#endif + } - CGImageRelease(image); + if ( image != nullptr ) + { + CGContextDrawImage(context, srcRect, image); + CGImageRelease(image); + } CGContextRestoreGState(context); #else diff --git a/src/osx/cocoa/dataview.mm b/src/osx/cocoa/dataview.mm index fde7b9e88cb8..ef5de68a457f 100644 --- a/src/osx/cocoa/dataview.mm +++ b/src/osx/cocoa/dataview.mm @@ -3592,6 +3592,8 @@ - (NSPoint)cellBaselineOffset m_NativeDataPtr(new wxDataViewColumnNativeData()), m_title(title) { + m_renderer->SetOwner( this ); + InitCommon(width, align, flags); if (renderer && !renderer->IsCustomRenderer() && (renderer->GetAlignment() == wxDVR_DEFAULT_ALIGNMENT)) @@ -3608,6 +3610,8 @@ - (NSPoint)cellBaselineOffset : wxDataViewColumnBase(bitmap, renderer, model_column), m_NativeDataPtr(new wxDataViewColumnNativeData()) { + m_renderer->SetOwner( this ); + InitCommon(width, align, flags); if (renderer && !renderer->IsCustomRenderer() && (renderer->GetAlignment() == wxDVR_DEFAULT_ALIGNMENT)) diff --git a/src/osx/cocoa/datetimectrl.mm b/src/osx/cocoa/datetimectrl.mm index a2980faf9a5b..692ec19a1690 100644 --- a/src/osx/cocoa/datetimectrl.mm +++ b/src/osx/cocoa/datetimectrl.mm @@ -23,10 +23,12 @@ #include "wx/datetimectrl.h" #include "wx/datectrl.h" +#include "wx/uilocale.h" #include "wx/osx/core/private/datetimectrl.h" #include "wx/osx/cocoa/private/date.h" #include "wx/osx/private/available.h" +#include "wx/osx/private/uilocale.h" using namespace wxOSXImpl; @@ -188,6 +190,17 @@ virtual void Enable(bool enable = true) override [v setDatePickerStyle: NSTextFieldAndStepperDatePickerStyle]; +#if wxUSE_INTL + if ( wxUILocale::GetCurrent().IsSupported() ) + { + NSLocale* nsloc = wxGetCurrentNSLocale(); + if (nsloc) + { + [v setLocale: nsloc]; + } + } +#endif + if ( style & wxDP_DROPDOWN ) { #if __MAC_OS_X_VERSION_MAX_ALLOWED >= 101504 diff --git a/src/osx/cocoa/renderer.mm b/src/osx/cocoa/renderer.mm index 7e1c1d555118..1d30c814e8aa 100644 --- a/src/osx/cocoa/renderer.mm +++ b/src/osx/cocoa/renderer.mm @@ -1133,7 +1133,7 @@ int WXUNUSED(flags)) tdi.kind = kThemeLargeProgressBar; int milliSecondsPerStep = 1000 / 60; - wxLongLongNative localTime = wxGetLocalTimeMillis(); + wxLongLong localTime = wxGetLocalTimeMillis(); tdi.trackInfo.progress.phase = localTime.GetValue() / milliSecondsPerStep % 32; CGContextRef cgContext; diff --git a/src/osx/core/uilocale.mm b/src/osx/core/uilocale.mm index 270c9c5d2024..fccd218aa3c1 100644 --- a/src/osx/core/uilocale.mm +++ b/src/osx/core/uilocale.mm @@ -32,9 +32,24 @@ #import #import +#include "wx/osx/private/uilocale.h" + extern wxString wxGetInfoFromCFLocale(CFLocaleRef cfloc, wxLocaleInfo index, wxLocaleCategory cat); +// Helper function to retrieve a pointer to the NSLocale of the current wxUILocale +static NSLocale* gs_currentNSLocale = nullptr; + +NSLocale* wxGetCurrentNSLocale() +{ + if (!gs_currentNSLocale) + { + static wxCFRef stdCLocale([[NSLocale localeWithLocaleIdentifier:@"en_US_POSIX"] retain]); + gs_currentNSLocale = stdCLocale; + } + return gs_currentNSLocale; +} + // ---------------------------------------------------------------------------- // wxLocaleIdent::GetName() implementation using Foundation // ---------------------------------------------------------------------------- @@ -170,6 +185,8 @@ int CompareStrings(const wxString& lhs, const wxString& rhs, { // There is no way to start using a locale other than default, so there is // nothing to do here. + // However, make the associated NSLocale instance accessible for internal use + gs_currentNSLocale = m_nsloc; } wxString diff --git a/src/osx/webrequest_urlsession.mm b/src/osx/webrequest_urlsession.mm index ae5bf59bc4d2..b178eaf4923d 100644 --- a/src/osx/webrequest_urlsession.mm +++ b/src/osx/webrequest_urlsession.mm @@ -190,8 +190,10 @@ - (void)URLSession:(NSURLSession *)session // Set request headers for (wxWebRequestHeaderMap::const_iterator it = m_headers.begin(); it != m_headers.end(); ++it) { - [req setValue:wxCFStringRef(it->second).AsNSString() forHTTPHeaderField: - wxCFStringRef(it->first).AsNSString()]; + // TODO: URLSession does not support multiple headers with the same name. + // Fall back to last header with given name. + [req setValue:wxCFStringRef(it->second.back()).AsNSString() forHTTPHeaderField: + wxCFStringRef(it->first).AsNSString()]; } if (m_dataSize) @@ -434,6 +436,13 @@ void Wait() return wxString(); } +std::vector wxWebResponseURLSession::GetAllHeaderValues(const wxString& name) const +{ + // TODO: URLSession does not support multiple headers with the same name. + // Fall back to last header with given name. + return { GetHeader(name) }; +} + int wxWebResponseURLSession::GetStatus() const { NSHTTPURLResponse* httpResp = (NSHTTPURLResponse*) m_task.response; diff --git a/src/propgrid/editors.cpp b/src/propgrid/editors.cpp index 3e49e504c57d..42778bdfb8e7 100644 --- a/src/propgrid/editors.cpp +++ b/src/propgrid/editors.cpp @@ -1265,13 +1265,12 @@ bool wxPGComboBoxEditor::OnEvent( wxPropertyGrid* propGrid, wxWindow* ctrl, wxEvent& event ) const { - wxOwnerDrawnComboBox* cb = nullptr; wxWindow* textCtrl = nullptr; if ( ctrl ) { - cb = (wxOwnerDrawnComboBox*)ctrl; - textCtrl = cb->GetTextCtrl(); + if ( auto cb = wxDynamicCast(ctrl, wxOwnerDrawnComboBox) ) + textCtrl = cb->GetTextCtrl(); } if ( wxPGTextCtrlEditor::OnTextCtrlEvent(propGrid,property,textCtrl,event) ) diff --git a/src/propgrid/property.cpp b/src/propgrid/property.cpp index f9166b968136..68c33245e5a4 100644 --- a/src/propgrid/property.cpp +++ b/src/propgrid/property.cpp @@ -1750,12 +1750,10 @@ wxVariant wxPGProperty::GetDefaultValue() const return wxVariant(0.0); if ( valueType == wxPG_VARIANT_TYPE_ARRSTRING ) return wxVariant(wxArrayString()); -#if wxUSE_LONGLONG if ( valueType == wxPG_VARIANT_TYPE_LONGLONG ) return wxVariant(wxLongLong(0)); if ( valueType == wxPG_VARIANT_TYPE_ULONGLONG ) return wxVariant(wxULongLong(0)); -#endif if ( valueType == wxS("wxColour") ) return WXVARIANT(*wxBLACK); #if wxUSE_DATETIME diff --git a/src/propgrid/propgrid.cpp b/src/propgrid/propgrid.cpp index 119105e73d83..a1ed7af8be30 100644 --- a/src/propgrid/propgrid.cpp +++ b/src/propgrid/propgrid.cpp @@ -1378,6 +1378,9 @@ void wxPropertyGrid::OnDPIChanged(wxDPIChangedEvent &event) CalculateFontAndBitmapStuff(m_vspacing); Refresh(); + if ( wxPGProperty* const selected = GetSelection() ) + RefreshProperty(selected); + event.Skip(); } @@ -2565,6 +2568,8 @@ void wxPropertyGrid::DrawItems( const wxPGProperty* p1, const wxPGProperty* p2 ) void wxPropertyGrid::RefreshProperty( wxPGProperty* p ) { + wxCHECK_RET( p, wxS("invalid property id") ); + if ( m_pState->DoIsPropertySelected(p) || p->IsChildSelected(true) ) { // NB: We must copy the selection. @@ -2583,6 +2588,8 @@ void wxPropertyGrid::RefreshProperty( wxPGProperty* p ) void wxPropertyGrid::DrawItemAndValueRelated( wxPGProperty* p ) { + wxCHECK_RET( p, wxS("invalid property id") ); + if ( IsFrozen() ) return; diff --git a/src/propgrid/propgridiface.cpp b/src/propgrid/propgridiface.cpp index d3b3d71714ab..ff6de7f6348e 100644 --- a/src/propgrid/propgridiface.cpp +++ b/src/propgrid/propgridiface.cpp @@ -799,7 +799,6 @@ wxArrayString wxPropertyGridInterface::GetPropertyValueAsArrayString(wxPGPropArg return value.GetArrayString(); } -#if defined(wxLongLong_t) && wxUSE_LONGLONG wxLongLong_t wxPropertyGridInterface::GetPropertyValueAsLongLong(wxPGPropArg id) const { wxPG_PROP_ARG_CALL_PROLOG_RETVAL(0) @@ -811,7 +810,6 @@ wxULongLong_t wxPropertyGridInterface::GetPropertyValueAsULongLong(wxPGPropArg i wxPG_PROP_ARG_CALL_PROLOG_RETVAL(0) return p->GetValue().GetULongLong().GetValue(); } -#endif wxArrayInt wxPropertyGridInterface::GetPropertyValueAsArrayInt(wxPGPropArg id) const { diff --git a/src/propgrid/propgridpagestate.cpp b/src/propgrid/propgridpagestate.cpp index 1af4653a5dc8..53edb1310854 100644 --- a/src/propgrid/propgridpagestate.cpp +++ b/src/propgrid/propgridpagestate.cpp @@ -1439,10 +1439,15 @@ void wxPropertyGridPageState::DoSetPropertyValues( const wxVariantList& list, wx if ( !origFrozen ) m_pPropGrid->Freeze(); } - wxPropertyCategory* use_category = (wxPropertyCategory*)defaultCategory; + const auto asCategory = [](wxPGProperty* p) -> wxPropertyCategory* + { + return p && p->IsCategory() ? static_cast(p) : nullptr; + }; + + wxPropertyCategory* use_category = asCategory(defaultCategory); if ( !use_category ) - use_category = (wxPropertyCategory*)m_properties; + use_category = asCategory(m_properties); // Let's iterate over the list of variants. int numSpecialEntries = 0; diff --git a/src/propgrid/props.cpp b/src/propgrid/props.cpp index 6d8a90bfed30..db32141a64e8 100644 --- a/src/propgrid/props.cpp +++ b/src/propgrid/props.cpp @@ -379,13 +379,11 @@ wxIntProperty::wxIntProperty( const wxString& label, const wxString& name, SetValue(value); } -#if wxUSE_LONGLONG wxIntProperty::wxIntProperty( const wxString& label, const wxString& name, const wxLongLong& value ) : wxNumericProperty(label,name) { SetValue(wxVariant(value)); } -#endif wxString wxIntProperty::ValueToString( wxVariant& value, wxPGPropValFormatFlags WXUNUSED(flags) ) const @@ -395,13 +393,11 @@ wxString wxIntProperty::ValueToString( wxVariant& value, { return wxString::Format(wxS("%li"),value.GetLong()); } -#if wxUSE_LONGLONG else if ( valType == wxPG_VARIANT_TYPE_LONGLONG ) { wxLongLong ll = value.GetLongLong(); return ll.ToString(); } -#endif return wxString(); } @@ -427,7 +423,6 @@ bool wxIntProperty::StringToValue( wxVariant& variant, const wxString& text, wxP const wxString variantType(variant.GetType()); bool isPrevLong = variantType == wxPG_VARIANT_TYPE_LONG; -#if defined(wxLongLong_t) && wxUSE_LONGLONG wxLongLong_t value64 = 0; if ( useText.ToLongLong(&value64, 10) && @@ -450,7 +445,6 @@ bool wxIntProperty::StringToValue( wxVariant& variant, const wxString& text, wxP return true; } } -#endif long value32; if ( useText.ToLong( &value32, 0 ) ) { @@ -477,7 +471,6 @@ bool wxIntProperty::IntToValue( wxVariant& variant, int value, wxPGPropValFormat return false; } -#if wxUSE_LONGLONG bool wxIntProperty::DoValidation( const wxNumericProperty* property, wxLongLong& value, wxPGValidationInfo* pValidationInfo, @@ -487,7 +480,6 @@ bool wxIntProperty::DoValidation( const wxNumericProperty* property, pValidationInfo, mode, wxLongLong(wxPG_LLONG_MIN), wxLongLong(wxPG_LLONG_MAX)); } -#endif // wxUSE_LONGLONG bool wxIntProperty::DoValidation(const wxNumericProperty* property, long& value, @@ -501,11 +493,7 @@ bool wxIntProperty::DoValidation(const wxNumericProperty* property, bool wxIntProperty::ValidateValue( wxVariant& value, wxPGValidationInfo& validationInfo ) const { -#if wxUSE_LONGLONG wxLongLong ll = value.GetLongLong(); -#else - long ll = value.GetLong(); -#endif return DoValidation(this, ll, &validationInfo, wxPGNumericValidationMode::ErrorMessage); } @@ -542,7 +530,6 @@ wxVariant wxIntProperty::AddSpinStepValue(long stepScale) const DoValidation(this, v, nullptr, mode); value = v; } -#if wxUSE_LONGLONG else if ( value.GetType() == wxPG_VARIANT_TYPE_LONGLONG ) { wxLongLong v = value.GetLongLong(); @@ -551,7 +538,6 @@ wxVariant wxIntProperty::AddSpinStepValue(long stepScale) const DoValidation(this, v, nullptr, mode); value = v; } -#endif // wxUSE_LONGLONG else { wxFAIL_MSG("Unknown value type"); @@ -593,14 +579,12 @@ wxUIntProperty::wxUIntProperty( const wxString& label, const wxString& name, SetValue((long)value); } -#if wxUSE_LONGLONG wxUIntProperty::wxUIntProperty( const wxString& label, const wxString& name, const wxULongLong& value ) : wxNumericProperty(label,name) { Init(); SetValue(wxVariant(value)); } -#endif wxString wxUIntProperty::ValueToString(wxVariant& value, wxPGPropValFormatFlags flags) const { @@ -620,7 +604,6 @@ wxString wxUIntProperty::ValueToString(wxVariant& value, wxPGPropValFormatFlags wxS("%lu"), wxS("%lo") }; -#if wxUSE_LONGLONG static constexpr std::array gs_uintTemplates64 { wxS("%") wxS(wxLongLongFmtSpec) wxS("x"), @@ -646,7 +629,6 @@ wxString wxUIntProperty::ValueToString(wxVariant& value, wxPGPropValFormatFlags wxS("%") wxS(wxLongLongFmtSpec) wxS("u"), wxS("%") wxS(wxLongLongFmtSpec) wxS("o") }; -#endif // wxUSE_LONGLONG size_t index = m_base + m_prefix; if ( index >= wxPG_UINT_TEMPLATE_MAX ) @@ -660,7 +642,6 @@ wxString wxUIntProperty::ValueToString(wxVariant& value, wxPGPropValFormatFlags gs_uintTemplates32[index]; return wxString::Format(fmt, (unsigned long)value.GetLong()); } -#if wxUSE_LONGLONG else if ( valType == wxPG_VARIANT_TYPE_ULONGLONG ) { const wxStringCharType* fmt = !!(flags & wxPGPropValFormatFlags::EditableValue) ? @@ -669,7 +650,6 @@ wxString wxUIntProperty::ValueToString(wxVariant& value, wxPGPropValFormatFlags wxULongLong ull = value.GetULongLong(); return wxString::Format(fmt, ull.GetValue()); } -#endif return wxString(); } @@ -690,7 +670,6 @@ bool wxUIntProperty::StringToValue(wxVariant& variant, const wxString& text, wxP const wxString variantType(variant.GetType()); bool isPrevLong = variantType == wxPG_VARIANT_TYPE_LONG; -#if defined(wxULongLong_t) && wxUSE_LONGLONG wxULongLong_t value64 = 0; if ( s.ToULongLong(&value64, (unsigned int)m_realBase) ) @@ -713,7 +692,6 @@ bool wxUIntProperty::StringToValue(wxVariant& variant, const wxString& text, wxP } } } -#endif unsigned long value32; if ( s.ToULong(&value32, m_realBase) && value32 <= wxPG_LONG_MAX ) { @@ -740,7 +718,6 @@ bool wxUIntProperty::IntToValue( wxVariant& variant, int number, wxPGPropValForm return false; } -#if wxUSE_LONGLONG bool wxUIntProperty::DoValidation(const wxNumericProperty* property, wxULongLong& value, wxPGValidationInfo* pValidationInfo, @@ -749,7 +726,6 @@ bool wxUIntProperty::DoValidation(const wxNumericProperty* property, return property->DoNumericValidation(value, pValidationInfo, mode, wxULongLong(0), wxULongLong(wxPG_ULLONG_MAX)); } -#endif // wxUSE_LONGLONG bool wxUIntProperty::DoValidation(const wxNumericProperty* property, long& value, @@ -762,11 +738,7 @@ bool wxUIntProperty::DoValidation(const wxNumericProperty* property, bool wxUIntProperty::ValidateValue( wxVariant& value, wxPGValidationInfo& validationInfo ) const { -#if wxUSE_LONGLONG wxULongLong uul = value.GetULongLong(); -#else - long uul = value.GetLong(); -#endif return DoValidation(this, uul, &validationInfo, wxPGNumericValidationMode::ErrorMessage); } @@ -828,7 +800,6 @@ wxVariant wxUIntProperty::AddSpinStepValue(long stepScale) const DoValidation(this, v, nullptr, mode); value = v; } -#if wxUSE_LONGLONG else if ( value.GetType() == wxPG_VARIANT_TYPE_ULONGLONG ) { wxULongLong v = value.GetULongLong(); @@ -837,7 +808,6 @@ wxVariant wxUIntProperty::AddSpinStepValue(long stepScale) const DoValidation(this, v, nullptr, mode); value = v; } -#endif // wxUSE_LONGLONG else { wxFAIL_MSG("Unknown value type"); diff --git a/src/qt/app.cpp b/src/qt/app.cpp index 99b97d0ba7fe..93458f55de60 100644 --- a/src/qt/app.cpp +++ b/src/qt/app.cpp @@ -35,9 +35,9 @@ wxApp::~wxApp() } } -bool wxApp::Initialize( int &argc, wxChar **argv ) +bool wxApp::Initialize( int& argc_, wxChar** argv_ ) { - if ( !wxAppBase::Initialize( argc, argv )) + if ( !wxAppBase::Initialize( argc_, argv_ )) return false; wxConvCurrent = &wxConvUTF8; @@ -49,13 +49,13 @@ bool wxApp::Initialize( int &argc, wxChar **argv ) // TODO: Check whether new/strdup etc. can be replaced with std::vector<>. // Clone and store arguments - m_qtArgv.reset(new char* [argc + 1]); - for ( int i = 0; i < argc; i++ ) + m_qtArgv.reset(new char* [argc_ + 1]); + for ( int i = 0; i < argc_; i++ ) { - m_qtArgv[i] = wxStrdupA(wxConvUTF8.cWX2MB(argv[i])); + m_qtArgv[i] = wxStrdupA(wxConvUTF8.cWX2MB(argv_[i])); } - m_qtArgv[argc] = nullptr; - m_qtArgc = argc; + m_qtArgv[argc_] = nullptr; + m_qtArgc = argc_; // Use SingleBuffer mode by default to reduce latency. QSurfaceFormat format; @@ -67,7 +67,7 @@ bool wxApp::Initialize( int &argc, wxChar **argv ) // Use the args returned by Qt as it may have deleted (processed) some of them // Using QApplication::arguments() forces argument processing QStringList qtArgs = m_qtApplication->arguments(); - if ( qtArgs.size() != argc ) + if ( qtArgs.size() != argc_ ) { /* As per Qt 4.6: Here, qtArgc and qtArgv have been modified and can * be used to replace our args (with Qt-flags removed). Also, they can be @@ -76,15 +76,15 @@ bool wxApp::Initialize( int &argc, wxChar **argv ) * ourselves and only delete then after the QApplication is deleted */ // Qt changed the arguments - delete [] argv; - argv = new wxChar *[qtArgs.size() + 1]; + delete [] argv_; + argv_ = new wxChar *[qtArgs.size() + 1]; for ( int i = 0; i < qtArgs.size(); i++ ) { - argv[i] = wxStrdupW( wxConvUTF8.cMB2WX( qtArgs[i].toUtf8().data() ) ); + argv_[i] = wxStrdupW( wxConvUTF8.cMB2WX( qtArgs[i].toUtf8().data() ) ); } - argc = m_qtApplication->arguments().size(); - argv[argc] = nullptr; + argc_ = m_qtApplication->arguments().size(); + argv_[argc_] = nullptr; } return true; diff --git a/src/qt/bitmap.cpp b/src/qt/bitmap.cpp index b5edf069d7d5..a5bc256ac43e 100644 --- a/src/qt/bitmap.cpp +++ b/src/qt/bitmap.cpp @@ -86,7 +86,7 @@ static QImage ConvertImage( const wxImage &image, wxMask** mask = nullptr ) QRgb colour; QImage qtMask; - QRgb maskedColour; + QRgb maskedColour wxDUMMY_INITIALIZE(0); if ( hasMask ) { unsigned char r, g, b; diff --git a/src/qt/dataview.cpp b/src/qt/dataview.cpp index 906480fe8ab7..cf6694d8cde9 100644 --- a/src/qt/dataview.cpp +++ b/src/qt/dataview.cpp @@ -20,6 +20,7 @@ wxDataViewColumn::wxDataViewColumn( const wxString &title, wxDataViewRenderer *r int flags ) : wxDataViewColumnBase( renderer, model_column ) { + m_renderer->SetOwner( this ); } wxDataViewColumn::wxDataViewColumn( const wxBitmapBundle &bitmap, wxDataViewRenderer *renderer, @@ -28,6 +29,7 @@ wxDataViewColumn::wxDataViewColumn( const wxBitmapBundle &bitmap, wxDataViewRend int flags ) : wxDataViewColumnBase( bitmap, renderer, model_column ) { + m_renderer->SetOwner( this ); } void wxDataViewColumn::SetTitle( const wxString &title ) diff --git a/src/qt/dcclient.cpp b/src/qt/dcclient.cpp index 13310331b567..675d127b2074 100644 --- a/src/qt/dcclient.cpp +++ b/src/qt/dcclient.cpp @@ -117,6 +117,8 @@ wxClientDCImpl::wxClientDCImpl( wxDC *owner, wxWindow *win ) { m_qtPainter->setClipRect( wxQtConvertRect(win->GetClientRect()), m_clipping ? Qt::IntersectClip : Qt::ReplaceClip ); + + m_qtPainter->translate( wxQtConvertPoint(win->GetClientAreaOrigin()) ); } } diff --git a/src/qt/font.cpp b/src/qt/font.cpp index c36859132f44..768a1955d1ed 100644 --- a/src/qt/font.cpp +++ b/src/qt/font.cpp @@ -522,7 +522,7 @@ void wxNativeFontInfo::SetPixelSize(const wxSize& size) void wxNativeFontInfo::SetStyle(wxFontStyle style) { - QFont::Style qtStyle; + QFont::Style qtStyle wxDUMMY_INITIALIZE(QFont::StyleNormal); switch ( style ) { diff --git a/src/qt/listctrl.cpp b/src/qt/listctrl.cpp index 0a78af4267e2..2173bd9121d9 100644 --- a/src/qt/listctrl.cpp +++ b/src/qt/listctrl.cpp @@ -1138,9 +1138,9 @@ class wxQtListTreeWidget : public wxQtEventSignalHandler< QTreeView, wxListCtrl { m_isDragging = false; - const ListEventData data { m_parent->columnAt(event->x()), -1 }; + const ListEventData eventData { m_parent->columnAt(event->x()), -1 }; - m_parent->EmitListEvent(wxEVT_LIST_COL_END_DRAG, QModelIndex(), &data); + m_parent->EmitListEvent(wxEVT_LIST_COL_END_DRAG, QModelIndex(), &eventData); } QHeaderView::mouseReleaseEvent(event); @@ -1149,26 +1149,26 @@ class wxQtListTreeWidget : public wxQtEventSignalHandler< QTreeView, wxListCtrl private: void sectionClicked(int logicalIndex) { - const ListEventData data { logicalIndex, -1 }; + const ListEventData eventData { logicalIndex, -1 }; - m_parent->EmitListEvent(wxEVT_LIST_COL_CLICK, QModelIndex(), &data); + m_parent->EmitListEvent(wxEVT_LIST_COL_CLICK, QModelIndex(), &eventData); } void sectionRightClicked(const QPoint& pos) { - const ListEventData data { m_parent->columnAt(pos.x()), -1 }; + const ListEventData eventData { m_parent->columnAt(pos.x()), -1 }; - m_parent->EmitListEvent(wxEVT_LIST_COL_RIGHT_CLICK, QModelIndex(), &data); + m_parent->EmitListEvent(wxEVT_LIST_COL_RIGHT_CLICK, QModelIndex(), &eventData); } void sectionResized(int logicalIndex, int oldSize, int newSize) { - ListEventData data; + ListEventData eventData; if ( m_isDragging ) { - data = { logicalIndex, newSize }; - m_parent->EmitListEvent(wxEVT_LIST_COL_DRAGGING, QModelIndex(), &data); + eventData = { logicalIndex, newSize }; + m_parent->EmitListEvent(wxEVT_LIST_COL_DRAGGING, QModelIndex(), &eventData); return; } @@ -1180,10 +1180,10 @@ class wxQtListTreeWidget : public wxQtEventSignalHandler< QTreeView, wxListCtrl return; } - data = { logicalIndex, oldSize }; + eventData = { logicalIndex, oldSize }; if ( sectionResizeMode(logicalIndex) == QHeaderView::Fixed || - !m_parent->EmitListEvent(wxEVT_LIST_COL_BEGIN_DRAG, QModelIndex(), &data) ) + !m_parent->EmitListEvent(wxEVT_LIST_COL_BEGIN_DRAG, QModelIndex(), &eventData) ) { wxQtEnsureSignalsBlocked blocker(this); resizeSection(logicalIndex, oldSize); @@ -1229,7 +1229,7 @@ wxQtListTreeWidget::wxQtListTreeWidget( wxWindow *parent, wxListCtrl *handler ) bool wxQtListTreeWidget::EmitListEvent(wxEventType type, const QModelIndex &index, - const ListEventData* data) const + const ListEventData* eventData) const { wxListCtrl *handler = GetHandler(); if ( handler ) @@ -1239,22 +1239,22 @@ bool wxQtListTreeWidget::EmitListEvent(wxEventType type, wxListEvent event; InitListEvent(event, handler, type, index); - if ( !index.isValid() && data ) + if ( !index.isValid() && eventData ) { if ( type == wxEVT_LIST_ITEM_SELECTED || type == wxEVT_LIST_ITEM_DESELECTED ) { // Instead of sending hundreds of (de)selection messages, send only // one for each range which is more efficient (see issue #4541) - // data->m_colOrFirstRow is the first row in the (de)selection - // data->m_colWidthOrLastRow is the last row in the (de)selection + // eventData->m_colOrFirstRow is the first row in the (de)selection + // eventData->m_colWidthOrLastRow is the last row in the (de)selection wxFAIL_MSG("No implementation yet"); } - else if ( data->m_colOrFirstRow >= 0 && - data->m_colOrFirstRow < handler->GetColumnCount() ) + else if ( eventData->m_colOrFirstRow >= 0 && + eventData->m_colOrFirstRow < handler->GetColumnCount() ) { - event.m_col = data->m_colOrFirstRow; - event.m_item.m_width = data->m_colWidthOrLastRow; + event.m_col = eventData->m_colOrFirstRow; + event.m_item.m_width = eventData->m_colWidthOrLastRow; event.m_pointDrag = wxQtConvertPoint( QCursor::pos() ); if ( type == wxEVT_LIST_COL_RIGHT_CLICK ) @@ -1448,7 +1448,6 @@ bool wxListCtrl::SetColumnWidth(int col, int width) { if ( width == wxLIST_AUTOSIZE_USEHEADER ) { - const auto header = GetQListTreeWidget()->header(); const QHeaderView::ResizeMode oldResizeMode = header->sectionResizeMode(col); header->setSectionResizeMode(col, QHeaderView::ResizeToContents); diff --git a/src/qt/textctrl.cpp b/src/qt/textctrl.cpp index 951141955451..bb586fd60bae 100644 --- a/src/qt/textctrl.cpp +++ b/src/qt/textctrl.cpp @@ -466,9 +466,10 @@ class wxQtSingleLineEdit : public wxQtEdit virtual void SetMaxLength(unsigned long len) override { // Notice that setMaxLength() takes an int and not an unsigned int - if ( len == 0 || len > std::numeric_limits::max() ) + const unsigned long maxlen = std::numeric_limits::max(); + if ( len == 0 || len > maxlen ) { - len = std::numeric_limits::max(); + len = maxlen; } m_edit->setMaxLength(len); diff --git a/src/richtext/richtextbuffer.cpp b/src/richtext/richtextbuffer.cpp index 227bf47f9336..dcdd06e39d2c 100644 --- a/src/richtext/richtextbuffer.cpp +++ b/src/richtext/richtextbuffer.cpp @@ -10116,7 +10116,6 @@ bool wxRichTextTable::Draw(wxDC& dc, wxRichTextDrawingContext& context, const wx wxRichTextCell* cell = GetCell(row, col); if (cell && cell->IsShown() && !cell->GetRange().IsOutside(range)) { - wxRect childRect(cell->GetPosition(), cell->GetCachedSize()); wxRichTextAttr attr(cell->GetAttributes()); cell->AdjustAttributes(attr, context); if (row != 0) @@ -10395,8 +10394,6 @@ bool wxRichTextTable::Layout(wxReadOnlyDC& dc, wxRichTextDrawingContext& context spanningWidths.Add(0, m_colCount); spanningWidthsSpanLengths.Add(0, m_colCount); - wxSize tableSize(tableWidth, 0); - int i, j, k; for (i = 0; i < m_colCount; i++) @@ -12782,7 +12779,6 @@ bool wxRichTextImage::Draw(wxDC& dc, wxRichTextDrawingContext& context, const wx DrawBoxAttributes(dc, GetBuffer(), attr, wxRect(position, GetCachedSize())); - wxSize imageSize(m_imageCache.GetWidth(), m_imageCache.GetHeight()); wxRect marginRect, borderRect, contentRect, paddingRect, outlineRect; marginRect = wxRect(position, GetCachedSize()); // outer rectangle, will calculate contentRect GetBoxRects(dc, GetBuffer(), attr, marginRect, borderRect, contentRect, paddingRect, outlineRect); diff --git a/src/unix/mimetype.cpp b/src/unix/mimetype.cpp index b85bcc6923f7..baeacdd1915e 100644 --- a/src/unix/mimetype.cpp +++ b/src/unix/mimetype.cpp @@ -254,7 +254,14 @@ void wxMimeTypesManagerImpl::LoadXDGGlobs(const wxString& filename) wxStringTokenizer tok( file.GetLine(i), ":" ); wxString mime = tok.GetNextToken(); wxString ext = tok.GetNextToken(); + if (!ext.StartsWith(wxT("*."))) + continue; ext.Remove( 0, 2 ); + if (ext.find_first_of('*') != wxString::npos || + ext.find_first_of('[') != wxString::npos) + { + continue; + } wxArrayString exts; exts.Add( ext ); diff --git a/src/xrc/xh_vlistbox.cpp b/src/xrc/xh_vlistbox.cpp new file mode 100644 index 000000000000..f57762b32235 --- /dev/null +++ b/src/xrc/xh_vlistbox.cpp @@ -0,0 +1,61 @@ +///////////////////////////////////////////////////////////////////////////// +// Name: src/xrc/xh_vlistbox.cpp +// Purpose: XRC resource for vlistboxes +// Author: Vaclav Slavik, Bill Su +// Created: 2000/03/05, 2024/10/07 +// Copyright: (c) 2000 Vaclav Slavik, 2024 Bill Su +// Licence: wxWindows licence +///////////////////////////////////////////////////////////////////////////// + +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" + + +#if wxUSE_XRC && wxUSE_LISTBOX + +#include "wx/xrc/xh_vlistbox.h" + +#include "wx/vlbox.h" + +wxIMPLEMENT_DYNAMIC_CLASS(wxVListBoxXmlHandler, wxXmlResourceHandler); + +wxVListBoxXmlHandler::wxVListBoxXmlHandler() : wxXmlResourceHandler() +{ + // panel styles + XRC_ADD_STYLE(wxTAB_TRAVERSAL); + + // listbox styles + XRC_ADD_STYLE(wxLB_MULTIPLE); + + AddWindowStyles(); +} + +wxObject * wxVListBoxXmlHandler::DoCreateResource() +{ + /* non-standard because wxVListBox is an abstract + class, so "subclass" must be used */ + wxCHECK_MSG(m_instance, + nullptr, + "wxVListBox requires \"subclass\" attribute"); + wxVListBox* const vlistbox = wxStaticCast(m_instance, wxVListBox); + if (GetBool(wxT("hidden"), 0) == 1) + vlistbox->Hide(); + + vlistbox->Create(m_parentAsWindow, + GetID(), + GetPosition(), GetSize(), + GetStyle(wxT("style"), wxTAB_TRAVERSAL), + GetName()); + + SetupWindow(vlistbox); + CreateChildren(vlistbox); + + return vlistbox; +} + +bool wxVListBoxXmlHandler::CanHandle(wxXmlNode *node) +{ + return IsOfClass(node, wxT("wxVListBox")); +} + +#endif // wxUSE_XRC && wxUSE_LISTBOX diff --git a/src/xrc/xmlrsall.cpp b/src/xrc/xmlrsall.cpp index bf36ffc522fb..4116238e439a 100644 --- a/src/xrc/xmlrsall.cpp +++ b/src/xrc/xmlrsall.cpp @@ -128,6 +128,7 @@ void wxXmlResource::InitAllHandlers() #endif #if wxUSE_LISTBOX AddHandler(new wxListBoxXmlHandler); + AddHandler(new wxVListBoxXmlHandler); #endif #if wxUSE_LISTCTRL AddHandler(new wxListCtrlXmlHandler); diff --git a/tests/Makefile.in b/tests/Makefile.in index d8275f1a14f7..944a8ddf8027 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -597,7 +597,7 @@ data-image-sample: data-images: @mkdir -p image - @for f in bitfields.bmp bitfields-alpha.bmp 8bpp-colorsused-large.bmp 8bpp-colorsused-negative.bmp rle4-delta-320x240.bmp rle8-delta-320x240.bmp rle8-delta-320x240-expected.bmp horse_grey.bmp horse_grey_flipped.bmp horse_rle4.bmp horse_rle4_flipped.bmp horse_rle8.bmp horse_rle8_flipped.bmp horse_bicubic_50x50.png horse_bicubic_100x100.png horse_bicubic_150x150.png horse_bicubic_300x300.png horse_bilinear_50x50.png horse_bilinear_100x100.png horse_bilinear_150x150.png horse_bilinear_300x300.png horse_box_average_50x50.png horse_box_average_100x100.png horse_box_average_150x150.png horse_box_average_300x300.png cross_bicubic_256x256.png cross_bilinear_256x256.png cross_box_average_256x256.png cross_nearest_neighb_256x256.png paste_input_background.png paste_input_black.png paste_input_overlay_transparent_border_opaque_square.png paste_input_overlay_transparent_border_semitransparent_circle.png paste_input_overlay_transparent_border_semitransparent_square.png paste_result_background_plus_circle_plus_square.png paste_result_background_plus_overlay_transparent_border_opaque_square.png paste_result_background_plus_overlay_transparent_border_semitransparent_square.png paste_result_no_background_square_over_circle.png wx.png toucan.png toucan_hue_0.538.png toucan_sat_-0.41.png toucan_bright_-0.259.png toucan_hsv_0.538_-0.41_-0.259.png toucan_light_46.png toucan_dis_240.png toucan_grey.png toucan_mono_255_255_255.png width-times-height-overflow.bmp width_height_32_bit_overflow.pgm bad_truncated.gif; do \ + @for f in bitfields.bmp bitfields-alpha.bmp 8bpp-colorsused-large.bmp 8bpp-colorsused-negative.bmp 32bpp_rgb.bmp rle4-delta-320x240.bmp rle8-delta-320x240.bmp rle8-delta-320x240-expected.bmp horse_grey.bmp horse_grey_flipped.bmp horse_rle4.bmp horse_rle4_flipped.bmp horse_rle8.bmp horse_rle8_flipped.bmp horse_bicubic_50x50.png horse_bicubic_100x100.png horse_bicubic_150x150.png horse_bicubic_300x300.png horse_bilinear_50x50.png horse_bilinear_100x100.png horse_bilinear_150x150.png horse_bilinear_300x300.png horse_box_average_50x50.png horse_box_average_100x100.png horse_box_average_150x150.png horse_box_average_300x300.png cross_bicubic_256x256.png cross_bilinear_256x256.png cross_box_average_256x256.png cross_nearest_neighb_256x256.png paste_input_background.png paste_input_black.png paste_input_overlay_transparent_border_opaque_square.png paste_input_overlay_transparent_border_semitransparent_circle.png paste_input_overlay_transparent_border_semitransparent_square.png paste_result_background_plus_circle_plus_square.png paste_result_background_plus_overlay_transparent_border_opaque_square.png paste_result_background_plus_overlay_transparent_border_semitransparent_square.png paste_result_no_background_square_over_circle.png wx.png toucan.png toucan_hue_0.538.png toucan_sat_-0.41.png toucan_bright_-0.259.png toucan_hsv_0.538_-0.41_-0.259.png toucan_light_46.png toucan_dis_240.png toucan_grey.png toucan_mono_255_255_255.png width-times-height-overflow.bmp width_height_32_bit_overflow.pgm bad_truncated.gif; do \ if test ! -f image/$$f -a ! -d image/$$f ; \ then x=yep ; \ else x=`find $(srcdir)/image/$$f -newer image/$$f -print` ; \ diff --git a/tests/allheaders.cpp b/tests/allheaders.cpp index 5b5527f45584..b59e4cd91f7b 100644 --- a/tests/allheaders.cpp +++ b/tests/allheaders.cpp @@ -413,4 +413,12 @@ TEST_CASE("wxNO_IMPLICIT_WXSTRING_ENCODING", "[string]") #endif wxLogSysError(wxASCII_STR("Bogus error for testing")); + + // Check that all translation macros expand to compilable + // code also when wxNO_IMPLICIT_WXSTRING_ENCODING is enabled. + + _("some text"); + wxPLURAL("singular", "plural", 2); + wxGETTEXT_IN_CONTEXT("context", "text"); + wxGETTEXT_IN_CONTEXT_PLURAL("context", "singular", "plural", 3); } diff --git a/tests/any/anytest.cpp b/tests/any/anytest.cpp index fe1d0d97abf0..10c08439c536 100644 --- a/tests/any/anytest.cpp +++ b/tests/any/anytest.cpp @@ -130,16 +130,12 @@ wxAnyTestCase::wxAnyTestCase() m_anySignedShort1((signed short)15), m_anySignedInt1((signed int)15), m_anySignedLong1((signed long)15), -#ifdef wxLongLong_t m_anySignedLongLong1((wxLongLong_t)15), -#endif m_anyUnsignedChar1((unsigned char)15), m_anyUnsignedShort1((unsigned short)15), m_anyUnsignedInt1((unsigned int)15), m_anyUnsignedLong1((unsigned long)15), -#ifdef wxLongLong_t m_anyUnsignedLongLong1((wxULongLong_t)15), -#endif m_anyStringString1(wxString("abc")), m_anyCharString1("abc"), m_anyWcharString1(L"abc"), @@ -155,16 +151,12 @@ wxAnyTestCase::wxAnyTestCase() m_anySignedShort2 = (signed short)15; m_anySignedInt2 = (signed int)15; m_anySignedLong2 = (signed long)15; -#ifdef wxLongLong_t m_anySignedLongLong2 = (wxLongLong_t)15; -#endif m_anyUnsignedChar2 = (unsigned char)15; m_anyUnsignedShort2 = (unsigned short)15; m_anyUnsignedInt2 = (unsigned int)15; m_anyUnsignedLong2 = (unsigned long)15; -#ifdef wxLongLong_t m_anyUnsignedLongLong2 = (wxULongLong_t)15; -#endif m_anyStringString2 = wxString("abc"); m_anyCharString2 = "abc"; m_anyWcharString2 = L"abc"; @@ -254,10 +246,8 @@ void wxAnyTestCase::As() CPPUNIT_ASSERT(c == (signed int)15); signed long d = m_anySignedLong1.As(); CPPUNIT_ASSERT(d == (signed int)15); -#ifdef wxLongLong_t wxLongLong_t e = m_anySignedLongLong1.As(); CPPUNIT_ASSERT(e == (signed int)15); -#endif unsigned char f = m_anyUnsignedChar1.As(); CPPUNIT_ASSERT(f == (unsigned int)15); unsigned short g = m_anyUnsignedShort1.As(); @@ -266,10 +256,8 @@ void wxAnyTestCase::As() CPPUNIT_ASSERT(h == (unsigned int)15); unsigned long i = m_anyUnsignedLong1.As(); CPPUNIT_ASSERT(i == (unsigned int)15); -#ifdef wxLongLong_t wxULongLong_t j = m_anyUnsignedLongLong1.As(); CPPUNIT_ASSERT(j == (unsigned int)15); -#endif wxString k = m_anyStringString1.As(); CPPUNIT_ASSERT(k == "abc"); wxString l = m_anyCharString1.As(); @@ -517,10 +505,8 @@ void wxAnyTestCase::wxVariantConversions() wxVariant vDouble(TEST_FLOAT_CONST); wxVariant vBool((bool)true); wxVariant vChar('A'); -#ifdef wxLongLong_t wxVariant vLongLong(wxLongLong(wxLL(0xAABBBBCCCC))); wxVariant vULongLong(wxULongLong(wxULL(123456))); -#endif wxArrayString arrstr; arrstr.push_back("test string"); wxVariant vArrayString(arrstr); @@ -593,7 +579,6 @@ void wxAnyTestCase::wxVariantConversions() CPPUNIT_ASSERT(res); CPPUNIT_ASSERT(variant.GetChar() == 'A'); -#ifdef wxLongLong_t any = wxAny(vLongLong); CPPUNIT_ASSERT(any == wxLL(0xAABBBBCCCC)); res = any.GetAs(&variant); @@ -621,7 +606,6 @@ void wxAnyTestCase::wxVariantConversions() CPPUNIT_ASSERT(res); CPPUNIT_ASSERT(variant.GetType() == "long"); CPPUNIT_ASSERT(variant.GetLong() == -1); -#endif // Cannot test equality for the rest, just test that they convert // back correctly. diff --git a/tests/archive/archivetest.cpp b/tests/archive/archivetest.cpp index 09b40ff155fc..e35c11d570eb 100644 --- a/tests/archive/archivetest.cpp +++ b/tests/archive/archivetest.cpp @@ -1028,6 +1028,11 @@ void ArchiveTestCase::TestSmartIterator(wxInputStream& in) for (CatalogIter it = cat.begin(); it != cat.end(); ++it) CPPUNIT_ASSERT(m_testEntries.count((*it)->GetName(wxPATH_UNIX))); + + Iter a, b; + // test assignment + a = b; + CPPUNIT_ASSERT(a == b); } // pair iterator using smart pointers diff --git a/tests/arrays/arrays.cpp b/tests/arrays/arrays.cpp index 6f7277d22cdb..bbdded77575b 100644 --- a/tests/arrays/arrays.cpp +++ b/tests/arrays/arrays.cpp @@ -604,10 +604,10 @@ TEST_CASE("wxObjArray", "[dynarray]") // Test that range for works with wxObjArray. int count = 0; - for ( const auto& bar : bars ) + for ( const auto& b : bars ) { if ( !count ) - CHECK( bar.GetName() == firstName ); + CHECK( b.GetName() == firstName ); ++count; } diff --git a/tests/base64/base64.cpp b/tests/base64/base64.cpp index 43abfd72061e..76a349a6dd64 100644 --- a/tests/base64/base64.cpp +++ b/tests/base64/base64.cpp @@ -49,7 +49,7 @@ static void generateRandomData(void* buff, size_t len) unsigned char *cbuff = (unsigned char *)buff; while(len--) { - *(cbuff++) = (unsigned char)(((rand() * 255) / RAND_MAX)); + *(cbuff++) = (unsigned char)((rand() / (float)RAND_MAX * 255.) + 1); } } @@ -61,7 +61,7 @@ static void generateGibberish(void* buff, size_t len) unsigned char *cbuff = (unsigned char *)buff; while(len--) { - *(cbuff++) = cb64[((rand() * 64) / RAND_MAX)]; + *(cbuff++) = cb64[(size_t)((rand() / (float)RAND_MAX * 64.) + 1)]; } } @@ -254,7 +254,7 @@ void Base64TestCase::EncodeDecodePatternC() void Base64TestCase::EncodeDecodeRandom() { - size_t size = rand() * 3000 / RAND_MAX + 11; + size_t size = (size_t)(rand() / (float)RAND_MAX * 3000. + 11); unsigned char *buff = new unsigned char[size]; generateRandomData(buff, size); wxString str = wxBase64Encode(buff, size); diff --git a/tests/controls/dialogtest.cpp b/tests/controls/dialogtest.cpp index f23c075058b0..62a7a920912f 100644 --- a/tests/controls/dialogtest.cpp +++ b/tests/controls/dialogtest.cpp @@ -17,40 +17,8 @@ // This test suite tests helpers from wx/testing.h intended for testing of code // that calls modal dialogs. It does not test the implementation of wxWidgets' // dialogs. -class ModalDialogsTestCase : public CppUnit::TestCase -{ -public: - ModalDialogsTestCase() { } - -private: - CPPUNIT_TEST_SUITE( ModalDialogsTestCase ); -// wxInfoBar has bug under x11. It will cause the dialog crash -// Disable it for now. -#if !defined (__WXX11__) - CPPUNIT_TEST( MessageDialog ); -#endif -#if wxUSE_FILEDLG - CPPUNIT_TEST( FileDialog ); -#endif - CPPUNIT_TEST( CustomDialog ); - CPPUNIT_TEST( InitDialog ); - CPPUNIT_TEST_SUITE_END(); - - void MessageDialog(); - void FileDialog(); - void CustomDialog(); - void InitDialog(); - - wxDECLARE_NO_COPY_CLASS(ModalDialogsTestCase); -}; - -// register in the unnamed registry so that these tests are run by default -CPPUNIT_TEST_SUITE_REGISTRATION( ModalDialogsTestCase ); - -// also include in its own registry so that these tests can be run alone -CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( ModalDialogsTestCase, "ModalDialogsTestCase" ); -void ModalDialogsTestCase::MessageDialog() +TEST_CASE("Modal::MessageDialog", "[modal]") { int rc; @@ -68,11 +36,11 @@ void ModalDialogsTestCase::MessageDialog() FILE_DIALOG_TEST ); - CPPUNIT_ASSERT_EQUAL(wxNO, rc); + CHECK( rc == wxNO ); } #if wxUSE_FILEDLG -void ModalDialogsTestCase::FileDialog() +TEST_CASE("Modal::FileDialog", "[modal]") { #if defined(__WXQT__) && defined(__WINDOWS__) WARN("Skipping test known to fail under wxQt for Windows"); @@ -87,9 +55,9 @@ void ModalDialogsTestCase::FileDialog() wxExpectModal(wxGetCwd() + "/test.txt") ); - CPPUNIT_ASSERT_EQUAL((int)wxID_OK, rc); + CHECK( rc == wxID_OK ); - CPPUNIT_ASSERT_EQUAL("test.txt", dlg.GetFilename()); + CHECK( dlg.GetFilename() == "test.txt" ); #ifdef __WXGTK3__ // The native file dialog in GTK+ 3 launches an async operation which tries @@ -131,7 +99,7 @@ class wxExpectModal : public wxExpectModalBase int m_valueToSet; }; -void ModalDialogsTestCase::CustomDialog() +TEST_CASE("Modal::CustomDialog", "[modal]") { MyDialog dlg(nullptr); @@ -141,7 +109,7 @@ void ModalDialogsTestCase::CustomDialog() wxExpectModal(42) ); - CPPUNIT_ASSERT_EQUAL( 42, dlg.m_value ); + CHECK( dlg.m_value == 42 ); } @@ -169,9 +137,9 @@ class MyModalDialog : public wxDialog bool m_wasModal; }; -void ModalDialogsTestCase::InitDialog() +TEST_CASE("Modal::InitDialog", "[modal]") { MyModalDialog dlg; dlg.ShowModal(); - CPPUNIT_ASSERT( dlg.WasModal() ); + CHECK( dlg.WasModal() ); } diff --git a/tests/controls/gridtest.cpp b/tests/controls/gridtest.cpp index 69fb4a4b7080..7ebd1559cf49 100644 --- a/tests/controls/gridtest.cpp +++ b/tests/controls/gridtest.cpp @@ -1420,9 +1420,9 @@ TEST_CASE_METHOD(GridTestCase, "Grid::CellFormatting", "[grid]") CHECK(m_grid->GetCellBackgroundColour(0, 0) == back); - back = m_grid->GetDefaultCellTextColour(); + text = m_grid->GetDefaultCellTextColour(); - CHECK(m_grid->GetCellTextColour(0, 0) == back); + CHECK(m_grid->GetCellTextColour(0, 0) == text); m_grid->SetCellAlignment(0, 0, wxALIGN_LEFT, wxALIGN_BOTTOM); m_grid->GetCellAlignment(0, 0, &cellhoriz, &cellvert); diff --git a/tests/controls/propgridtest.cpp b/tests/controls/propgridtest.cpp index 5b968ce4da1a..69e915941a93 100644 --- a/tests/controls/propgridtest.cpp +++ b/tests/controls/propgridtest.cpp @@ -338,11 +338,7 @@ static void PopulateWithExamples(wxPropertyGridManager* pgManager) pg->Append(new wxMultiChoiceProperty("MultiChoiceProperty", wxPG_LABEL, tchoices, tchoicesValues)); pg->SetPropertyAttribute("MultiChoiceProperty", wxPG_ATTR_MULTICHOICE_USERSTRINGMODE, 1); -#if wxUSE_LONGLONG pg->Append(new wxUIntProperty("UIntProperty", wxPG_LABEL, wxULongLong(wxULL(0xFEEEFEEEFEEE)))); -#else - pg->Append(new wxUIntProperty("UIntProperty", wxPG_LABEL, 0xFEEEFEEE)); -#endif pg->SetPropertyAttribute("UIntProperty", wxPG_UINT_PREFIX, wxPG_PREFIX_NONE); pg->SetPropertyAttribute("UIntProperty", wxPG_UINT_BASE, wxPG_BASE_HEX); @@ -754,9 +750,7 @@ TEST_CASE("PropertyGridTestCase", "[propgrid]") any = testInt; prop->SetValue(any); CHECK(prop->GetValue().GetAny().As() == testInt); -#ifdef wxLongLong_t CHECK(prop->GetValue().GetAny().As() == testInt); -#endif prop = pgManager->GetProperty("StringProperty"); wxString testString = "asd934jfyn3"; @@ -858,13 +852,8 @@ TEST_CASE("PropertyGridTestCase", "[propgrid]") CHECK(pg->GetPropertyValueAsDateTime("DateProperty") == dt1); #endif -#if wxUSE_LONGLONG && defined(wxLongLong_t) pgManager->SetPropertyValue("IntProperty", wxLL(10000000000)); CHECK(pg->GetPropertyValueAsLongLong("IntProperty") == wxLL(10000000000)); -#else - pgman->SetPropertyValue("IntProperty", 1000000000); - CHECK(pg->GetPropertyValueAsLong("IntProperty") == 1000000000); -#endif pg->SetPropertyValue("StringProperty", "Text2"); pg->SetPropertyValue("IntProperty", 512); @@ -893,13 +882,8 @@ TEST_CASE("PropertyGridTestCase", "[propgrid]") CHECK(pgManager->GetPropertyValueAsDateTime("DateProperty") == dt2); #endif -#if wxUSE_LONGLONG && defined(wxLongLong_t) pgManager->SetPropertyValue("IntProperty", wxLL(-80000000000)); CHECK(pgManager->GetPropertyValueAsLongLong("IntProperty") == wxLL(-80000000000)); -#else - pgManager->SetPropertyValue("IntProperty", -1000000000); - CHECK(pgManager->GetPropertyValueAsLong("IntProperty") == -1000000000); -#endif wxString nvs = "Lamborghini Diablo XYZ; 5707; [100; 3.9; 8.6] 3000002; Convertible"; pgManager->SetPropertyValue("Car", nvs); diff --git a/tests/controls/textctrltest.cpp b/tests/controls/textctrltest.cpp index a4bc72eb159c..ae5b6e7397c6 100644 --- a/tests/controls/textctrltest.cpp +++ b/tests/controls/textctrltest.cpp @@ -1487,6 +1487,112 @@ TEST_CASE("wxTextCtrl::Get/SetRTFValue", "[wxTextCtrl][rtf]") } #endif +#ifdef __WXMSW__ +TEST_CASE("wxTextCtrl::SearchText", "[wxTextCtrl][search]") +{ + wxWindow* const parent = wxTheApp->GetTopWindow(); + + std::unique_ptr text(new wxTextCtrl(parent, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_RICH2 | wxTE_MULTILINE)); + + text->SetValue(R"(Allows more than 30Kb of text +(on all Windows versions) +and a very very long line to test wxHSCROLL style + +And here is a link in quotation marks to test wxTE_AUTO_URL: "http://www.wxwidgets.org" + +First 10 characters should be in red +Next 10 characters should be in blue +Next 10 characters should be normal +And the next 10 characters should be green and italic +This text should be cyan on blue +And this should be in blue and the text you type should be in blue as well. + +And there is a mispeled word)"); + + text->SetSelection(0, 0); + auto results = text->SearchText(wxTextSearch(L"IMnotHERE!").SearchDirection(wxTextSearch::Direction::Down)); + CHECK_FALSE(results); + + results = text->SearchText(wxTextSearch(L"window").SearchDirection(wxTextSearch::Direction::Down).MatchCase()); + CHECK_FALSE(results); // case is different + + // ignore case + results = text->SearchText(wxTextSearch(L"window").SearchDirection(wxTextSearch::Direction::Down).MatchCase(false)); + CHECK(results); + CHECK(results.m_start == 38); + CHECK(results.m_end == 44); + + results = text->SearchText(wxTextSearch(L"Window").SearchDirection(wxTextSearch::Direction::Down).MatchCase()); + CHECK(results); + CHECK(results.m_start == 38); + CHECK(results.m_end == 44); + + results = text->SearchText(wxTextSearch(L"Window").SearchDirection(wxTextSearch::Direction::Down).MatchCase().MatchWholeWord()); + CHECK_FALSE(results); // whole word fails + + results = text->SearchText(wxTextSearch(L"Windows").SearchDirection(wxTextSearch::Direction::Down).MatchCase().MatchWholeWord()); + CHECK(results); + CHECK(results.m_start == 38); + CHECK(results.m_end == 45); + + + results = text->SearchText(wxTextSearch(L"very").SearchDirection(wxTextSearch::Direction::Down).MatchCase().MatchWholeWord()); + CHECK(results); + CHECK(results.m_start == 62); + CHECK(results.m_end == 66); + + // will find the same match + results = text->SearchText(wxTextSearch(L"very").SearchDirection(wxTextSearch::Direction::Down).MatchCase().MatchWholeWord().Start(results.m_start)); + CHECK(results); + CHECK(results.m_start == 62); + CHECK(results.m_end == 66); + + // goes to next match + results = text->SearchText(wxTextSearch(L"very").SearchDirection(wxTextSearch::Direction::Down).MatchCase().MatchWholeWord().Start(results.m_start + 1)); + CHECK(results); + CHECK(results.m_start == 67); + CHECK(results.m_end == 71); + + // no more matches going down + results = text->SearchText(wxTextSearch(L"very").SearchDirection(wxTextSearch::Direction::Down).MatchCase().MatchWholeWord().Start(results.m_start + 1)); + CHECK_FALSE(results); + + // go up from the end + results = text->SearchText(wxTextSearch(L"very").SearchDirection(wxTextSearch::Direction::Up).MatchCase().MatchWholeWord()); + CHECK(results); + CHECK(results.m_start == 67); + CHECK(results.m_end == 71); + + results = text->SearchText(wxTextSearch(L"very").SearchDirection(wxTextSearch::Direction::Up).MatchCase().MatchWholeWord().Start(results.m_start)); + CHECK(results); + CHECK(results.m_start == 62); + CHECK(results.m_end == 66); + + // no more going up + results = text->SearchText(wxTextSearch(L"very").SearchDirection(wxTextSearch::Direction::Up).MatchCase().MatchWholeWord().Start(results.m_start)); + CHECK_FALSE(results); + + // phrase + results = text->SearchText(wxTextSearch(L"Next 10 characters").SearchDirection(wxTextSearch::Direction::Down).MatchCase().MatchWholeWord()); + CHECK(results); + CHECK(results.m_start == 233); + CHECK(results.m_end == 251); + + // Edge cases + // last word + results = text->SearchText(wxTextSearch(L"word").SearchDirection(wxTextSearch::Direction::Up).MatchCase().MatchWholeWord()); + CHECK(results); + CHECK(results.m_start == 494); + CHECK(results.m_end == 498); + + // first word + results = text->SearchText(wxTextSearch(L"Allows").SearchDirection(wxTextSearch::Direction::Down).MatchCase().MatchWholeWord()); + CHECK(results); + CHECK(results.m_start == 0); + CHECK(results.m_end == 6); +} +#endif + TEST_CASE("wxTextCtrl::InitialCanUndo", "[wxTextCtrl][undo]") { long style = 0; diff --git a/tests/events/propagation.cpp b/tests/events/propagation.cpp index 4d6742f7180d..d65d5a3cab49 100644 --- a/tests/events/propagation.cpp +++ b/tests/events/propagation.cpp @@ -560,12 +560,17 @@ void EventPropagationTestCase::DocView() ASSERT_MENU_EVENT_RESULT( menu, "ampA" ); + // The document template must be heap-allocated as wxDocManager owns it. + wxDocTemplate* const docTemplate = new wxDocTemplate + ( + &docManager, "Test", "", "", "", + "Test Document", "Test View", + wxCLASSINFO(EventTestDocument), + wxCLASSINFO(EventTestView) + ); + // Now check what happens if we have an active document. - wxDocTemplate docTemplate(&docManager, "Test", "", "", "", - "Test Document", "Test View", - wxCLASSINFO(EventTestDocument), - wxCLASSINFO(EventTestView)); - wxDocument* const doc = docTemplate.CreateDocument(""); + wxDocument* const doc = docTemplate->CreateDocument(""); wxView* const view = doc->GetFirstView(); std::unique_ptr diff --git a/tests/graphics/bitmap.cpp b/tests/graphics/bitmap.cpp index c904bf0155de..3bf60841ba8e 100644 --- a/tests/graphics/bitmap.cpp +++ b/tests/graphics/bitmap.cpp @@ -411,7 +411,6 @@ TEST_CASE("BitmapTestCase::ToImage", "[bitmap][image][convertto]") #endif // __WXMSW__ || __WXOSX__ { const wxColour clrFg(*wxCYAN); - const wxColour clrBg(*wxGREEN); const unsigned char alpha = 92; #ifdef wxHAS_PREMULTIPLIED_ALPHA @@ -489,7 +488,6 @@ TEST_CASE("BitmapTestCase::ToImage", "[bitmap][image][convertto]") #endif // __WXMSW__ || __WXOSX__ { const wxColour clrFg(*wxCYAN); - const wxColour clrBg(*wxGREEN); const unsigned char alpha = 92; #ifdef wxHAS_PREMULTIPLIED_ALPHA // premultiplied values diff --git a/tests/graphics/graphbitmap.cpp b/tests/graphics/graphbitmap.cpp index 05149891f487..c9c8a83449a4 100644 --- a/tests/graphics/graphbitmap.cpp +++ b/tests/graphics/graphbitmap.cpp @@ -98,7 +98,6 @@ wxBitmap CreateBitmapRGBA(int w, int h, bool withMask) #endif // __WXMSW__ || __WXOSX__ { const wxColour clrFg(*wxCYAN); - const wxColour clrBg(*wxGREEN); const unsigned char alpha = 51; #ifdef wxHAS_PREMULTIPLIED_ALPHA diff --git a/tests/image/32bpp_rgb.bmp b/tests/image/32bpp_rgb.bmp new file mode 100644 index 000000000000..643a589f7152 Binary files /dev/null and b/tests/image/32bpp_rgb.bmp differ diff --git a/tests/image/image.cpp b/tests/image/image.cpp index 1d3ab056acf2..d426161f4774 100644 --- a/tests/image/image.cpp +++ b/tests/image/image.cpp @@ -1627,6 +1627,15 @@ TEST_CASE_METHOD(ImageHandlersInit, "wxImage::BMP", "[image][bmp]") LoadMalformedImageWithException("image/width-times-height-overflow.bmp", wxBITMAP_TYPE_BMP); } + SECTION("32bpp BI_RGB") + { + wxImage image; + CHECK(image.LoadFile("image/32bpp_rgb.bmp", wxBITMAP_TYPE_BMP)); + if (image.IsOk()) + { + CHECK(!image.GetAlpha()); + } + } } TEST_CASE_METHOD(ImageHandlersInit, "wxImage::Paste", "[image][paste]") diff --git a/tests/longlong/longlongtest.cpp b/tests/longlong/longlongtest.cpp index 5d1678859f24..c895d12ca3db 100644 --- a/tests/longlong/longlongtest.cpp +++ b/tests/longlong/longlongtest.cpp @@ -20,8 +20,6 @@ #include "wx/longlong.h" #include "wx/timer.h" -#if wxUSE_LONGLONG - // ---------------------------------------------------------------------------- // helpers for testing // ---------------------------------------------------------------------------- @@ -29,11 +27,8 @@ // number of iterations in loops #define ITEMS 1000 -// make a 64 bit number from 4 16 bit ones -#define MAKE_LL(x1, x2, x3, x4) wxLongLong((x1 << 16) | x2, (x3 << 16) | x3) - // get a random 64 bit number -#define RAND_LL() MAKE_LL(rand(), rand(), rand(), rand()) +#define RAND_LL() wxLongLong(rand(), rand()) static const long testLongs[] = { @@ -100,16 +95,6 @@ void LongLongTestCase::Conversion() wxLongLong b(a.GetHi(), a.GetLo()); CPPUNIT_ASSERT( a == b ); - -#if wxUSE_LONGLONG_WX - wxLongLongWx c(a.GetHi(), a.GetLo()); - CPPUNIT_ASSERT( a == c ); -#endif - -#if wxUSE_LONGLONG_NATIVE - wxLongLongNative d(a.GetHi(), a.GetLo()); - CPPUNIT_ASSERT( a == d ); -#endif } } @@ -143,23 +128,12 @@ void LongLongTestCase::Addition() { for ( size_t n = 0; n < ITEMS; n++ ) { - wxLongLong a = RAND_LL(); - wxLongLong b = RAND_LL(); + // Avoid overflow by using numbers less than half of the maximum value. + wxLongLong a = RAND_LL() / 2; + wxLongLong b = RAND_LL() / 2; wxLongLong c = a + b; -#if wxUSE_LONGLONG_NATIVE - wxLongLongNative a1 = a; - wxLongLongNative b1 = b; - wxLongLongNative c1 = a1 + b1; - CPPUNIT_ASSERT( c == c1 ); -#endif - -#if wxUSE_LONGLONG_WX - wxLongLongWx a2 = a; - wxLongLongWx b2 = b; - wxLongLongWx c2 = a2 + b2; - CPPUNIT_ASSERT( c == c2 ); -#endif + CPPUNIT_ASSERT( c.GetValue() == a.GetValue() + b.GetValue() ); } } @@ -167,28 +141,17 @@ void LongLongTestCase::Multiplication() { for ( size_t n = 0; n < ITEMS; n++ ) { - wxLongLong a = RAND_LL(); - wxLongLong b = RAND_LL(); - wxLongLong c = a*b; + // Avoid signed integer overflow by multiplying unsigned numbers only. + wxULongLong a = RAND_LL().GetValue(); + wxULongLong b = RAND_LL().GetValue(); + wxULongLong c = a*b; - wxLongLong a1(a.GetHi(), a.GetLo()); - wxLongLong b1(b.GetHi(), b.GetLo()); - wxLongLong c1 = a1*b1; - CPPUNIT_ASSERT( c1 == c ); + CPPUNIT_ASSERT( c.GetValue() == a.GetValue() * b.GetValue() ); -#if wxUSE_LONGLONG_WX - wxLongLongWx a2(a.GetHi(), a.GetLo()); - wxLongLongWx b2(b.GetHi(), b.GetLo()); - wxLongLongWx c2 = a2*b2; - CPPUNIT_ASSERT( c2 == c ); -#endif - -#if wxUSE_LONGLONG_NATIVE - wxLongLongNative a3(a.GetHi(), a.GetLo()); - wxLongLongNative b3(b.GetHi(), b.GetLo()); - wxLongLongNative c3 = a3*b3; - CPPUNIT_ASSERT( c3 == c ); -#endif + wxULongLong a1(a.GetHi(), a.GetLo()); + wxULongLong b1(b.GetHi(), b.GetLo()); + wxULongLong c1 = a1*b1; + CPPUNIT_ASSERT( c1 == c ); } } @@ -196,9 +159,7 @@ void LongLongTestCase::Division() { for ( size_t n = 0; n < ITEMS; n++ ) { - // get a random wxLongLong (shifting by 12 the MSB ensures that the - // multiplication will not overflow) - wxLongLong a = MAKE_LL((rand() >> 12), rand(), rand(), rand()); + wxLongLong a = RAND_LL(); // get a random (but non null) long (not wxLongLong for now) divider long l; @@ -212,24 +173,6 @@ void LongLongTestCase::Division() wxLongLong r = a % l; CPPUNIT_ASSERT( a == ( q * l + r ) ); - -#if wxUSE_LONGLONG_WX - wxLongLongWx a1(a.GetHi(), a.GetLo()); - wxLongLongWx q1 = a1 / l; - wxLongLongWx r1 = a1 % l; - CPPUNIT_ASSERT( q == q1 ); - CPPUNIT_ASSERT( r == r1 ); - CPPUNIT_ASSERT( a1 == ( q1 * l + r1 ) ); -#endif - -#if wxUSE_LONGLONG_NATIVE - wxLongLongNative a2(a.GetHi(), a.GetLo()); - wxLongLongNative q2 = a2 / l; - wxLongLongNative r2 = a2 % l; - CPPUNIT_ASSERT( q == q2 ); - CPPUNIT_ASSERT( r == r2 ); - CPPUNIT_ASSERT( a2 == ( q2 * l + r2 ) ); -#endif } } @@ -248,26 +191,6 @@ void LongLongTestCase::BitOperations() d <<= n; e = c << n; CPPUNIT_ASSERT( d == e ); - -#if wxUSE_LONGLONG_WX - wxLongLongWx b1(a.GetHi(), a.GetLo()), c1, d1 = b1, e1; - d1 >>= n; - c1 = b1 >> n; - CPPUNIT_ASSERT( c1 == d1 ); - d1 <<= n; - e1 = c1 << n; - CPPUNIT_ASSERT( d1 == e1 ); -#endif - -#if wxUSE_LONGLONG_NATIVE - wxLongLongNative b2(a.GetHi(), a.GetLo()), c2, d2 = b2, e2; - d2 >>= n; - c2 = b2 >> n; - CPPUNIT_ASSERT( c2 == d2 ); - d2 <<= n; - e2 = c2 << n; - CPPUNIT_ASSERT( d2 == e2 ); -#endif } } } @@ -286,18 +209,6 @@ void LongLongTestCase::ToString() s2 = wxEmptyString; s2 << a; CPPUNIT_ASSERT( s1 == s2 ); - -#if wxUSE_LONGLONG_WX - wxLongLongWx a1 = testLongs[n]; - s2 = a1.ToString(); - CPPUNIT_ASSERT( s1 == s2 ); -#endif - -#if wxUSE_LONGLONG_NATIVE - wxLongLongNative a2 = testLongs[n]; - s2 = a2.ToString(); - CPPUNIT_ASSERT( s1 == s2 ); -#endif } wxLongLong a(0x12345678, 0x87654321); @@ -307,21 +218,6 @@ void LongLongTestCase::ToString() wxLongLong llMin(-2147483647L - 1L, 0); CPPUNIT_ASSERT( llMin.ToString() == wxT("-9223372036854775808") ); - -#if wxUSE_LONGLONG_WX - wxLongLongWx a1(a.GetHi(), a.GetLo()); - CPPUNIT_ASSERT( a1.ToString() == wxT("-1311768467139281697") ); - a1.Negate(); - CPPUNIT_ASSERT( a1.ToString() == wxT("1311768467139281697") ); -#endif - -#if wxUSE_LONGLONG_NATIVE - wxLongLongNative a2(a.GetHi(), a.GetLo()); - CPPUNIT_ASSERT( a2.ToString() == wxT("-1311768467139281697") ); - a2.Negate(); - CPPUNIT_ASSERT( a2.ToString() == wxT("1311768467139281697") ); -#endif - } void LongLongTestCase::LoHi() @@ -337,13 +233,9 @@ void LongLongTestCase::LoHi() void LongLongTestCase::Limits() { -#if wxUSE_LONGLONG_NATIVE CPPUNIT_ASSERT( std::numeric_limits::is_specialized ); CPPUNIT_ASSERT( std::numeric_limits::is_specialized ); wxULongLong maxval = std::numeric_limits::max(); CPPUNIT_ASSERT( maxval.ToDouble() > 0 ); -#endif // wxUSE_LONGLONG_NATIVE } - -#endif // wxUSE_LONGLONG diff --git a/tests/makefile.gcc b/tests/makefile.gcc index 715712ae76d7..72fbc60c78cc 100644 --- a/tests/makefile.gcc +++ b/tests/makefile.gcc @@ -572,7 +572,7 @@ data-image-sample: data-images: if not exist image mkdir image - for %%f in (bitfields.bmp bitfields-alpha.bmp 8bpp-colorsused-large.bmp 8bpp-colorsused-negative.bmp rle4-delta-320x240.bmp rle8-delta-320x240.bmp rle8-delta-320x240-expected.bmp horse_grey.bmp horse_grey_flipped.bmp horse_rle4.bmp horse_rle4_flipped.bmp horse_rle8.bmp horse_rle8_flipped.bmp horse_bicubic_50x50.png horse_bicubic_100x100.png horse_bicubic_150x150.png horse_bicubic_300x300.png horse_bilinear_50x50.png horse_bilinear_100x100.png horse_bilinear_150x150.png horse_bilinear_300x300.png horse_box_average_50x50.png horse_box_average_100x100.png horse_box_average_150x150.png horse_box_average_300x300.png cross_bicubic_256x256.png cross_bilinear_256x256.png cross_box_average_256x256.png cross_nearest_neighb_256x256.png paste_input_background.png paste_input_black.png paste_input_overlay_transparent_border_opaque_square.png paste_input_overlay_transparent_border_semitransparent_circle.png paste_input_overlay_transparent_border_semitransparent_square.png paste_result_background_plus_circle_plus_square.png paste_result_background_plus_overlay_transparent_border_opaque_square.png paste_result_background_plus_overlay_transparent_border_semitransparent_square.png paste_result_no_background_square_over_circle.png wx.png toucan.png toucan_hue_0.538.png toucan_sat_-0.41.png toucan_bright_-0.259.png toucan_hsv_0.538_-0.41_-0.259.png toucan_light_46.png toucan_dis_240.png toucan_grey.png toucan_mono_255_255_255.png width-times-height-overflow.bmp width_height_32_bit_overflow.pgm bad_truncated.gif) do if not exist image\%%f copy .\image\%%f image + for %%f in (bitfields.bmp bitfields-alpha.bmp 8bpp-colorsused-large.bmp 8bpp-colorsused-negative.bmp 32bpp_rgb.bmp rle4-delta-320x240.bmp rle8-delta-320x240.bmp rle8-delta-320x240-expected.bmp horse_grey.bmp horse_grey_flipped.bmp horse_rle4.bmp horse_rle4_flipped.bmp horse_rle8.bmp horse_rle8_flipped.bmp horse_bicubic_50x50.png horse_bicubic_100x100.png horse_bicubic_150x150.png horse_bicubic_300x300.png horse_bilinear_50x50.png horse_bilinear_100x100.png horse_bilinear_150x150.png horse_bilinear_300x300.png horse_box_average_50x50.png horse_box_average_100x100.png horse_box_average_150x150.png horse_box_average_300x300.png cross_bicubic_256x256.png cross_bilinear_256x256.png cross_box_average_256x256.png cross_nearest_neighb_256x256.png paste_input_background.png paste_input_black.png paste_input_overlay_transparent_border_opaque_square.png paste_input_overlay_transparent_border_semitransparent_circle.png paste_input_overlay_transparent_border_semitransparent_square.png paste_result_background_plus_circle_plus_square.png paste_result_background_plus_overlay_transparent_border_opaque_square.png paste_result_background_plus_overlay_transparent_border_semitransparent_square.png paste_result_no_background_square_over_circle.png wx.png toucan.png toucan_hue_0.538.png toucan_sat_-0.41.png toucan_bright_-0.259.png toucan_hsv_0.538_-0.41_-0.259.png toucan_light_46.png toucan_dis_240.png toucan_grey.png toucan_mono_255_255_255.png width-times-height-overflow.bmp width_height_32_bit_overflow.pgm bad_truncated.gif) do if not exist image\%%f copy .\image\%%f image en_GB: if not exist $(OBJS)\intl\en_GB mkdir $(OBJS)\intl\en_GB diff --git a/tests/makefile.vc b/tests/makefile.vc index c7a9a2ad7bb1..f836c1e3a8a7 100644 --- a/tests/makefile.vc +++ b/tests/makefile.vc @@ -873,7 +873,7 @@ data-image-sample: data-images: if not exist image mkdir image - for %f in (bitfields.bmp bitfields-alpha.bmp 8bpp-colorsused-large.bmp 8bpp-colorsused-negative.bmp rle4-delta-320x240.bmp rle8-delta-320x240.bmp rle8-delta-320x240-expected.bmp horse_grey.bmp horse_grey_flipped.bmp horse_rle4.bmp horse_rle4_flipped.bmp horse_rle8.bmp horse_rle8_flipped.bmp horse_bicubic_50x50.png horse_bicubic_100x100.png horse_bicubic_150x150.png horse_bicubic_300x300.png horse_bilinear_50x50.png horse_bilinear_100x100.png horse_bilinear_150x150.png horse_bilinear_300x300.png horse_box_average_50x50.png horse_box_average_100x100.png horse_box_average_150x150.png horse_box_average_300x300.png cross_bicubic_256x256.png cross_bilinear_256x256.png cross_box_average_256x256.png cross_nearest_neighb_256x256.png paste_input_background.png paste_input_black.png paste_input_overlay_transparent_border_opaque_square.png paste_input_overlay_transparent_border_semitransparent_circle.png paste_input_overlay_transparent_border_semitransparent_square.png paste_result_background_plus_circle_plus_square.png paste_result_background_plus_overlay_transparent_border_opaque_square.png paste_result_background_plus_overlay_transparent_border_semitransparent_square.png paste_result_no_background_square_over_circle.png wx.png toucan.png toucan_hue_0.538.png toucan_sat_-0.41.png toucan_bright_-0.259.png toucan_hsv_0.538_-0.41_-0.259.png toucan_light_46.png toucan_dis_240.png toucan_grey.png toucan_mono_255_255_255.png width-times-height-overflow.bmp width_height_32_bit_overflow.pgm bad_truncated.gif) do if not exist image\%f copy .\image\%f image + for %f in (bitfields.bmp bitfields-alpha.bmp 8bpp-colorsused-large.bmp 8bpp-colorsused-negative.bmp 32bpp_rgb.bmp rle4-delta-320x240.bmp rle8-delta-320x240.bmp rle8-delta-320x240-expected.bmp horse_grey.bmp horse_grey_flipped.bmp horse_rle4.bmp horse_rle4_flipped.bmp horse_rle8.bmp horse_rle8_flipped.bmp horse_bicubic_50x50.png horse_bicubic_100x100.png horse_bicubic_150x150.png horse_bicubic_300x300.png horse_bilinear_50x50.png horse_bilinear_100x100.png horse_bilinear_150x150.png horse_bilinear_300x300.png horse_box_average_50x50.png horse_box_average_100x100.png horse_box_average_150x150.png horse_box_average_300x300.png cross_bicubic_256x256.png cross_bilinear_256x256.png cross_box_average_256x256.png cross_nearest_neighb_256x256.png paste_input_background.png paste_input_black.png paste_input_overlay_transparent_border_opaque_square.png paste_input_overlay_transparent_border_semitransparent_circle.png paste_input_overlay_transparent_border_semitransparent_square.png paste_result_background_plus_circle_plus_square.png paste_result_background_plus_overlay_transparent_border_opaque_square.png paste_result_background_plus_overlay_transparent_border_semitransparent_square.png paste_result_no_background_square_over_circle.png wx.png toucan.png toucan_hue_0.538.png toucan_sat_-0.41.png toucan_bright_-0.259.png toucan_hsv_0.538_-0.41_-0.259.png toucan_light_46.png toucan_dis_240.png toucan_grey.png toucan_mono_255_255_255.png width-times-height-overflow.bmp width_height_32_bit_overflow.pgm bad_truncated.gif) do if not exist image\%f copy .\image\%f image en_GB: if not exist $(OBJS)\intl\en_GB mkdir $(OBJS)\intl\en_GB diff --git a/tests/misc/metatest.cpp b/tests/misc/metatest.cpp index 95d5fded3bd7..61091fcc6b5a 100644 --- a/tests/misc/metatest.cpp +++ b/tests/misc/metatest.cpp @@ -73,9 +73,7 @@ void MetaProgrammingTestCase::ImplicitConversion() #ifndef wxNO_RTTI CPPUNIT_ASSERT(typeid(wxImplicitConversionType::value) == typeid(int)); CPPUNIT_ASSERT(typeid(wxImplicitConversionType::value) == typeid(unsigned)); -#ifdef wxLongLong_t CPPUNIT_ASSERT(typeid(wxImplicitConversionType::value) == typeid(float)); -#endif #endif // !wxNO_RTTI } diff --git a/tests/net/webrequest.cpp b/tests/net/webrequest.cpp index 991fe016f7ba..d9395734f6fc 100644 --- a/tests/net/webrequest.cpp +++ b/tests/net/webrequest.cpp @@ -165,27 +165,32 @@ class BaseRequestFixture virtual wxWebRequestBase& GetRequest() = 0; - // Check that the response is a JSON object containing a key "pi" with the + // Check that the response is a JSON object containing a specific key with the // expected value. - void CheckExpectedJSON(const wxString& response) + void CheckExpectedJSON(const wxString& response, const wxString& key, + const wxString& value) { // We ought to really parse the returned JSON object, but to keep things as // simple as possible for now we just treat it as a string. INFO("Response: " << response); - const char* expectedKey = "\"pi\":"; + wxString expectedKey = wxString::Format("\"%s\":", key); size_t pos = response.find(expectedKey); REQUIRE( pos != wxString::npos ); - pos += strlen(expectedKey); + pos += expectedKey.size(); // There may, or not, be a space after it. // And the value may be returned in an array. - while ( wxIsspace(response[pos]) || response[pos] == '[' ) - pos++; + while ( wxIsspace(response[pos]) || + response[pos] == '"' || + response[pos] == '[' ) + { + ++pos; + } - const char* expectedValue = "\"3.14159265358979323\""; - REQUIRE( response.compare(pos, strlen(expectedValue), expectedValue) == 0 ); + wxString actualValue = response.substr(pos, value.size()); + REQUIRE( actualValue == value ); } // Special helper for "manual" tests taking the URL from the environment. @@ -432,16 +437,54 @@ TEST_CASE_METHOD(RequestFixture, CHECK( request.GetResponse().GetHeader("freeform") == "wxWidgets works!" ); } +TEST_CASE_METHOD(RequestFixture, + "WebRequest::Get::AllHeaderValues", "[net][webrequest][get]") +{ + if ( !InitBaseURL() ) + return; + + Create("response-headers?freeform=wxWidgets&freeform=works!"); + Run(); + std::vector headers = request.GetResponse().GetAllHeaderValues("freeform"); + +#if wxUSE_WEBREQUEST_URLSESSION + // The httpbin service concatenates the given parameters. + REQUIRE( headers.size() == 1 ); + CHECK( headers[0] == "wxWidgets, works!" ); +#else + REQUIRE( headers.size() == 2 ); + CHECK( (headers[0] == "wxWidgets" && headers[1] == "works!") ); +#endif +} + +TEST_CASE_METHOD(RequestFixture, + "WebRequest::Headers", "[net][webrequest][headers]") +{ + if ( !InitBaseURL() ) + return; + + Create("headers"); + request.SetHeader("One", "1"); + request.AddHeader("Two", "2"); + Run(); + + CheckExpectedJSON( request.GetResponse().AsString(), "One", "1" ); + CheckExpectedJSON( request.GetResponse().AsString(), "Two", "2" ); +} + TEST_CASE_METHOD(RequestFixture, "WebRequest::Get::Param", "[net][webrequest][get]") { if ( !InitBaseURL() ) return; - Create("get?pi=3.14159265358979323"); + wxString key = "pi"; + wxString value = "3.14159265358979323"; + + Create(wxString::Format("get?%s=%s", key, value)); Run(); - CheckExpectedJSON( request.GetResponse().AsString() ); + CheckExpectedJSON( request.GetResponse().AsString(), key, value ); } TEST_CASE_METHOD(RequestFixture, @@ -866,9 +909,12 @@ TEST_CASE_METHOD(SyncRequestFixture, if ( !InitBaseURL() ) return; - REQUIRE( Execute("get?pi=3.14159265358979323") ); + wxString key = "pi"; + wxString value = "3.14159265358979323"; + + REQUIRE( Execute(wxString::Format("get?%s=%s", key, value)) ); - CheckExpectedJSON( response.AsString() ); + CheckExpectedJSON( response.AsString(), key, value ); } TEST_CASE_METHOD(SyncRequestFixture, @@ -1161,7 +1207,7 @@ TEST_CASE_METHOD(SyncRequestFixture, DumpResponse(request.GetResponse()); } -using wxWebRequestHeaderMap = std::unordered_map; +using wxWebRequestHeaderMap = std::unordered_map>; namespace wxPrivate { @@ -1179,7 +1225,8 @@ TEST_CASE("WebRequestUtils", "[net][webrequest]") value = wxPrivate::SplitParameters(header, params); CHECK( value == "multipart/mixed" ); CHECK( params.size() == 1 ); - CHECK( params["boundary"] == "MIME_boundary_01234567" ); + REQUIRE( !params["boundary"].empty() ); + CHECK( params["boundary"].back() == "MIME_boundary_01234567" ); } // This is not a real test, run it to see the version of the library used. diff --git a/tests/streams/datastreamtest.cpp b/tests/streams/datastreamtest.cpp index a98c3af3ed57..1f8ee9da2a0a 100644 --- a/tests/streams/datastreamtest.cpp +++ b/tests/streams/datastreamtest.cpp @@ -39,12 +39,8 @@ class DataStreamTestCase : public CppUnit::TestCase CPPUNIT_TEST( FloatRW ); CPPUNIT_TEST( DoubleRW ); CPPUNIT_TEST( StringRW ); -#if wxUSE_LONGLONG CPPUNIT_TEST( LongLongRW ); -#endif -#if wxHAS_INT64 CPPUNIT_TEST( Int64RW ); -#endif CPPUNIT_TEST( NaNRW ); CPPUNIT_TEST( PseudoTest_UseBigEndian ); CPPUNIT_TEST( FloatRW ); @@ -67,12 +63,8 @@ class DataStreamTestCase : public CppUnit::TestCase void FloatRW(); void DoubleRW(); void StringRW(); -#if wxUSE_LONGLONG void LongLongRW(); -#endif -#if wxHAS_INT64 void Int64RW(); -#endif void NaNRW(); void PseudoTest_UseBigEndian() { ms_useBigEndianFormat = true; } @@ -256,7 +248,6 @@ void DataStreamTestCase::StringRW() CPPUNIT_ASSERT_EQUAL( TestRW(s), s ); } -#if wxUSE_LONGLONG void DataStreamTestCase::LongLongRW() { TestMultiRW::ValueArray ValuesLL; @@ -278,9 +269,7 @@ void DataStreamTestCase::LongLongRW() CPPUNIT_ASSERT( TestMultiRW(ValuesLL, &wxDataOutputStream::WriteLL, &wxDataInputStream::ReadLL).IsOk() ); CPPUNIT_ASSERT( TestMultiRW(ValuesULL, &wxDataOutputStream::WriteLL, &wxDataInputStream::ReadLL).IsOk() ); } -#endif -#if wxHAS_INT64 void DataStreamTestCase::Int64RW() { TestMultiRW::ValueArray ValuesI64; @@ -302,7 +291,6 @@ void DataStreamTestCase::Int64RW() CPPUNIT_ASSERT( TestMultiRW(ValuesI64, &wxDataOutputStream::Write64, &wxDataInputStream::Read64).IsOk() ); CPPUNIT_ASSERT( TestMultiRW(ValuesUI64, &wxDataOutputStream::Write64, &wxDataInputStream::Read64).IsOk() ); } -#endif void DataStreamTestCase::NaNRW() { diff --git a/tests/streams/textstreamtest.cpp b/tests/streams/textstreamtest.cpp index 3005b30b035e..09f7afc850aa 100644 --- a/tests/streams/textstreamtest.cpp +++ b/tests/streams/textstreamtest.cpp @@ -20,9 +20,7 @@ #include "wx/txtstrm.h" #include "wx/wfstream.h" -#if wxUSE_LONGLONG - #include "wx/longlong.h" -#endif +#include "wx/longlong.h" #include "wx/mstream.h" @@ -42,10 +40,8 @@ class TextStreamTestCase : public CppUnit::TestCase CPPUNIT_TEST( Endline ); CPPUNIT_TEST( MiscTests ); -#if wxUSE_LONGLONG CPPUNIT_TEST( TestLongLong ); CPPUNIT_TEST( TestULongLong ); -#endif // wxUSE_LONGLONG CPPUNIT_TEST( TestUTF8Input ); CPPUNIT_TEST( TestEmbeddedZerosUTF16LEInput ); @@ -57,10 +53,8 @@ class TextStreamTestCase : public CppUnit::TestCase void Endline(); void MiscTests(); -#if wxUSE_LONGLONG void TestLongLong(); void TestULongLong(); -#endif // wxUSE_LONGLONG void TestUTF8Input(); void TestEmbeddedZerosUTF16LEInput(); @@ -133,8 +127,6 @@ void TextStreamTestCase::MiscTests() CPPUNIT_ASSERT_EQUAL("path=$PATH", tis.ReadLine()); } -#if wxUSE_LONGLONG - template static void DoTestRoundTrip(const T *values, size_t numValues) { @@ -193,8 +185,6 @@ void TextStreamTestCase::TestULongLong() DoTestRoundTrip(ullvalues, WXSIZEOF(ullvalues)); } -#endif // wxUSE_LONGLONG - static const wchar_t txtWchar[4] = { 0x0041, // LATIN CAPITAL LETTER A diff --git a/tests/strings/strings.cpp b/tests/strings/strings.cpp index fd714aab8206..724fe1a19cb8 100644 --- a/tests/strings/strings.cpp +++ b/tests/strings/strings.cpp @@ -516,18 +516,12 @@ enum Number_Int = 32 // only for int tests }; -#ifdef wxLongLong_t -typedef wxLongLong_t TestValue_t; -#else -typedef long TestValue_t; -#endif - wxGCC_WARNING_SUPPRESS(missing-field-initializers) static const struct ToIntData { const wxChar *str; - TestValue_t value; + wxLongLong_t value; int flags; int base; @@ -544,31 +538,29 @@ static const struct ToIntData { wxT("--1"), 0, Number_Invalid }, { wxT("-1"), -1, Number_Signed | Number_Int }, - { wxT("-1"), (TestValue_t)UINT_MAX, Number_Unsigned | Number_Int | Number_Invalid }, + { wxT("-1"), (wxLongLong_t)UINT_MAX, Number_Unsigned | Number_Int | Number_Invalid }, - { wxT("2147483647"), (TestValue_t)INT_MAX, Number_Int | Number_Signed }, - { wxT("2147483648"), (TestValue_t)INT_MAX, Number_Int | Number_Signed | Number_Invalid }, + { wxT("2147483647"), (wxLongLong_t)INT_MAX, Number_Int | Number_Signed }, + { wxT("2147483648"), (wxLongLong_t)INT_MAX, Number_Int | Number_Signed | Number_Invalid }, - { wxT("-2147483648"), (TestValue_t)INT_MIN, Number_Int | Number_Signed }, - { wxT("-2147483649"), (TestValue_t)INT_MIN, Number_Int | Number_Signed | Number_Invalid }, + { wxT("-2147483648"), (wxLongLong_t)INT_MIN, Number_Int | Number_Signed }, + { wxT("-2147483649"), (wxLongLong_t)INT_MIN, Number_Int | Number_Signed | Number_Invalid }, - { wxT("4294967295"), (TestValue_t)UINT_MAX, Number_Int | Number_Unsigned }, - { wxT("4294967296"), (TestValue_t)UINT_MAX, Number_Int | Number_Unsigned | Number_Invalid }, + { wxT("4294967295"), (wxLongLong_t)UINT_MAX, Number_Int | Number_Unsigned }, + { wxT("4294967296"), (wxLongLong_t)UINT_MAX, Number_Int | Number_Unsigned | Number_Invalid }, }; static const struct ToLongData { const wxChar *str; - TestValue_t value; + wxLongLong_t value; int flags; int base; long LValue() const { return value; } unsigned long ULValue() const { return value; } -#ifdef wxLongLong_t wxLongLong_t LLValue() const { return value; } wxULongLong_t ULLValue() const { return (wxULongLong_t)value; } -#endif // wxLongLong_t bool IsOk() const { return !(flags & Number_Invalid); } } longData[] = @@ -581,21 +573,19 @@ static const struct ToLongData { wxT("-1"), -1, Number_Signed | Number_Long }, // this is surprising but consistent with strtoul() behaviour - { wxT("-1"), (TestValue_t)ULONG_MAX, Number_Unsigned | Number_Long }, + { wxT("-1"), (wxLongLong_t)ULONG_MAX, Number_Unsigned | Number_Long }, // a couple of edge cases { wxT(" +1"), 1, Number_Ok }, - { wxT(" -1"), (TestValue_t)ULONG_MAX, Number_Unsigned | Number_Long }, + { wxT(" -1"), (wxLongLong_t)ULONG_MAX, Number_Unsigned | Number_Long }, // this must overflow, even with 64 bit long { wxT("922337203685477580711"), 0, Number_Invalid }, -#ifdef wxLongLong_t { wxT("2147483648"), wxLL(2147483648), Number_LongLong }, { wxT("-2147483648"), wxLL(-2147483648), Number_LongLong | Number_Signed }, { wxT("9223372036854775808"), - TestValue_t(wxULL(9223372036854775808)), + (wxLongLong_t)wxULL(9223372036854775808), Number_LongLong | Number_Unsigned }, -#endif // wxLongLong_t // Base tests. { wxT("010"), 10, Number_Ok, 10 }, @@ -621,7 +611,7 @@ static const struct ToLongData #else #error "Unknown sizeof(long)" #endif - (TestValue_t)ULONG_MAX, Number_Unsigned, 0 + (wxLongLong_t)ULONG_MAX, Number_Unsigned, 0 }, }; @@ -748,8 +738,6 @@ TEST_CASE("StringToULong", "[wxString]") } } -#ifdef wxLongLong_t - TEST_CASE("StringToLongLong", "[wxString]") { wxLongLong_t l; @@ -782,8 +770,6 @@ TEST_CASE("StringToULongLong", "[wxString]") } } -#endif // wxLongLong_t - TEST_CASE("StringToDouble", "[wxString]") { double d = 0.0; diff --git a/tests/strings/vararg.cpp b/tests/strings/vararg.cpp index e5902d60a5e7..646a314e7cf5 100644 --- a/tests/strings/vararg.cpp +++ b/tests/strings/vararg.cpp @@ -137,7 +137,6 @@ TEST_CASE("StdString", "[wxString][Printf][vararg]") CHECK( s == "string widechar(2)." ); } -#if wxUSE_LONGLONG TEST_CASE("LongLongPrintf", "[wxString][Printf][vararg]") { const char * const llfmt = "%" wxLongLongFmtSpec "d"; @@ -147,7 +146,6 @@ TEST_CASE("LongLongPrintf", "[wxString][Printf][vararg]") wxLongLong ll = 1234567890; CHECK( wxString::Format(llfmt, ll) == "1234567890" ); } -#endif // wxUSE_LONGLONG TEST_CASE("Sscanf", "[wxSscanf][vararg]") { diff --git a/tests/strings/vsnprintf.cpp b/tests/strings/vsnprintf.cpp index bca13ebcbdcc..631308e5e68f 100644 --- a/tests/strings/vsnprintf.cpp +++ b/tests/strings/vsnprintf.cpp @@ -314,7 +314,6 @@ TEST_CASE_METHOD(VsnprintfTestCase, "Vsnprintf::Percent", "[vsnprintf]") // Compare(wxT("%"), wxT("%%%")); } -#ifdef wxLongLong_t TEST_CASE_METHOD(VsnprintfTestCase, "Vsnprintf::LongLong", "[vsnprintf]") { CMP("123456789", "%lld", (wxLongLong_t)123456789); @@ -327,7 +326,6 @@ TEST_CASE_METHOD(VsnprintfTestCase, "Vsnprintf::LongLong", "[vsnprintf]") CMP("123456789abcdef", "%I64x", wxLL(0x123456789abcdef)); #endif } -#endif TEST_CASE_METHOD(VsnprintfTestCase, "Vsnprintf::WrongFormatStrings", "[vsnprintf]") { diff --git a/tests/test.bkl b/tests/test.bkl index 977a92d73e6e..1004af02cc23 100644 --- a/tests/test.bkl +++ b/tests/test.bkl @@ -377,6 +377,7 @@ bitfields-alpha.bmp 8bpp-colorsused-large.bmp 8bpp-colorsused-negative.bmp + 32bpp_rgb.bmp rle4-delta-320x240.bmp rle8-delta-320x240.bmp rle8-delta-320x240-expected.bmp