summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterurlentry.h
diff options
context:
space:
mode:
authorSteven Bennetts <steve@lindenlab.com>2008-02-19 21:42:32 +0000
committerSteven Bennetts <steve@lindenlab.com>2008-02-19 21:42:32 +0000
commit2e32d44e7165775936beae5d9ef636ff9d3f2bd2 (patch)
tree8153bc399994aabf6e1c41c2d8332e4e8c4ddb78 /indra/newview/llfloaterurlentry.h
parentdb0f5847ea8b96b3c1ac08e7aeb43d83daacb8e4 (diff)
merge svn+ssh://svn.lindenlab.com/svn/linden/qa/combo-merge-ui-2008-02-13 -r 79986 : 80178 -> release.
QAR-290 = QAR-271 + QAR-191
Diffstat (limited to 'indra/newview/llfloaterurlentry.h')
-rw-r--r--indra/newview/llfloaterurlentry.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/indra/newview/llfloaterurlentry.h b/indra/newview/llfloaterurlentry.h
index 022c1eddd7..95954d82bb 100644
--- a/indra/newview/llfloaterurlentry.h
+++ b/indra/newview/llfloaterurlentry.h
@@ -10,15 +10,17 @@
#define LL_LLFLOATERURLENTRY_H
#include "llfloater.h"
+#include "llpanellandmedia.h"
class LLLineEditor;
+class LLComboBox;
class LLFloaterURLEntry : public LLFloater
{
public:
// Can only be shown by LLPanelLandMedia, and pushes data back into
// that panel via the handle.
- static LLViewHandle show(LLViewHandle panel_land_media_handle);
+ static LLHandle<LLFloater> show(LLHandle<LLPanel> panel_land_media_handle);
void updateFromLandMediaPanel();
@@ -27,13 +29,13 @@ public:
bool addURLToCombobox(const std::string& media_url);
private:
- LLFloaterURLEntry(LLViewHandle parent);
+ LLFloaterURLEntry(LLHandle<LLPanel> parent);
/*virtual*/ ~LLFloaterURLEntry();
void buildURLHistory();
private:
LLComboBox* mMediaURLEdit;
- LLViewHandle mPanelLandMediaHandle;
+ LLHandle<LLPanel> mPanelLandMediaHandle;
static void onBtnOK(void*);
static void onBtnCancel(void*);