summaryrefslogtreecommitdiff
path: root/src/resources/userpalette.cpp
AgeCommit message (Collapse)AuthorFilesLines
2024-01-29Removed unused includes in various filesThorbjørn Lindeijer1-5/+0
2024-01-29Apply C++11 fixitsThorbjørn Lindeijer1-28/+25
modernize-loop-convert modernize-deprecated-headers
2024-01-26Apply C++11 fixitsThorbjørn Lindeijer1-3/+3
modernize-use-auto modernize-use-nullptr modernize-use-override modernize-use-using
2012-03-18Removed some 'const' keywords from value returnsThorbjørn Lindeijer1-1/+1
It makes no sense to mark a return value as const when it is returned by value. This only makes sense if the return value is passed by reference, in order to prevent the receiver from modifying the value. Also made some other small adjustments. A std::string does not need to be initialized to "" explicitly and getSafeUtf8String could take its parameter by reference. Reviewed-by: Yohann Ferreira
2012-01-26Updated copyrights to 2012Thorbjørn Lindeijer1-1/+1
2010-11-01Merge branch '0.5' of gitorious.org:mana/manaYohann Ferreira1-16/+26
Conflicts: src/being.cpp src/client.cpp src/commandhandler.cpp src/gui/setup_video.cpp src/gui/socialwindow.cpp src/gui/viewport.cpp src/gui/widgets/browserbox.cpp src/gui/widgets/itemcontainer.cpp src/imageparticle.cpp src/localplayer.cpp src/localplayer.h src/map.cpp src/net/tmwa/beinghandler.cpp src/particle.cpp src/particle.h src/player.cpp src/player.h
2010-08-03Move Theme and UserPalette to the resources folderJared Adams1-0/+237
Reviewed-by: Yohann Ferreira