aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llgroupnotify.cpp
diff options
context:
space:
mode:
authorMcCabe Maxsted2009-09-11 20:20:13 -0700
committerMcCabe Maxsted2009-09-11 20:20:13 -0700
commit23eb89d76a254235872b530e047c1f39df1d122a (patch)
tree95c843ae96607d2c1221dcb49b266d154eae213a /linden/indra/newview/llgroupnotify.cpp
parentFixed profile account info spacing (diff)
parentBackported clickable object names from 1.23 (diff)
downloadmeta-impy-23eb89d76a254235872b530e047c1f39df1d122a.zip
meta-impy-23eb89d76a254235872b530e047c1f39df1d122a.tar.gz
meta-impy-23eb89d76a254235872b530e047c1f39df1d122a.tar.bz2
meta-impy-23eb89d76a254235872b530e047c1f39df1d122a.tar.xz
Merged in 1.2.0-objectnames
Diffstat (limited to 'linden/indra/newview/llgroupnotify.cpp')
-rw-r--r--linden/indra/newview/llgroupnotify.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llgroupnotify.cpp b/linden/indra/newview/llgroupnotify.cpp
index 37897eb..2f8e838 100644
--- a/linden/indra/newview/llgroupnotify.cpp
+++ b/linden/indra/newview/llgroupnotify.cpp
@@ -220,8 +220,8 @@ LLGroupNotifyBox::LLGroupNotifyBox(const std::string& subject,
220 static const LLStyleSP headerstyle(new LLStyle(true,LLColor4::black,"SansSerifBig")); 220 static const LLStyleSP headerstyle(new LLStyle(true,LLColor4::black,"SansSerifBig"));
221 static const LLStyleSP datestyle(new LLStyle(true,LLColor4::black,"serif")); 221 static const LLStyleSP datestyle(new LLStyle(true,LLColor4::black,"serif"));
222 222
223 text->appendStyledText(subject,false,false,&headerstyle); 223 text->appendStyledText(subject,false,false,headerstyle);
224 text->appendStyledText(time_buf,false,false,&datestyle); 224 text->appendStyledText(time_buf,false,false,datestyle);
225 // Sadly, our LLTextEditor can't handle both styled and unstyled text 225 // Sadly, our LLTextEditor can't handle both styled and unstyled text
226 // at the same time. Hence this space must be styled. JC 226 // at the same time. Hence this space must be styled. JC
227 text->appendColoredText(std::string(" "),false,false,LLColor4::grey4); 227 text->appendColoredText(std::string(" "),false,false,LLColor4::grey4);