aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects
Commit message (Collapse)AuthorAgeFilesLines
* Painter object fixes; fix #2494 (#2728)Gravatar ctrlaltca2025-11-101-124/+110
|
* Fix error handling of QSslSocket (#2718)Gravatar ctrlaltca2025-10-103-5/+5
|
* Adapt to Qt 6.9 deprecations (#2706)Gravatar ctrlaltca2025-07-173-0/+31
| | | | | | | * Adapt to Qt 6.9 deprecations * Windows 2019 images are no more available no github, switch to 2022 * Wordaround Qt5 missing QTimezone::UTC
* Include debian patches (#2639)Gravatar ctrlaltca2024-05-091-1/+1
| | | | | | | | | * enable optimisation with debug; credits to wRAR * Switch RFC2812 links from internal to external. Credits to wRAR * admin/gendoc.pl: Ease the creation of reproducible builds by removing user and timestamp from generated documentation. Credits to Vagrant Cascadian * Remove patches from dist/debian
* More qt6 porting (#2622)Gravatar ctrlaltca2024-03-2410-20/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Port QColor::setNamedColor to QColor::fromString * Port from QVariant::Type to QmetaType::Type * KviCoreActions: port from QAction::parentWidget to qobject_cast + QAction::parent * KviIrcView: port QString::fromUtf16 usage to the non-obsolete char16_t* overload * KviTopicWidget: port QMouseEvent to a non-obsolete overload * Port QMouseEvent from old pos(), x(), y(), to position() * Port obsolete QMessageBox usage to custom buttons * KviApplication: initialize the dbus notify message "replace ID" to 0 * KviIrcConnection: port deprecated QString::count() to QString::size() * KvsObject_*: port QColor::setNamedColor to QColor::fromString * KvsObject_widget: port QWidget::isTopLevel to QWidget::isWindow * KviMainWindow: use QKeyCombination instead of int for shortcuts * QHttp: avoid deprecated methods for QCryptographicHash * ScriptEditorWidget: use the new signature for QMenu::addAction() * KviInputEditor: Extract ACCEL_KEY from header and avoid warning * KviStringConversion: convert old Qt5 font weights to new "css" font weights * syntax fix
* Misc Qt6 port for slightly changed class names and method signaturesGravatar Fabio Bas2023-10-187-15/+30
|
* Port from QRegExp (unavailable on qt6) to KviRegExp, based on QRegularExpressionGravatar Fabio Bas2023-10-182-6/+8
| | | | Method str_kvs_fnc_split() had to be replaced with the original version, since the newer one relied on Qt5's QStringRef
* Qt6 is stricter when casting numericals and chars. Add an explicit ↵Gravatar Fabio Bas2023-10-181-3/+3
| | | | | | cast/conversion to better digest them cast
* Port QDateTime::toTime_t() to toSecsSinceEpoch(); it's a quint64, but it ↵Gravatar Fabio Bas2023-10-181-1/+1
| | | | should cast to time_t safely until year 2106
* Mass rename of margin -> contentsMarginsGravatar Fabio Bas2023-10-184-4/+4
|
* Rename COMPILE_WEBKIT_SUPPORT to COMPILE_WEBENGINE_SUPPORTGravatar Fabio Bas2023-10-184-12/+12
|
* Replace WtWbKit with QtWebEngine (#2554)Gravatar ctrlaltca2023-09-193-866/+268
|
* Port to (and require) Qt 5.15. Drop KDE4 support, fix KDE5 (#2541)Gravatar ctrlaltca2023-07-085-20/+17
| | | | | | * Port to (and require) Qt 5.15. Drop KDE4 support, implement KDE5 support where needed. --------- Co-authored-by: Fabio Bas <fabio.bas@officineinformatiche.net>
* Convert 0s and NULLs to nullptrGravatar IceN9ne2018-12-034-6/+6
|
* Use override where possible and remove unnecessary usages of the virtual ↵Gravatar IceN9ne2018-11-2837-53/+53
| | | | keyword.
* Remove unnecessary usages of the inline keyword per language evolution.Gravatar IceN9ne2018-11-281-1/+1
|
* Remove Q_UNUSED macrosGravatar IceN9ne2018-11-289-24/+3
|
* Fix compiler warnings in the code.Gravatar IceN9ne2018-11-272-2/+2
|
* Apply all modernize-* fixes from clang-tidy except for modernize-use-autoGravatar Alexey Sokolov2018-11-148-40/+54
|
* List object updates; fix #2384Gravatar Fabio Bas2018-08-191-1/+24
| | | | | * fix a crash in $eof(); * add a boolean "reverse" parameter to $sort
* Remove usages of Q_FOREACH. Fixes #2385Gravatar IceN9ne2018-05-221-11/+6
|
* Fix undefined behavior involving lifetime of temporariesGravatar IceN9ne2018-04-221-6/+6
|
* Remove unused/useless codeGravatar IceN9ne2018-04-221-1/+0
|
* Fix Coverity complaints about uninitialized member variablesGravatar IceN9ne2018-04-144-14/+14
|
* General code cleanup and coverity fixes - mostly fixes uninitialized membersGravatar IceN9ne2017-10-212-8/+6
|
* Fix typo in manual & bug in alias (#2311)Gravatar minduser002017-09-281-4/+4
| | | | | | | | | | * fix typo in manual The function 'objects.clearObjects' is called in the manual as 'objects.clear' * fix for bug in alias 'clearobjects' The function 'objects.clearObjects' was called in the alias clearobjects as 'objects.clear'
* small typo (#2305)Gravatar minduser002017-09-101-1/+1
| | | Stray space in parameter "No Focus" must be "NoFocus".
* Fix wrapping of <pre> in the docs.Gravatar wodim2017-08-3110-123/+123
| | | | Fixes #2288
* Remove lots of redundant line feeds around block elements in the docs.Gravatar wodim2017-08-253-12/+12
|
* push and pull po{t}s, typo fixesGravatar Dessa2017-05-242-2/+2
|
* Miscellaneous documentation fixesGravatar OmegaPhil2017-02-231-0/+2
|
* Fixes unintentional hiding of local variable in nested scopeGravatar IceN9ne2017-02-021-1/+1
|
* Fix #2077Gravatar Fabio Bas2017-01-282-1/+38
|
* KvsObject_widget: Add additional size functionsGravatar IceN9ne2016-11-302-0/+106
|
* KvsObject_painter: Fix potential memory leak in class function penGravatar IceN9ne2016-11-061-9/+7
|
* KvsObject_pixmap: Fix potential memory leak in class function pixelGravatar IceN9ne2016-11-061-9/+7
|
* Cleanup included filesGravatar IceN9ne2016-10-284-4/+4
|
* KvsObjectLayout: Use correct macroGravatar staticfox2016-08-151-2/+2
|
* remove unused variablesGravatar un1versal2016-08-071-2/+0
| | | | | | @AndrioCelos is that it?
* Textbrowser : fix loading HTML files on WindowsGravatar un1versal2016-08-071-1/+1
| | | | fixes #2076
* documentation: typos + formatting fixesGravatar un1versal2016-08-013-14/+13
|
* documentaion: formatting fixesGravatar un1versal2016-07-272-5/+5
|
* KvsObject_groupBox: must add a hashtag else it wont fly as a real commentGravatar un1versal2016-07-211-3/+4
|
* KvsObject_groupBox.cpp: Fix documentation commentsGravatar un1versal2016-07-211-3/+6
|
* separators and copyright headers cleanupsGravatar un1versal2016-06-143-3/+0
| | | | | | + add copyright boilerplate to KviDebugContext.cpp probably more source files exist with no copyright boilerplate. this was a by chance find.
* source: cosmetic cleanupsGravatar un1versal2016-06-131-4/+0
|
* Expand the multilineedit class. Resolves kvirc/KVIrc#1985. (#1987)Gravatar Andrio Celos2016-05-242-16/+114
|
* wheeeeeeeeeeGravatar staticfox2016-05-223-8/+8
|
* various cosmetic: consistent comment formatGravatar un1versal2016-05-174-5/+0
| | | | + remove separators to make it consistent.
* Various fixesGravatar un1versal2016-05-151-1/+1
|