diff options
author | Cinder Biscuits <cinder.roxley@phoenixviewer.com> | 2014-04-18 21:05:20 +0000 |
---|---|---|
committer | Cinder Biscuits <cinder.roxley@phoenixviewer.com> | 2014-04-18 21:05:20 +0000 |
commit | 1173dde898d5b61749b1c1631d060bf6730b9642 (patch) | |
tree | 31cdcb090ac004fecbf2be6609f7eeb9bd08e0a2 /indra/llwindow | |
parent | b533844945a648ab1613a305c072809bbd6d76a8 (diff) |
Remove calls to now unused methods
Diffstat (limited to 'indra/llwindow')
-rwxr-xr-x | indra/llwindow/llwindowmacosx.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/indra/llwindow/llwindowmacosx.cpp b/indra/llwindow/llwindowmacosx.cpp index 832e08d181..ed0348e10e 100755 --- a/indra/llwindow/llwindowmacosx.cpp +++ b/indra/llwindow/llwindowmacosx.cpp @@ -1755,15 +1755,9 @@ BOOL LLWindowMacOSX::dialogColorPicker( F32 *r, F32 *g, F32 *b) info.theColor.color.rgb.green = (UInt16)(*g * 65535.f); info.theColor.color.rgb.blue = (UInt16)(*b * 65535.f); info.placeWhere = kCenterOnMainScreen; - - if(gWindowImplementation != NULL) - gWindowImplementation->beforeDialog(); - + error = NPickColor(&info); - if(gWindowImplementation != NULL) - gWindowImplementation->afterDialog(); - if (error == noErr) { retval = info.newColorChosen; |