Tru64 patch

svn path=/trunk/kdebase/konsole/; revision=63109
wilder-portage
Lars Doelle 26 years ago
parent fd24d193ad
commit 7a54e58472
  1. 5
      src/TEHistory.C
  2. 2
      src/TEPty.C
  3. 1
      src/TEmulation.C
  4. 4
      src/konsole.C

@ -39,6 +39,11 @@ FIXME: some complain about the history buffer comsuming the
since the history does not behave gracefully in cases
where the memory is used up completely. I have some
problems to reproduce this event in my installation.
FIXME: There is noticable decrease in speed, also. Perhaps,
there whole feature needs to be revisited therefore.
Disadvantage of a more elaborated say block-oriented
scheme with wrap around would be it's complexity.
*/

@ -100,10 +100,12 @@ extern "C" {
#include <signal.h>
#if !defined(__osf__)
#ifdef HAVE_TERMIO_H
/* needed at least on AIX */
#include <termio.h>
#endif
#endif
#ifdef HAVE_TERMIOS_H
/* for HP-UX (some versions) the extern C is needed, and for other
platforms it doesn't hurt */

@ -61,7 +61,6 @@
/* FIXME
- evtl. the bulk operations could be made more transparent.
- evtl. shrink the history buffer after no keystrokes happend for a while.
*/
#include "TEmulation.h"

@ -470,9 +470,9 @@ void Konsole::saveProperties(KConfig* config)
if (args.count() > 0) config->writeEntry("konsolearguments", args);
config->writeEntry("class",name());
config->writeEntry("defaultheight", te->height());
config->writeEntry("defaultheight", height());
// for "save options". Not used by SM.
config->writeEntry("defaultwidth", te->width());
config->writeEntry("defaultwidth", width());
// for "save options". Not used by SM.
//config->writeEntry("kmenubar", //FIXME:Float
// menubar->menuBarPos() == KMenuBar::Bottom ? "bottom" : "top");

Loading…
Cancel
Save