EXT-7138 WIP Removed now redundant onClickAdd callback from the Voice Effect preview floater.
Cleaned up comments.master
parent
7ab53a6eec
commit
d821d371e3
|
|
@ -1,5 +1,6 @@
|
|||
/**
|
||||
* @file llfloatervoiceeffect.cpp
|
||||
* @author Aimee
|
||||
* @brief Selection and preview of voice effect.
|
||||
*
|
||||
* $LicenseInfo:firstyear=2010&license=viewergpl$
|
||||
|
|
@ -44,7 +45,6 @@ LLFloaterVoiceEffect::LLFloaterVoiceEffect(const LLSD& key)
|
|||
mCommitCallbackRegistrar.add("VoiceEffect.Record", boost::bind(&LLFloaterVoiceEffect::onClickRecord, this));
|
||||
mCommitCallbackRegistrar.add("VoiceEffect.Play", boost::bind(&LLFloaterVoiceEffect::onClickPlay, this));
|
||||
mCommitCallbackRegistrar.add("VoiceEffect.Stop", boost::bind(&LLFloaterVoiceEffect::onClickStop, this));
|
||||
mCommitCallbackRegistrar.add("VoiceEffect.Add", boost::bind(&LLFloaterVoiceEffect::onClickAdd, this));
|
||||
// mCommitCallbackRegistrar.add("VoiceEffect.Activate", boost::bind(&LLFloaterVoiceEffect::onClickActivate, this));
|
||||
}
|
||||
|
||||
|
|
@ -280,12 +280,6 @@ void LLFloaterVoiceEffect::onClickStop()
|
|||
updateControls();
|
||||
}
|
||||
|
||||
void LLFloaterVoiceEffect::onClickAdd()
|
||||
{
|
||||
// Open the voice morphing info web page
|
||||
LLWeb::loadURL(LLTrans::getString("voice_morphing_url"));
|
||||
}
|
||||
|
||||
//void LLFloaterVoiceEffect::onClickActivate()
|
||||
//{
|
||||
// LLVoiceEffectInterface* effect_interface = LLVoiceClient::instance().getVoiceEffectInterface();
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
/**
|
||||
* @file llfloatervoiceeffect.h
|
||||
* @author Aimee
|
||||
* @brief Selection and preview of voice effects.
|
||||
*
|
||||
* $LicenseInfo:firstyear=2010&license=viewergpl$
|
||||
|
|
@ -62,9 +63,8 @@ private:
|
|||
void onClickRecord();
|
||||
void onClickPlay();
|
||||
void onClickStop();
|
||||
void onClickAdd();
|
||||
// void onClickActivate();
|
||||
|
||||
// void onClickActivate();
|
||||
|
||||
LLUUID mSelectedID;
|
||||
LLScrollListCtrl* mVoiceEffectList;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* @file llpanelvoiceeffect.cpp
|
||||
* @author Aimee Walton
|
||||
* @author Aimee
|
||||
* @brief Panel to select Voice Effects.
|
||||
*
|
||||
* $LicenseInfo:firstyear=2010&license=viewergpl$
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* @file llpanelvoiceeffect.h
|
||||
* @author Aimee Walton
|
||||
* @author Aimee
|
||||
* @brief Panel to select Voice Effects.
|
||||
*
|
||||
* $LicenseInfo:firstyear=2010&license=viewergpl$
|
||||
|
|
|
|||
Loading…
Reference in New Issue