1
I Use This!
Inactive

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Aug 19, 2024 — Aug 19, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
fixed LayeredLayout: - AddLayout and AddView override Layout::AddLayout, AddView and must get the same arguments - props can't be NULL, nullptr_t (=0) should be used instead of NULL More... almost 12 years ago
private SetMinimum/MaximumHeight in CheckBox.h should override the virtual ones as the comment indicates, fixed them to match the virtual definition More... almost 12 years ago
void SetTextColor overrides virtualSetTextColor, fixed the argument to be const reference to Color instead of Color to match the virtual method definition More... almost 12 years ago
SetMinimum/MaximumHeight should override the Area.h functions as the comment indicates but they have different parameters - fixed the declarations More... almost 12 years ago
virtual GetTextColor (View.h) should be const (the GetTextColor that override it are const too) More... almost 12 years ago
CubeTexture and VolumeTexture Lock and Unlock functions have different parameters than BaseTexture's Lock and Unlock. They shouldn't try to override the virtual Lock and Unlock of BaseTexture class. ("hide overloaded virtual function" error) More... almost 12 years ago
commented out unused macro logger - logger is defined elsewhere More... almost 12 years ago
removed double bracket where not necessary (clang warning) More... almost 12 years ago
boolean function should return false and not NULL More... almost 12 years ago
setting Glew_Ok to Glew_Ok generates another warning in clang/llvm, set it = 0 More... almost 12 years ago
removed unused private fields More... almost 12 years ago
removed unused private fields More... almost 12 years ago
removed unused private field More... almost 12 years ago
removed unused variables and useless parenthesis More... almost 12 years ago
GLubyte* variables shouldn't be automatically casted to char*. The convertions between pointers to integer types with different sign might cause problems More... almost 12 years ago
changed unsigned int composite_tmp to int composite_tmp because passing parameter unsigned int* to parameter of type int* converts between pointers to integer types with different sign More... almost 12 years ago
removed unused private variable More... almost 12 years ago
fixed use of character literal as pointer (null pointer was passed to the std::string constructor) More... almost 12 years ago
fix assignment to itself warning More... almost 12 years ago
TestBaseWindow: don't enable the input window or it will cause crashes More... almost 12 years ago
TestWindowThread: add more tests More... almost 12 years ago
WindowThread: use nicer code path to add the window to present to the proper list More... almost 12 years ago
TestWindowThread: fix compilation issue More... almost 12 years ago
WindowThread: use proper names for internal variables More... almost 12 years ago
GraphicsEngine: use const& for returning rect when possible More... almost 12 years ago
WindowCompositor: continue optimizing... More... almost 12 years ago
NuxGraphics: use some more Rect const& More... almost 12 years ago
WindowCompositor: use nux::Logger More... almost 12 years ago
WindowThread: use lambdas in ForEachBaseWindow More... almost 12 years ago
WindowCompositor: get rid of FindWeakBaseWindowPtrForRawPtr More... almost 12 years ago