Skip to content

Commit

Permalink
Fix warnings after Xcode 15 / target 10.13 update.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-preston committed Sep 22, 2023
1 parent 63a753d commit 5514ab0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Telegram/SourceFiles/platform/mac/file_utilities_mac.mm
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ bool UnsafeShowOpenWith(const QString &filepath) {
NSArray *appsPaths = [[NSFileManager defaultManager] URLsForDirectory:NSApplicationDirectory inDomains:NSLocalDomainMask];
if ([appsPaths count]) [openPanel setDirectoryURL:[appsPaths firstObject]];
[openPanel beginWithCompletionHandler:^(NSInteger result){
if (result == NSFileHandlingPanelOKButton) {
if (result == NSModalResponseOK) {
if ([[openPanel URLs] count] > 0) {
NSURL *app = [[openPanel URLs] objectAtIndex:0];
NSString *path = [app path];
Expand Down
1 change: 1 addition & 0 deletions Telegram/cmake/lib_tgcalls.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ PRIVATE
-Wno-deprecated-volatile
-Wno-ambiguous-reversed-operator
-Wno-deprecated-declarations
-Wno-unqualified-std-cast-call
)

remove_target_sources(lib_tgcalls ${tgcalls_loc}
Expand Down
12 changes: 5 additions & 7 deletions Telegram/cmake/lib_tgvoip.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,6 @@ init_target(lib_tgvoip_bundled)
cmake_dependent_option(LIBTGVOIP_DISABLE_ALSA "Disable libtgvoip's ALSA backend." OFF LINUX ON)
cmake_dependent_option(LIBTGVOIP_DISABLE_PULSEAUDIO "Disable libtgvoip's PulseAudio backend." OFF LINUX ON)

if (APPLE)
target_compile_options(lib_tgvoip_bundled
PRIVATE
-Wno-unqualified-std-cast-call
)
endif()

set(tgvoip_loc ${third_party_loc}/libtgvoip)

nice_target_sources(lib_tgvoip_bundled ${tgvoip_loc}
Expand Down Expand Up @@ -135,6 +128,11 @@ PRIVATE
TGVOIP_USE_DESKTOP_DSP
)

target_compile_options_if_exists(lib_tgvoip_bundled
PRIVATE
-Wno-unqualified-std-cast-call
)

if (WIN32)
if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
target_compile_options(lib_tgvoip_bundled
Expand Down
2 changes: 1 addition & 1 deletion Telegram/codegen
2 changes: 1 addition & 1 deletion Telegram/lib_webview

0 comments on commit 5514ab0

Please sign in to comment.