diff options
author | prep@lindenlab.com <prep@lindenlab.com> | 2013-06-14 12:34:45 -0500 |
---|---|---|
committer | prep@lindenlab.com <prep@lindenlab.com> | 2013-06-14 12:34:45 -0500 |
commit | 8c35b1b58bad66bfb5302e598536c0262263cbcb (patch) | |
tree | 67b0ecd3292632dc749d9d4bb967641928c65b53 /indra/llui/llpanel.h | |
parent | 4cf208cc7c5065f55e3e6ec121ec65a85775e0c7 (diff) |
WIP: sh-4035 backed out changes to appearance window confirmation
Diffstat (limited to 'indra/llui/llpanel.h')
-rwxr-xr-x | indra/llui/llpanel.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/indra/llui/llpanel.h b/indra/llui/llpanel.h index 02f8c0aba7..e63b41f97c 100755 --- a/indra/llui/llpanel.h +++ b/indra/llui/llpanel.h @@ -116,8 +116,6 @@ public: /*virtual*/ void draw(); /*virtual*/ BOOL handleKeyHere( KEY key, MASK mask ); /*virtual*/ void handleVisibilityChange ( BOOL new_visibility ); - void handleCloseConfirmation( bool app_quitting ); - // From LLFocusableElement /*virtual*/ void setFocus( BOOL b ); @@ -253,8 +251,6 @@ public: std::string getXMLFilename() { return mXMLFilename; }; boost::signals2::connection setVisibleCallback( const commit_signal_t::slot_type& cb ); - boost::signals2::connection setCloseConfirmationCallback( const commit_signal_t::slot_type& cb ); - protected: // Override to set not found list @@ -264,7 +260,6 @@ protected: EnableCallbackRegistry::ScopedRegistrar mEnableCallbackRegistrar; commit_signal_t* mVisibleSignal; // Called when visibility changes, passes new visibility as LLSD() - commit_signal_t* mCloseConfirmationSignal; std::string mHelpTopic; // the name of this panel's help topic to display in the Help Viewer typedef std::deque<const LLCallbackMap::map_t*> factory_stack_t; @@ -272,11 +267,7 @@ protected: // for setting the xml filename when building panel in context dependent cases std::string mXMLFilename; - //Specific close-down logic in subclass - BOOL mVerifyUponClose; -public: - BOOL mForceCloseAfterVerify; - + private: BOOL mBgVisible; // any background at all? BOOL mBgOpaque; // use opaque color or image |