mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-22 14:13:57 -06:00
Fixed some OSX Objective C warnings.
This commit is contained in:
parent
20456b45e5
commit
2393d64a5a
3 changed files with 9 additions and 9 deletions
|
@ -57,7 +57,7 @@ void OtherInstanceMessageHandler::register_for_messages(const std::string &versi
|
|||
m_impl_osx = [[OtherInstanceMessageHandlerMac alloc] init];
|
||||
if(m_impl_osx) {
|
||||
NSString *nsver = [NSString stringWithCString:version_hash.c_str() encoding:[NSString defaultCStringEncoding]];
|
||||
[m_impl_osx add_observer:nsver];
|
||||
[(id)m_impl_osx add_observer:nsver];
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -65,7 +65,7 @@ void OtherInstanceMessageHandler::unregister_for_messages()
|
|||
{
|
||||
//NSLog(@"unreegistering other instance messages");
|
||||
if (m_impl_osx) {
|
||||
[m_impl_osx release];
|
||||
[(id)m_impl_osx release];
|
||||
m_impl_osx = nullptr;
|
||||
} else {
|
||||
NSLog(@"warning: unregister instance InstanceCheck notifications not required");
|
||||
|
@ -75,7 +75,7 @@ void OtherInstanceMessageHandler::unregister_for_messages()
|
|||
void OtherInstanceMessageHandler::bring_instance_forward()
|
||||
{
|
||||
if (m_impl_osx) {
|
||||
[m_impl_osx bring_forward];
|
||||
[(id)m_impl_osx bring_forward];
|
||||
}
|
||||
}
|
||||
}//namespace GUI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue