summaryrefslogtreecommitdiff
path: root/src/misc
AgeCommit message (Collapse)Author
2009-09-20(svn r17596) -Codechange: constify some tablessmatz
2009-09-07(svn r17461) -Document: that a certain compiler warning when compiled ↵rubidium
without asserts in gcc 4.4+ isn't our fault but GCC's. Includes a reference to the appropriate GCC bug report
2009-08-21(svn r17248) -Fix: add GPL license notice where appropriaterubidium
2009-08-20(svn r17228) -Codechange: some coding style fixesrubidium
2009-08-19(svn r17219) -Cleanup: remove a lot of unused string codeyexo
2009-08-14(svn r17169) -Codechange: apply coding style to some for statementssmatz
2009-08-07(svn r17101) -Revert [FS#3065](r16546): large table on stack caused stack ↵smatz
overflow on some architectures
2009-07-29(svn r16983) -Change: work around a bogus GCC 4.4+ warning that can't be ↵rubidium
disabled
2009-06-09(svn r16546) -Codechange: use array member instead of allocating in ↵smatz
costructor and freeing in desctructor
2009-05-24(svn r16422) -Codechange: use const_cast for removing const and warn when ↵rubidium
const is (accidentally?) removed using C-style casts.
2009-03-15(svn r15718) -Cleanup: apply some comment coding style on the rest of the ↵rubidium
sources too
2009-03-14(svn r15711) -Codechange: lots of whitespace cleanup/fixesrubidium
2009-02-17(svn r15508) -Fix: three header files had incorrect ↵smatz
'anti-multiple-inclusion' header
2009-01-31(svn r15299) -Cleanup: remove many redundant includessmatz
2009-01-30(svn r15296) -Cleanup: remove redundant _MSC_VER >= 1400 checks, older ↵smatz
versions aren't supported anymore. One check in stdafx.h is enough
2009-01-10(svn r14949) -Cleanup: pointer coding stylerubidium
2008-08-20(svn r14105) -Fix: Some typos that are more grammatical errors, as it seems.belugas
Provided by ln I've added a little fix on currency.cpp too, why not :)
2008-08-02(svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals ↵rubidium
are drawn using the old Patch-like PBS sprites. (michi_cc)
2008-06-19(svn r13575) -Codechange: Move small vector to core since it fits better in ↵skidd13
there -Codechange: convert smallvector from struct to class
2008-06-19(svn r13574) -Doc: Document the small vector template classskidd13
2008-06-14(svn r13516) -Codechange: Move MemCpyT to a fitting core headerskidd13
-Codechange: Split the sorting code from the sortlist to an appropriate header
2008-05-30(svn r13342) -Fix: smallvec.h/sortlist_type.h didn't include everything they ↵rubidium
needed.
2008-05-25(svn r13245) -Codechange: Use SmallVectors for generating vehicle lists, ↵peter1138
simplifying calling code somewhat.
2008-05-24(svn r13227) -Codechange: Apply code stylepeter1138
2008-05-08(svn r13016) -Codechange: unify the detection if rail catenary should be drawnsmatz
2008-05-07(svn r12995) -Codechange: use std::vector for EngineList instead of C/C++ ↵smatz
wrapper for CBlobT
2008-05-06(svn r12971) -Documentation: add @file in files that missed them and add ↵rubidium
something more than whitespace as description of files that don't have a description.
2008-04-23(svn r12857) -Fix [FS#1948]: remove the last uses of AutoPtr in the station ↵rubidium
code.
2008-04-16(svn r12740) -Codechange: use a vector instead of allocating memory in a ↵rubidium
byte array for ChildScreenSpriteToDraw.
2008-04-16(svn r12739) -Codechange: use a vector instead of allocating memory in a ↵rubidium
byte array for ParentSpriteToDraw.
2008-04-16(svn r12737) -Codechange: Replace vector with a cut down class to allocate ↵peter1138
space as necessary. This avoids copying data around for vector's push_back() function.
2008-01-18(svn r11914) -Documentation: fix some @file statementglx
2007-12-25(svn r11691) -Codechange: move+rename helpers.hpp and only include it when ↵rubidium
it is really needed.
2007-12-23(svn r11684) -Codechange: split gfx.h in a type and functional header.rubidium
2007-12-18(svn r11661) -Codechange: some header reworks in order to try to reduce the ↵rubidium
compile time of OpenTTD by reduce the amount of circular-ish dependencies.
2007-12-08(svn r11597) -Change: replace all remaining instances of (re|m|c)alloc with ↵rubidium
(Re|M|C)allocT and add a check for out-of-memory situations to the *allocT functions.
2007-08-03(svn r10778) -Fix: one-liners to allow MSVC and WINCE to work together (or ↵truelight
anyway, a step towards that goal) -Fix: put DEBUG lines under WINCE via a function designed for just that under WINCE
2007-07-21(svn r10647) -Fix: AutoPtrT::operator =() didn't delete old objectKUDr
2007-07-21(svn r10646) -Cleanup: AutoPtrT<>::Release() renamed to Detach()KUDr
-better describes what it does -was inconsistent with CCountedPtr<>::Release()
2007-07-21(svn r10645) -Fix (r10644): file contents seems to be 3x thereKUDr
2007-07-20(svn r10644) -Merge (from NoAI): framework for reference counted objects ↵rubidium
(pointers).
2007-07-14(svn r10562) -Fix: most of the MorphOS issues; MorphOS doesn't know about ↵rubidium
wchars, so disable all code that has to use wchars for MorphOS.
2007-07-04(svn r10427) -Fix: snprintf behaves differently in gcc than in VC causing ↵KUDr
unreadable artifacts in output. Now CStrT::AddFormatL() should behave correctly also when compiled by gcc (Rubidium)
2007-06-30(svn r10395) -Fix [YAPF]: missing include + some signed/unsigned comparison ↵KUDr
warnings
2007-06-29(svn r10392) -Add [YAPF]: added structured dump support into some essential ↵KUDr
YAPF classes (node-list, nodes, keys, etc.) and CArrayT
2007-06-29(svn r10391) -Add: debug support - structured dump of ↵KUDr
variables/classes/structures (with anti-recursion repository) into string
2007-06-29(svn r10390) -Fix: constnessKUDr
2007-06-29(svn r10389) -Add: CStrA, CStrCiA, CStrW, CStrCiW - case ↵KUDr
sensitive/insensitive ANSI/UNICODE string classes that support formatted (sprintf like) output.
2007-06-29(svn r10388) -Cleanup: coding style (CBlobT & CBlobBaseSimple), removed CStrAKUDr
2007-04-17(svn r9662) -Documentation: Doxygen corrections and @file omissionsbelugas