- Jul 22, 2016
-
-
Nat Goodspeed authored
instead of legacy BOOL.
-
Nat Goodspeed authored
Derive them both from a common base class that does the message logging, instead of having each handler class log redundantly -- especially since the put_text() override accepting const kdu_uint16* was simply streaming the kdu_uint16 pointer to the log file, which would log the hex value of the pointer. Although we want a static instance of each of these handler classes, pull it out rather than nesting the instance within the class itself.
-
- Jul 21, 2016
-
-
Nat Goodspeed authored
Specifically, remove unused function pointer types CreateLLImageJ2CFunction, DestroyLLImageJ2CFunction and EngineInfoLLImageJ2CFunction. Also eliminate static fallbackDestroyLLImageJ2CImpl() and fallbackEngineInfoLLImageJ2CImpl(), leaving only static fallbackCreateLLImageJ2CImpl(). We do need a factory function to instantiate the appropriate LLImageJ2CImpl subclass, so leave the fallbackCreateLLImageJ2CImpl() link seam in place. However, given that every known LLImageJ2CImpl subclass is cheap to instantiate, make getEngineInfo() a pure virtual method on that subclass: the static LLImageJ2C::getEngineInfo() method can temporarily construct an instance to query. While we're at it, make getEngineInfo() return std::string like LLImageJ2C::getEngineInfo(). It's ridiculous that fallbackEngineInfoLLImageJ2CImpl() implementations constructed a static std::string and returned its c_str(), only to have LLImageJ2C::getEngineInfo() construct ANOTHER std::string from the returned const char*. fallbackDestroyLLImageJ2CImpl() never did anything useful: it merely deleted the passed LLImageJ2CImpl subclass pointer as the specific subclass type. But since LLImageJ2CImpl's destructor is virtual, LLImageJ2C's destructor could simply delete the stored LLImageJ2CImpl*. In fact, make mImpl a boost::scoped_ptr<LLImageJ2CImpl> so we don't even have to delete it manually.
-
Nat Goodspeed authored
destroyLLImageJ2CKDU(). These were apparently intended as simple C-style DLL entry points. But as nobody calls them, and as we decided against building the viewer from DLLs, they only clutter the code.
-
- Jul 06, 2016
- May 19, 2016
-
-
AndreyL ProductEngine authored
-
Oz Linden authored
-
Oz Linden authored
-
- May 10, 2016
-
-
Oz Linden authored
-
- May 09, 2016
-
-
Rider Linden authored
MAINT-6392: Do not change the URL used for getting cookies (except to pass it to CEF) The original URL is used for HTTP Core access to profile functionality.
-
- May 07, 2016
-
-
Oz Linden authored
-
- May 06, 2016
-
-
AndreyL ProductEngine authored
-
AndreyL ProductEngine authored
-
Oz Linden authored
-
Oz Linden authored
-
Oz Linden authored
-
Oz Linden authored
-
Oz Linden authored
-
- May 05, 2016
-
-
Oz Linden authored
-
- May 04, 2016
- May 02, 2016
-
-
Ansariel authored
-
Ansariel Hiller authored
-
- Apr 29, 2016
- Apr 28, 2016
- Apr 26, 2016
-
-
Rider Linden authored
-
Rider Linden authored
-
Rider Linden authored
MAINT-6336: Put the timeout upstream of the suspending pump and fire the timeout it. Also some cleanup on LLSD construction in vivox.
-
Oz Linden authored
-
Oz Linden authored
-
- Apr 25, 2016
-
-
Rider Linden authored
-
Rider Linden authored
MAINT-6338: Add methods for getting and setting boolean properties from gSavedSettings in the HTTPCore. Use those methods to access new key HTTPLogBodyOnError. Dump body of HTTP message to log in case of error if this key is true.
-
- Apr 22, 2016
-
-
Rider Linden authored
-
Rider Linden authored
-
Rider Linden authored
MAINT-6336: Centralize waiting on event pump with a timeout. Shorten the lifespan of a timeout event pump lifespan to be no longer than necessary. Change all references to the LLEventTimer to instead uses the centralized version.
-