diff options
Diffstat (limited to 'third_party/mozilla')
-rw-r--r-- | third_party/mozilla/NSWorkspace+Utils.m | 4 | ||||
-rw-r--r-- | third_party/mozilla/README.chromium | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/third_party/mozilla/NSWorkspace+Utils.m b/third_party/mozilla/NSWorkspace+Utils.m index e3d052c..157f1d0 100644 --- a/third_party/mozilla/NSWorkspace+Utils.m +++ b/third_party/mozilla/NSWorkspace+Utils.m @@ -164,10 +164,10 @@ // + (long)systemVersion { - static long sSystemVersion = 0; + static SInt32 sSystemVersion = 0; if (!sSystemVersion) Gestalt(gestaltSystemVersion, &sSystemVersion); - return sSystemVersion; + return (long)sSystemVersion; } // diff --git a/third_party/mozilla/README.chromium b/third_party/mozilla/README.chromium index 46a1c2b..e8027f7 100644 --- a/third_party/mozilla/README.chromium +++ b/third_party/mozilla/README.chromium @@ -23,6 +23,7 @@ Local modifications: -[NSPasteboard getURLs:andTitles:] to determine whether or not filenames in the drag should be converted to file URLs. -[NSPasteboard htmlFromRtf] added to do rtf->html conversion. +- NSWorkspace+Utils.m was modified to compile on the x86_64 architecture. ----------------------------------------------------------------- |