1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-15 22:19:07 +00:00

Indenting

This commit is contained in:
C.W. Betts 2013-11-15 18:45:53 -07:00
parent b9ed32049f
commit 5ca82aea1c

View file

@ -12,9 +12,9 @@
void cocoaMessageBox(const std::string &title, const std::string &msg) void cocoaMessageBox(const std::string &title, const std::string &msg)
{ {
@autoreleasepool { @autoreleasepool {
NSString *nstitle = @(title.c_str()); NSString *nstitle = @(title.c_str());
NSString *nsmsg = @(msg.c_str()); NSString *nsmsg = @(msg.c_str());
NSRunAlertPanel(nstitle, nsmsg, nil, nil, nil); NSRunAlertPanel(nstitle, nsmsg, nil, nil, nil);
} }
} }