Ticket #10669: SimpleToolbar.diff

File SimpleToolbar.diff, 376 bytes (added by Tim Kosse, 9 years ago)

Diff to sample which reproduced the bug.

  • main.m

    old new  
    4747
    4848#import <Cocoa/Cocoa.h>
    4949
     50#include <locale.h>
     51
    5052int main(int argc, const char *argv[])
    5153{
     54    // Any locale that uses , instead of . as decimal point will do the trick.
     55    setlocale(LC_NUMERIC, "de_DE");
    5256    return NSApplicationMain(argc, argv);
    5357}