Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-08-24 | Object::toString() free responsibility to caller | Rodrigo Arias Mallo | |
It already was the caller responsibility, but it was documented as not being so, with a todo comment. Until other implementation is provided, this was leaking memory. No need to keep the const. | |||
2025-05-10 | Don't use assert to check if realloc() failed | Rodrigo Arias Mallo | |
Avoid using assert as when building with NDEBUG defined they become a no-operation so the realloc is never done. Always perform the check and exit accordingly. | |||
2025-02-05 | Fix several typos | Gevel Tekens | |
See: https://lists.mailman3.com/hyperkitty/list/dillo-dev@mailman3.com/thread/L3FFAINJJMIOZQNID5HC2DHKJIIIHEYH/ | |||
2024-10-17 | Remove unused NotSoSimpleVector constructor | Rodrigo Arias Mallo | |
Fixes: https://github.com/dillo-browser/dillo/issues/281 See: https://bugs.gentoo.org/939137 | |||
2024-08-07 | Avoid C++11 default keyword | Rodrigo Arias Mallo | |
While we still require C++11 for the macros, there is no need to add another dependency for this case. Reported-by: dogma | |||
2024-08-07 | Remove unused init() function | Rodrigo Arias Mallo | |
2024-08-07 | Use dStrdup instead of strdup | Rodrigo Arias Mallo | |
The strdup function is not available in POSIX-2001, so we use our own implementation in dlib: dStrdup. Reviewed-by: dogma | |||
2024-07-04 | Fix ASan new-delete-type-mismatch error | Rodrigo Arias Mallo | |
With the adreess sanitizer enabled there was an error: AddressSanitizer: new-delete-type-mismatch Caused by a size mismatch in the delete operator as the called destructor was the incorrect one. | |||
2023-12-11 | Fix distcheck target | Rodrigo Arias Mallo | |
2016-07-12 | cppcheck: Fix realloc mistake (3 times). | Jorge Arellano Cid | |
realloc may fail and return NULL, in that case the array contents were lost. Dillo would exit a couple of lines later anyway, but it's better to exit in a clean way. | |||
2016-05-08 | RTFL. | Sebastian Geerken | |
2016-04-23 | RTFL. | Sebastian Geerken | |
2016-01-23 | SRDOP: Debugging. | Sebastian Geerken | |
2016-01-09 | Better abort messages. | Sebastian Geerken | |
2015-06-03 | Merge with main repo. | Sebastian Geerken | |
2015-05-29 | _MSG_ERR unused, unneeded, because it doesn't make much sense | corvid | |
2015-05-24 | SRDOP: position is now correctly calculated. | Sebastian Geerken | |
2015-05-10 | Merge with main repo. | Sebastian Geerken | |
2015-04-04 | Fix references to namespaces with simple names. | Jeremy Henty | |
Doxygen's autolinking does not work for objects that contain just one "::" at the front of the name. The fix is to remove the "::" and add an explicit "\ref" command. This fixes some doxygen warnings: "warning: explicit link request to 'foo' could not be resolved". | |||
2015-04-04 | Escape "::" strings. | Jeremy Henty | |
The "::" string has a special meaning for doxygen; it is a reference to a documented entity so it must be escaped when the string itself is wanted. The doxygen command "\::" writes a "::" to the output. This fixes a doxygen warning of the form "warning: explicit link request to 'foo' could not be resolved". | |||
2015-02-04 | Updated 'debug_rtfl.hh'. | Sebastian Geerken | |
2015-01-31 | Merge with main repo. | Sebastian Geerken | |
2015-01-28 | Some RTFL. | Sebastian Geerken | |
2015-01-27 | Some debugging code. | Sebastian Geerken | |
2015-01-08 | Merge with main repo. | Sebastian Geerken | |
2015-01-06 | Fixed speed problem of tables rendering. | Sebastian Geerken | |
2014-12-26 | Minor changes (no actual code). | Sebastian Geerken | |
2014-12-21 | Merge with main repo. | Sebastian Geerken | |
2014-12-21 | more (and indentation in one spot) | corvid | |
2014-12-08 | Merged with main repo (part 1b/2). | Sebastian Geerken | |
2014-12-08 | Merged with main repo (part 1/2). | Sebastian Geerken | |
2014-12-02 | Some RTFL. | Sebastian Geerken | |
2014-11-18 | Merge with main repo. | Sebastian Geerken | |
2014-11-14 | Fixed bug in (unused) Vector<T>::insertSorted(). | Sebastian Geerken | |
2014-11-08 | Merge with main repo. | Sebastian Geerken | |
2014-11-05 | Updated RTFL macros (fix). | Sebastian Geerken | |
2014-11-05 | Updated RTFL macros. | Sebastian Geerken | |
2014-10-27 | Some smaller changes in lout (backport from RTFL). | Sebastian Geerken | |
2014-09-26 | RTFL. | Sebastian Geerken | |
2014-09-24 | DBG_OBJ_COLOR: order of arguments. | Sebastian Geerken | |
2014-08-10 | Optimized usage of Layout::queueQueueResizeList. | Sebastian Geerken | |
2014-08-10 | trim spaces | corvid | |
...now that floats and grows are in the repo and I won't be making Sebastian's life difficult with a bunch of whitespace changes. | |||
2014-07-20 | Another change in table column apportion scheme: specified widths. | corvid, Sebastian Geerken | |
2014-07-19 | Merge with main repo. | corvid, Sebastian Geerken | |
2014-07-19 | Fixed compiler warning. | corvid, Sebastian Geerken | |
2014-07-07 | RTFL. | Sebastian Geerken | |
2014-07-05 | Applied new RTFL macros (ENTER, LEAVE) to outofflowmgr.cc. | Sebastian Geerken | |
2014-07-04 | More RTFL macros. | Sebastian Geerken | |
2014-06-19 | Fixed compile error (without RTFL). | Sebastian Geerken | |
2014-06-19 | Fixed table bug. | Sebastian Geerken | |