aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterimport.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llfloaterimport.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/linden/indra/newview/llfloaterimport.cpp b/linden/indra/newview/llfloaterimport.cpp
index c60c571..f30f69d 100644
--- a/linden/indra/newview/llfloaterimport.cpp
+++ b/linden/indra/newview/llfloaterimport.cpp
@@ -56,6 +56,7 @@
56#include "pipeline.h" 56#include "pipeline.h"
57#include "viewer.h" 57#include "viewer.h"
58#include "llvieweruictrlfactory.h" 58#include "llvieweruictrlfactory.h"
59#include "llmd5.h"
59 60
60extern LLInventoryModel gInventory; 61extern LLInventoryModel gInventory;
61 62
@@ -588,7 +589,7 @@ void LLFloaterImport::onBtnOK(void*userdata)
588 finishImport(asset_info); 589 finishImport(asset_info);
589 } 590 }
590 591
591 fp->onClose(false); 592 fp->close(false);
592} 593}
593 594
594//----------------------------------------------------------------------------- 595//-----------------------------------------------------------------------------
@@ -597,7 +598,7 @@ void LLFloaterImport::onBtnOK(void*userdata)
597void LLFloaterImport::onBtnCancel(void*userdata) 598void LLFloaterImport::onBtnCancel(void*userdata)
598{ 599{
599 LLFloaterImport *fp =(LLFloaterImport*)userdata; 600 LLFloaterImport *fp =(LLFloaterImport*)userdata;
600 fp->onClose(false); 601 fp->close(false);
601} 602}
602 603
603 604