Remove calls to now unused methods

master
Cinder Biscuits 2014-04-18 21:05:20 +00:00
parent b533844945
commit 1173dde898
1 changed files with 1 additions and 7 deletions

View File

@ -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;