[First Page] [Previous Page] [Next Page] [Last Page]
| GIT Hash | Branch | Date | Author | Log Message |
|---|---|---|---|---|
| c1a7ae2c [view] | master | 2026-04-08 19:20:03 +0300 | Alexander Golubev | [tqt] q => tq rebranding: rename qt_* symbols in src/kernel (part 1/2) All the symbols are internal and shouldn't affect API/ABI. The rename was done with next script: grep -horE '\ find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+ Signed-off-by: Alexander Golubev |
| 3d0350b6 [view] | master | 2026-04-08 21:39:49 +0900 | Michele Calgaro | [kvirc] Fix up broken translation that caused FTBFS with cmake Signed-off-by: Michele Calgaro |
| 7c83aad0 [view] | master | 2026-04-08 14:49:41 +0300 | Alexander Golubev | [tqt] q => tq rebranding: rename qt_* symbols mentioned in public headers While most of thees are declaration of internal friend functions which shouldn't break API/ABI, we shouldn't assume that they definitely don't. In particular rename of qt_ucm_query_verification_data() may break plugins' ABI. The rename was done with next script: grep -horE '\ find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+ Signed-off-by: Alexander Golubev |
| dfb256c9 [view] | master | 2026-04-08 08:52:44 +0200 | Slávek Banko | [admin] Add detection for current python 3.14 and upcoming python 3.15. Signed-off-by: Slávek Banko |
| 92acbf1b [view] | master | 2026-04-08 06:13:26 +0300 | Alexander Golubev | [tde-cmake] Document tde_add_library() Signed-off-by: Alexander Golubev |
| f7ab0f18 [view] | master | 2026-04-08 03:59:53 +0300 | Alexander Golubev | [tqt] q => tq rebranding: rename internal qt symbols from private headers All the symbols are internal and shouldn't affect API/ABI. Some symbols are skipped due to being mentioned also in public headers. grep -horE '\ sed 's!.*!s/\\<&\\>/t&/g'! > /tmp/qt-rename.sed find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+ Signed-off-by: Alexander Golubev |
| 1626f794 [view] | master | 2026-04-08 03:37:43 +0300 | Alexander Golubev | [tqt] q => tq rebranding: rename internal symbols used only on mac All the symbols are used only on mac and are internal so they won't affect API/ABI on X11. The rename was done with next script: grep -horE '\ grep -horE '\ find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+ Signed-off-by: Alexander Golubev |
| 8f392ba2 [view] | master | 2026-04-08 03:23:14 +0300 | Alexander Golubev | [tqt] q => tq rebranding: rename qt_gl* symbols Rename mentions of qt_gl* symbols. All the symbols are purely internal and shouldn't affect neither API nor ABI. The rename was done with next script: grep -horE '\ find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+ Signed-off-by: Alexander Golubev |
| 138fec8c [view] | master | 2026-04-08 00:49:07 +0300 | Alexander Golubev | [tdelibs] kcharselect: avoid redrawing if a property unchanged This is a complementary change required for TDE/tdelibs#396. See-also: https://mirror.git.trinitydesktop.org/gitea/TDE/tdelibs/pulls/396#issuecomment-85266 Signed-off-by: Alexander Golubev |
| 0cb22b9e [view] | master | 2026-04-08 00:34:20 +0300 | Alexander Golubev | [tqt] TQGridView: fix incorrect condition in paintEmptyArea() The condition in `paintEmptyArea()` seems to be wrong as it checks whether the `gridSize().width() >= contentsWidth()`, but `gridSize().width()` (which is `ncols * cellw` ) should always be equal to `contentsWidth()` (see e.g. updateGrid() which calls `TQScrollView::resizeContents()`). As the logic goes they seem meant to check whether there is area repainted outside the table, to speed up the process if no empty areas are required to be repainted. In general case the arrangement looks like this: +---------------------------+--------+ | | | | | | | | | | Table | Empty | | +---------+--+ | <-cy | | | | | | | Redrawn | | | | Area | | | +-----------------+---------+ | | <-gridSize().height() | | | | | Empty +------------+ | <-cy+ch | | +------------------------------------+ ^ ^ ^ cx | cx+cw gridSize().width() The `cx`,`cy`,`cw`,`ch` define the area being redrawn and `gridSize()` is coordinates of the bottom right corner of the actual table (since the table always starts at (0,0)). All coordinates are in the content coordinates. Beyond the table there is empty space which is supposed to be blanked by the function. Now since `TQGridView::paintEmptyArea()` supposed to operate outside the main area, i.e. beyond `gridSize().height()`/`gridSize().width()`, the condition is: if we don't clip the area outside of the table (i.e if both `cx+cw<=gridSize().width()` and `cy+ch<=gridSize().height()`) are false we are just returning early since the redrawn area doesn't intersects the empty area. Signed-off-by: Alexander Golubev |
[First Page] [Previous Page] [Next Page] [Last Page]
© 2010-2026 Trinity Desktop Project