summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCinder Biscuits <cinder.roxley@phoenixviewer.com>2014-04-18 21:05:20 +0000
committerCinder Biscuits <cinder.roxley@phoenixviewer.com>2014-04-18 21:05:20 +0000
commit1173dde898d5b61749b1c1631d060bf6730b9642 (patch)
tree31cdcb090ac004fecbf2be6609f7eeb9bd08e0a2
parentb533844945a648ab1613a305c072809bbd6d76a8 (diff)
Remove calls to now unused methods
-rwxr-xr-xindra/llwindow/llwindowmacosx.cpp8
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;