David Faure
636400a949
Allow to follow a file, by cd'ing to its directory.
...
Patch discussed on kfm-devel.
svn path=/trunk/kdebase/konsole/; revision=66926
26 years ago
Script Kiddy
94d6704e44
CVS_SILENT made messages
...
svn path=/trunk/kdebase/konsole/; revision=66420
26 years ago
Waldo Bastian
f953901329
Fix order to prevent errors during relink at make install time.
...
Patch by Reza Arbab <arbab@austin.ibm.com>
svn path=/trunk/kdebase/konsole/; revision=66385
26 years ago
Waldo Bastian
794ceab1a0
Fixes: double click on a word in konsole and drag to select the following
...
words.
Patch by Martin Jones <mjones@trolltech.com>
svn path=/trunk/kdebase/konsole/; revision=66316
26 years ago
Waldo Bastian
7efb4cb879
Patch for AIX by Reza Arbab <arbab@austin.ibm.com>
...
svn path=/trunk/kdebase/konsole/; revision=66299
26 years ago
Andreas Zehender
5a18857b42
Do NOT use the same popup menu for the application menu and the
...
toolbar. Allready fixed in version 1.43 but was broken later again.
svn path=/trunk/kdebase/konsole/; revision=65652
26 years ago
Dirk Mueller
f60181c339
Insure++: unused variable. In this case it seems to be a bug.
...
Lars, are you listening?
svn path=/trunk/kdebase/konsole/; revision=65626
26 years ago
Lars Doelle
5296cfb70f
fixes to *.keytab (Shift-left/right)
...
applied patch of Waldo related to marking.
svn path=/trunk/kdebase/konsole/; revision=65484
26 years ago
Stephan Kulow
259c1b505f
removing comment about Solaris x86
...
svn path=/trunk/kdebase/konsole/; revision=65476
26 years ago
Stephan Kulow
b9ba7a1e02
-defined(SVR4) || defined(__SVR4)) && (defined(i386) || defined(__i386__)
...
+defined(__svr4__)
Now it works under sparc too and doesn't look that bizare
svn path=/trunk/kdebase/konsole/; revision=65460
26 years ago
Waldo Bastian
06b63b9d74
Fix for OpenBSD by Marc Espie <espie@schutzenberger.liafa.jussieu.fr>
...
svn path=/trunk/kdebase/konsole/; revision=65394
26 years ago
Werner Trobin
75afb6eab2
Sorted the files to make --enable-final work
...
svn path=/trunk/kdebase/konsole/; revision=65389
26 years ago
Stephan Kulow
cbeeb2e47a
on Sun #definining _XOPEN_SOURCE breaks more than it helps as all the header
...
files use some strange combination of features, but somehow it all breaks if
you only define one. So I applied the following patch and everything compiles
again
-#if defined(HAVE_GRANTPT) && defined(HAVE_PTSNAME) && defined(HAVE_UNLOCKPT) && !defined(_XOPEN_SOURCE)
+#if defined(HAVE_GRANTPT) && defined(HAVE_PTSNAME) && defined(HAVE_UNLOCKPT) && !defined(_XOPEN_SOURCE) && !defined(__sun__)
svn path=/trunk/kdebase/konsole/; revision=65384
26 years ago
Lars Doelle
a7fd086676
adjustment to Tru64.
...
svn path=/trunk/kdebase/konsole/; revision=65147
26 years ago
Lars Doelle
e9a13230dc
added list of platform experts
...
svn path=/trunk/kdebase/konsole/; revision=65146
26 years ago
Michael Matz
f228fcfcf5
#define _BSD_SOURCE for NSIG (on glibc)
...
svn path=/trunk/kdebase/konsole/; revision=65120
26 years ago
Michael Matz
d940c07848
grantpt() and friends are XOPEN functionality, so:
...
-#if defined(HAVE_GRANTPT) && defined(HAVE_PTSNAME) && defined(HAVE_UNLOCKPT) && !defined(_GNU_SOURCE)
-#define _GNU_SOURCE // make stdlib.h offer the above fcts
+#if defined(HAVE_GRANTPT) && defined(HAVE_PTSNAME) && defined(HAVE_UNLOCKPT) && !defined(_XOPEN_SOURCE)
+#define _XOPEN_SOURCE // make stdlib.h offer the above fcts
This prevents the random() clash from config.h (which I'm going to remove anyway)
svn path=/trunk/kdebase/konsole/; revision=65092
26 years ago
Lars Doelle
7553c7e626
fixed #if / #ifdef problem
...
svn path=/trunk/kdebase/konsole/; revision=64990
26 years ago
David Faure
5ec2b88d85
Fixed drop of an icon + choosing "cd", for directories.
...
svn path=/trunk/kdebase/konsole/; revision=64876
26 years ago
Michael Matz
f345443d13
Don't set a group in saveProperties, when readProperties doesn't do so.
...
This fixes the saving of settings (like schemas...) for session managment.
(for normal save options it's set explicitely)
@@ -468,7 +468,6 @@
void Konsole::saveProperties(KConfig* config)
{
n_toolbarheight = toolBar()->size().height();
- config->setGroup("options");
// bad! will no allow us to support multi windows
svn path=/trunk/kdebase/konsole/; revision=64586
26 years ago
Lars Doelle
c0cce28724
cleanup and blurbs
...
svn path=/trunk/kdebase/konsole/; revision=64559
26 years ago
Lars Doelle
27d30eb361
renamed file to prevent undesired behavior
...
svn path=/trunk/kdebase/konsole/; revision=64554
26 years ago
Lars Doelle
679650e6e5
added some documentation bits
...
svn path=/trunk/kdebase/konsole/; revision=64543
26 years ago
Lars Doelle
8ea7f9e6a1
Hacked a little on grantpt and deactivated a Linux specific replacement of it.
...
svn path=/trunk/kdebase/konsole/; revision=64542
26 years ago
Lars Doelle
ac4fdbb8f4
added UNIX Pty used on Tru64 and Solaris, too.
...
svn path=/trunk/kdebase/konsole/; revision=64526
26 years ago
Lars Doelle
af69a39312
made resizing more content preservative
...
svn path=/trunk/kdebase/konsole/; revision=64482
26 years ago
Waldo Bastian
977e4eb764
WABA: Memory leaks & main window settings
...
svn path=/trunk/kdebase/konsole/; revision=64287
26 years ago
Antonio Larrosa Jimenez
a75b3f078f
Added back support for creating new sessions with a single click.
...
Patch approved by Lars.
Btw, the new files should include a license. Lars, can you add
whatever license header you're using for the rest of konsole ?
svn path=/trunk/kdebase/konsole/; revision=64276
26 years ago
Lars Doelle
1273abf298
removed some files in favor of aboutData
...
svn path=/trunk/kdebase/konsole/; revision=64234
26 years ago
Lars Doelle
c4dcf0b8f0
file moved
...
svn path=/trunk/kdebase/konsole/; revision=64192
26 years ago
Waldo Bastian
e826debe3a
WABA: Use KProcess to start shellprocess.
...
This fixes a problem with signals when konsole is embedded in konqueror.
svn path=/trunk/kdebase/konsole/; revision=64108
26 years ago
Waldo Bastian
dd26f93db0
WABA: misc. cleanup
...
svn path=/trunk/kdebase/konsole/; revision=64030
26 years ago
David Faure
230cfd7108
Fixed a memory leak (image was malloc'ed and not freed) and fixed
...
a delete mismatch (missing [])
svn path=/trunk/kdebase/konsole/; revision=63993
26 years ago
Waldo Bastian
7c2900866c
s^QPopupMenu^KPopupMenu
...
some minor memory fixes.
svn path=/trunk/kdebase/konsole/; revision=63922
26 years ago
David Faure
e7afd06758
Committing the patch I sent to kde-devel. Fixes memory leaks, and an UMR.
...
svn path=/trunk/kdebase/konsole/; revision=63866
26 years ago
Lars Doelle
e96c873bee
fixed typo
...
svn path=/trunk/kdebase/konsole/; revision=63478
26 years ago
Lars Doelle
ae8782dae1
improved scrolling speed.
...
svn path=/trunk/kdebase/konsole/; revision=63468
26 years ago
Lars Doelle
7466232e8f
replaced ansi graphics with proper pictures.
...
svn path=/trunk/kdebase/konsole/; revision=63421
26 years ago
Lars Doelle
a6479fee3f
*.keytab not sending \0 fixed.
...
blurb added to Requierements.
svn path=/trunk/kdebase/konsole/; revision=63411
26 years ago
Rik Hemsley
3e794d2a22
Adding MapNotify=true to all that need it
...
svn path=/trunk/kdebase/konsole/; revision=63289
26 years ago
Lars Doelle
df9f848828
applied patch
...
svn path=/trunk/kdebase/konsole/; revision=63247
26 years ago
Lars Doelle
96b24604a4
more blurb
...
svn path=/trunk/kdebase/konsole/; revision=63243
26 years ago
Lars Doelle
209677deda
blurb
...
svn path=/trunk/kdebase/konsole/; revision=63241
26 years ago
Lars Doelle
184082eb69
some cleanup of blurb files.
...
restricted license to GPL v2-only
svn path=/trunk/kdebase/konsole/; revision=63239
26 years ago
Lars Doelle
ca42a46089
Installed workaround for history related crash.
...
The whole history stuff is not satisfying both
from a programmers and a users point of view.
The central reason is that the history slows down
scrolling significantly, and the algorithm does
not permit limiting the history size.
There are minor flaws also related to indication
of history termination in case of disk overrun.
I schedule a rework of the history stuff to
konsole2.
svn path=/trunk/kdebase/konsole/; revision=63157
26 years ago
Lars Doelle
7a54e58472
Tru64 patch
...
svn path=/trunk/kdebase/konsole/; revision=63109
26 years ago
Waldo Bastian
fd24d193ad
Fixing -e.
...
svn path=/trunk/kdebase/konsole/; revision=63072
26 years ago
Lars Doelle
768a99c0ec
minor adjustments
...
svn path=/trunk/kdebase/konsole/; revision=63033
26 years ago
Lars Doelle
9622f80e9a
"Fonts"->"Font"
...
svn path=/trunk/kdebase/konsole/; revision=62899
26 years ago
Lars Doelle
f635a08c4a
(partially) fixed cut&paste problem.
...
svn path=/trunk/kdebase/konsole/; revision=62776
26 years ago