Note that you can limit your full-text search to a specific module with the 'module:' keyword. Example: 'module:tdebase <search text>'

[First Page] [Previous Page]  [Next Page] [Last Page]


GIT HashBranchDateAuthorLog Message
0cb22b9e [view]master2026-04-08 00:34:20 +0300Alexander 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
2d93adac [view]master2026-04-06 16:51:16 +0300Alexander Golubev[tqt] q => tq rebranding: rename mentiones of qt_{win,windows,mac}
Rename mentions of qt_{win,mac}.pri and of qt_{windows,mac}.h for
consistency with current naming schema. We don't provide the files, so
no functional changes here.
The rename was done with next script:
find * -type f -exec sed -ri 's!\!t&!g' '{}' \+
Signed-off-by: Alexander Golubev
5fa57dcc [view]master2026-04-06 16:24:25 +0300Alexander Golubev[tqt] tqapplication_x11: fix -Wnonnull warnings
This replaces make-shift abort point which were resulting in SIGSEGV
with tqFatal() calls.
Closes: https://mirror.git.trinitydesktop.org/gitea/TDE/tqt/issues/275
Signed-off-by: Alexander Golubev
3822fd42 [view]master2026-04-04 18:29:30 +0000TDE Weblate[tde-i18n] Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: tdebase/kcmbackground
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdebase/kcmbackground/
0ff4a9d6 [view]master2026-04-04 18:26:15 +0000Automated System[tde-i18n] Update translation template.
b56a55bf [view]master2026-04-04 20:06:51 +0300Philippe Mavridis[tdelibs] KCharSelect widget: add scrollbar
Signed-off-by: Philippe Mavridis
41516cae [view]master2026-04-04 18:22:41 +0300Alexander Golubev[tqt] q => tq rebranding: rename internal qt_ symbols from tqapplication*
Rename all functions and variables found in src/kernel/tqapplication*
files which were still started with qt_ to tqt_.
The rename was done with next script:
grep -horE '\ sed 's!.*!s/\\<&\\>/t&/g'! > /tmp/qt-rename.sed
find * -type f -exec sed -i -f /tmp/qt-rename.sed '{}' \+
with some minor manual tweaks afterwards.
Besides that {qt_qt_ => tqt_}scrolldone was renamed.
All those are purely internal symbols and shouldn't affect neither API
nor ABI. Those that are declared in tqapplication.h and tqwidget.h
are private variables and supposed to be used only on MacOS.
Signed-off-by: Alexander Golubev
Signed-off-by: Alexander Golubev
7e11f563 [view]master2026-04-03 23:55:07 +0000Alexander Golubev[tde-i18n] Translated using Weblate (Russian)
Currently translated at 100.0% (1428 of 1428 strings)
Translation: tdepim/korganizer
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/tdepim/korganizer/ru/
37164f98 [view]master2026-04-03 22:22:00 +0300Alexander Golubev[tqt] Remove unused files: qwindow.{h,cpp}
Signed-off-by: Alexander Golubev
0e2d08a0 [view]master2026-04-03 22:07:01 +0300Alexander Golubev[tqt] q => tq rebranding: rename qdnd_x11.cpp
Also fix a couple of comments that were referring to it by its older
name: qt_xdnd.cpp.
Signed-off-by: Alexander Golubev

List generated Sun May 24 15:20:12 2026
Currently showing patches 171 to 180 of 56512 [View All on Single Page]
Note that you can limit your full-text search to a specific module with the 'module:' keyword. Example: 'module:tdebase <search text>'

[First Page] [Previous Page]  [Next Page] [Last Page]