l10n daemon script
8858ba30b4
SVN_SILENT made messages (after extraction)
10 years ago
Albert Astals Cid
a53c950f29
GIT_SILENT Upgrade KDE Applications version to 15.11.90.
10 years ago
Albert Astals Cid
740675243c
Call KLocalizedString::setApplicationDomain("konsole");
...
konsole is using
-DTRANSLATION_DOMAIN=\"konsole\"
that is wrong for applications, apps need to use
KLocalizedString::setApplicationDomain
since that is needed for some things like the transltators tab in the about
dialog.
I have not removed -DTRANSLATION_DOMAIN=\"konsole\" because on the other hand
this code is also a library (i.e. the konsole kpart).
The "being pedanticly correct" fix would be using -DTRANSLATION_DOMAIN=\"konsole\"
only to compile the files that are part of the kpart but that's prone to
break at some point and using both KLocalizedString::setApplicationDomain and
-DTRANSLATION_DOMAIN does not create any problem so i went that route
CCMAIL: konsole-devel@kde.org
10 years ago
Albert Astals Cid
126f3edfed
GIT_SILENT Upgrade KDE Applications version to 15.11.80.
10 years ago
l10n daemon script
7fd931601e
SVN_SILENT made messages (after extraction)
11 years ago
l10n daemon script
4cbb5adced
SVN_SILENT made messages (after extraction)
11 years ago
l10n daemon script
2f8f73b3d3
SVN_SILENT made messages (after extraction)
11 years ago
Kurt Hindenburg
cab41067ad
Use QStringLiteral, QLatin1String and QString
11 years ago
Kurt Hindenburg
296cfc4233
remove unneeded #includes and forward classes
11 years ago
Kurt Hindenburg
70818f8c47
.arg() needs QStringLiteral
11 years ago
Kurt Hindenburg
5085c4fc45
Use QStringLiteral and QLatin1String
11 years ago
Kurt Hindenburg
bdee35bf38
Use QStringLiteral and QLatin1String
11 years ago
Kurt Hindenburg
51267a67ba
Use QStringLiteral and QLatin1String
11 years ago
Kurt Hindenburg
145310d896
Use QStringLiteral and QLatin1String
11 years ago
Kurt Hindenburg
f9b0d40fb1
Use QStringLiteral()
11 years ago
Kurt Hindenburg
dc5ba8c695
add QList::reserve()
11 years ago
Kurt Hindenburg
65a151e035
simplify determining empty string
11 years ago
Kurt Hindenburg
c5d6b82e08
minor reduce variable scope
11 years ago
Kurt Hindenburg
daa7d02363
Disable copy/assignment constructors
11 years ago
Kurt Hindenburg
c5909f5819
Disable copy/assignment constructors
11 years ago
Kurt Hindenburg
4c54de5f87
Add tests for ColorEntry() class
11 years ago
Kurt Hindenburg
3b7402324b
Instead of using invalid color, set ColorEntry() color to black.
11 years ago
Kurt Hindenburg
0fdc52b222
Use QFlags:: for Field enum
11 years ago
Kurt Hindenburg
6ea46d0b04
remove unused variable
11 years ago
Kurt Hindenburg
6d39aa019b
add session.count() to qWarning
11 years ago
Kurt Hindenburg
3dc1b5a72d
Seperate tests into one w/o a shell running
...
currentWorkingDirectory() is in kde_terminal_interface now
11 years ago
Kurt Hindenburg
c5bb937988
Make currentWorkingDirectory() override kde_terminal_interface
...
Also remove virtual keywords from Q_DECL_OVERRIDE
11 years ago
Christoph Cullmann
7c00486f99
like all frameworks => only output warnings per default
11 years ago
Kurt Hindenburg
ceebde3b4a
Add TerminalInterfaceTest to autotests
11 years ago
Kurt Hindenburg
04a5749717
Switch to use foreach() w/ QActions
11 years ago
Kurt Hindenburg
8e13deabb4
Remove the last residues of Shell.profile
11 years ago
Kurt Hindenburg
48ae849c8c
Use QStringLiteral and QList::reserve()
11 years ago
Kurt Hindenburg
1893ee5ad0
Remove old KDE3 code
...
This includes reading the old color .schema files
11 years ago
Kurt Hindenburg
0bca1e15b5
Add sequence for FocusGained and FocusLost
...
<esc>\[O Focus gained send
<esc>\[I Focus lost send
<esc>\[?1004h Enable focus reporting recv
<esc>\[?1004l Disable focus reporting recv
Patch by Gerhard Gappmeier gerhard gappmeier ascolab com
REVIEW: 124898
11 years ago
Kurt Hindenburg
fd4db003af
Mark tests as ecm_mark_nongui_executable to allow running on MacOSX
11 years ago
Kurt Hindenburg
9076c3af47
Implement xterm's background color request/reply
...
vim uses control sequence 'echo -e "\033]11;?\a"' to request real
background color -- to detect whether terminal has dark or light
background.
Thanks to Pavel Raiskup praiskup redhat com
REVIEW: 125333
BUG: 352945
FIXED-IN: 15.12
11 years ago
Albert Astals Cid
16b3919ff8
Fix heap-use-after-free in Part destructor
...
Tear down the ViewManager on the Part destructor instead of letting Qt destroy the child objects itself.
This way we control the sequence more and make sure we don't end up using memory that was already deleted. Fixes the ASAN detected problem in https://build.kde.org/job/konsole%20Applications-15.08%20stable-kf5-qt5/PLATFORM=Linux,compiler=gcc/12/testReport/%28root%29/TestSuite/PartTest/
Neither ASAN nor valgrind complain anymore when running PartTest.
REVIEW: 125366
(cherry picked from commit ace53ef482c621b375eea2d9b38eda6b11b69873)
11 years ago
Kurt Hindenburg
05d2328d67
Remove some KDE4 usage in comments
11 years ago
Kurt Hindenburg
7ae2140235
s/KShortcut/QKeySequence - commented out code ATM
11 years ago
Kurt Hindenburg
4885ca763e
s/KAction/QAction - commented out code ATM
11 years ago
Kurt Hindenburg
90dfa7240a
Add const &
11 years ago
Kurt Hindenburg
b6ccb539bf
Convert to new Qt5 Signal/Slot syntax
11 years ago
Kurt Hindenburg
6d9ecac20b
Apparently when I moved the tests to autotests I didn't use 'git mv'
...
Remove unused files in tests/
11 years ago
Kurt Hindenburg
ff66b231bf
Remove unneeded includes
11 years ago
Kurt Hindenburg
917d932f46
Add const and &
11 years ago
Kurt Hindenburg
104f3dd1ef
Remove unused function qHash
11 years ago
Kurt Hindenburg
2c0013cc84
Use QList::reserve()
11 years ago
Kurt Hindenburg
c0c147e03d
Allow profiles to be deleted if user has permissions
...
The logic behind this was flawed and never worked as expected.
11 years ago
Kurt Hindenburg
f316dc77f6
s/reset/beginResetModel endResetModel/
...
Qt5 port away from QAbstractItemModel::reset() to
QAbstractItemModel::(begin|end)ResetModel()
11 years ago
Kurt Hindenburg
b8b1600947
Simplify saving of new/changed profiles.
...
All new and changed profiles are saved under user's local location.
Since Konsole now no longers ships w/ any profiles there should be less
confusion and issues.
11 years ago