summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-03-21 17:26:43 -0700
committerRichard Linden <none@none>2013-03-21 17:26:43 -0700
commit0c63f95b9e1368607126b8d2edbcd91172e61db5 (patch)
treeac99275d1d4f9d4dc1a38ac24e9b5601af1352a0 /indra/newview
parent1f507c3cfca0c7722ebeaf71883fbaa83988e1a9 (diff)
BUILDFIX fix for gcc build
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llfloatersceneloadstats.cpp5
-rw-r--r--indra/newview/llfloatersceneloadstats.h4
2 files changed, 8 insertions, 1 deletions
diff --git a/indra/newview/llfloatersceneloadstats.cpp b/indra/newview/llfloatersceneloadstats.cpp
index 95e8fbf4dd..8aa93eae96 100644
--- a/indra/newview/llfloatersceneloadstats.cpp
+++ b/indra/newview/llfloatersceneloadstats.cpp
@@ -32,6 +32,9 @@
LLFloaterSceneLoadStats::LLFloaterSceneLoadStats( const LLSD& key )
: LLFloater(key)
-{
+{}
+BOOL LLFloaterSceneLoadStats::postBuild()
+{
+ return TRUE;
}
diff --git a/indra/newview/llfloatersceneloadstats.h b/indra/newview/llfloatersceneloadstats.h
index 095541f2f6..aa414bf544 100644
--- a/indra/newview/llfloatersceneloadstats.h
+++ b/indra/newview/llfloatersceneloadstats.h
@@ -34,6 +34,10 @@ class LLFloaterSceneLoadStats : public LLFloater
friend class LLFloaterReg;
private:
LLFloaterSceneLoadStats(const LLSD& key);
+
+public:
+ BOOL postBuild();
+
};
#endif // LL_FLOATERSCENELOADSTATS_H