diff options
author | Jacek Antonelli | 2008-12-11 14:28:45 -0600 |
---|---|---|
committer | Jacek Antonelli | 2008-12-11 14:28:45 -0600 |
commit | a7a5691d03624f7c70b99203d9d6ee00d2ffaf91 (patch) | |
tree | 22c876e6342e661439e3f952e6365eb25274787e /linden/indra/newview/llfloaterabout.cpp | |
parent | Fix grid selector having a duplicate entry. [#24] (diff) | |
download | meta-impy-a7a5691d03624f7c70b99203d9d6ee00d2ffaf91.zip meta-impy-a7a5691d03624f7c70b99203d9d6ee00d2ffaf91.tar.gz meta-impy-a7a5691d03624f7c70b99203d9d6ee00d2ffaf91.tar.bz2 meta-impy-a7a5691d03624f7c70b99203d9d6ee00d2ffaf91.tar.xz |
Fixed bad string comparison (rel notes url) [#28]
Reported by Balp Allen.
Diffstat (limited to 'linden/indra/newview/llfloaterabout.cpp')
-rw-r--r-- | linden/indra/newview/llfloaterabout.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llfloaterabout.cpp b/linden/indra/newview/llfloaterabout.cpp index 59e3100..f6e7792 100644 --- a/linden/indra/newview/llfloaterabout.cpp +++ b/linden/indra/newview/llfloaterabout.cpp | |||
@@ -268,7 +268,7 @@ static std::string get_viewer_release_notes_url() | |||
268 | 268 | ||
269 | std::ostringstream test_version; | 269 | std::ostringstream test_version; |
270 | 270 | ||
271 | if(IMP_VERSION_TEST != "") | 271 | if( strcmp(IMP_VERSION_TEST, "") != 0 ) |
272 | test_version << "#" << "Imprudence_" << version.str() << "_" << IMP_VERSION_TEST; | 272 | test_version << "#" << "Imprudence_" << version.str() << "_" << IMP_VERSION_TEST; |
273 | 273 | ||
274 | std::ostringstream url; | 274 | std::ostringstream url; |