| Summary: | PATCH: 1-liner bug in kcontrol/konsole/sessioneditor.cpp | ||
|---|---|---|---|
| Product: | [Applications] konsole | Reporter: | Kurt Hindenburg <khindenburg> |
| Component: | general | Assignee: | Konsole Bugs <konsole-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
Thanks, applied. |
Version: (using KDE Devel) Installed from: Compiled sources Without this fix, you can't change/save Keytabs in the Session Editor. Index: sessioneditor.cpp =================================================================== RCS file: /home/kde/kdebase/kcontrol/konsole/sessioneditor.cpp,v retrieving revision 1.22 diff -u -3 -p -r1.22 sessioneditor.cpp --- sessioneditor.cpp 6 Apr 2004 22:41:29 -0000 1.22 +++ sessioneditor.cpp 25 Apr 2004 17:01:29 -0000 @@ -106,7 +106,7 @@ void SessionEditor::loadAllKeytab() QString title = readKeymapTitle(name); name = name.section('/',-1); - name = name.section('.',1); + name = name.section('.',0); keytabFilename.append(new QString(name)); if (title.isNull() || title.isEmpty())