projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da94537
)
No real changes, just slightly simplify HasAppKit_10_6() function.
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Wed, 23 May 2012 21:16:38 +0000
(21:16 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Wed, 23 May 2012 21:16:38 +0000
(21:16 +0000)
Remove redundant check for version == -1.
See #13831.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71544
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/osx/cocoa/filedlg.mm
patch
|
blob
|
blame
|
history
diff --git
a/src/osx/cocoa/filedlg.mm
b/src/osx/cocoa/filedlg.mm
index 0ab62f5bfad811ecb13139f44c7e0f450c89a42f..d08d3a3c3ed8add3c71567eae42b8cd5c29fdb04 100644
(file)
--- a/
src/osx/cocoa/filedlg.mm
+++ b/
src/osx/cocoa/filedlg.mm
@@
-70,10
+70,8
@@
bool HasAppKit_10_6()
// case above.
version = NSVersionOfRunTimeLibrary("AppKit");
}
- if (version == -1)
- {
- return false;
- }
+
+ // Notice that this still works correctly even if version is -1.
return version >= 0x40e2400 /* version of 10.6 AppKit */;
}