From 7dce65a5db84988b2cab3d9c977a86c08124701c Mon Sep 17 00:00:00 2001 From: Richard Nelson <richard@lindenlab.com> Date: Mon, 16 Aug 2010 15:36:56 -0700 Subject: [PATCH] fix for gcc --- indra/llui/lluictrlfactory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llui/lluictrlfactory.h b/indra/llui/lluictrlfactory.h index c4d3aa38d83..0b0a235f8f3 100644 --- a/indra/llui/lluictrlfactory.h +++ b/indra/llui/lluictrlfactory.h @@ -247,7 +247,7 @@ class LLUICtrlFactory : public LLSingleton<LLUICtrlFactory> template<class T> static T* getDefaultWidget(const std::string& name) { - T::Params widget_params; + typename T::Params widget_params; widget_params.name = name; return create<T>(widget_params); } -- GitLab