Age | Commit message (Collapse) | Author |
|
Certain tests of allowModifyBy(), allowCopyBy() and allowMoveBy() were
computing a bit-shifted S32 value and testing that the method return value
matched that specific bit. Whoever originally coded the test probably started
with allowModifyBy() == TRUE, but observed that it didn't work. Instead of
just testing for nonzero, in the spirit of BOOL, he then determined the
specific BOOL value (typedef for 'int') returned by each test so he could
still compare for equality. In other words, the tests were far too
knowledgeable about the method implementation. At some point these methods
were changed to return C++ standard 'bool' instead, so the internal
bit-masking operations got mapped to 'true' and 'false' anyway, making it
impossible for the original equality comparison to succeed. Fix tests
accordingly.
Use ensure_equals("msg", expr1, expr2) instead of ensure("msg", expr1 == expr2).
On failure, the former will report the actual mismatched values.
Remove other extraneous Microsoft-style "BOOL" usage (e.g. expr == TRUE).
|
|
|
|
A viewport array passed to glGetIntegerv() and gluUnProject() was declared as
'int'. This compiles on Windows, but fails on Mac. Declaring as 'GLint' works.
|
|
|
|
mac. No code changed :)
|
|
consistency, and to allow for ES longer translation of "Buy" (Erica changed "Buy L$" to "Buy" to mitigate the problem)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--HG--
branch : product-engine
|
|
--HG--
branch : product-engine
|
|
|
|
Standard wearables have no textures associated with them. No textures means no texture callbacks.
Fixed the issue by requesting a texture upload on baked textures that we don't get a cahced baked
texture response for. This clears up the repro
Code reviewed by prep, vir
|
|
|
|
The specs contradict themselves and I *like* this interpretation better.
|
|
soon as you hit Save.
Fixed category mismatch after editing classified.
Made price uneditable in edit mode because it looks like server does not support price update(same in viewer 1.23)
--HG--
branch : product-engine
|
|
- Added LLIconsComboBox class - a combobox with icons for maturity ratings.
- Fixed scroll list maximum width calculation. The width was calculated based on text value width for non-text columns.
- Added image overlay alignment getter method to LLButton.
--HG--
branch : product-engine
|
|
- Added icons updating upon opening Prefs -> General panel.
--HG--
branch : product-engine
|
|
--HG--
branch : product-engine
|
|
|
|
--HG--
branch : product-engine
|
|
EXT-5860 and EXT-5859.
--HG--
branch : product-engine
|
|
--HG--
branch : product-engine
|
|
displayed in the Classified Info from other resident profile.
Replaced auto_renew checkbox with textbox.
--HG--
branch : product-engine
|
|
|
|
|
|
|
|
|
|
|
|
|
|
audio for media.
Not part of the client and nothing here is deployed - internal testing only.
|
|
Reviewed by RN and MW
|
|
|
|
|
|
LLWorkerClass::checkWork: ASSERT(workreq).
|
|
|
|
|
|
|
|
|
|
|
|
Minor cleanup to start using DEFAULT_SORT_ORDER versus plain text "InventorySortOrder" in a few plaecs in the code. Makes this sorting code a lot easier to debug.
|
|
|
|
Decrease PluginInstancesCPULimit default value from 1.0 to 0.9.
|
|
|
|
|
|
|
|
Not my code, but ended up being a simple enough XML fix. Inventory sorting settings have changed in viewer2 from viewer1.23, this seems to be causing at least a couple of bugs. Fixed one, filing the other.
|