Ticket #10669: SimpleToolbar.diff
File SimpleToolbar.diff, 376 bytes (added by , 9 years ago) |
---|
-
main.m
old new 47 47 48 48 #import <Cocoa/Cocoa.h> 49 49 50 #include <locale.h> 51 50 52 int main(int argc, const char *argv[]) 51 53 { 54 // Any locale that uses , instead of . as decimal point will do the trick. 55 setlocale(LC_NUMERIC, "de_DE"); 52 56 return NSApplicationMain(argc, argv); 53 57 }