[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-core-devel
Subject:    Re: Bug#39665: marked as done (Word warp only works between 60 and 80 chars pr line) by Marc Mutz <m
From:       Marc Mutz <Marc.Mutz () uni-bielefeld ! de>
Date:       2002-03-22 23:24:45
[Download RAW message or body]

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Friday 22 March 2002 22:07, Ingo Klöcker wrote:
<snip>
> >   name="filter.patch"
> This seems to be the wrong patch. ;-)
<snip>

Grmbl. Try this one.

BTW: This is a completion bug in the file dialog. Use popup completion, type 
something, select not the first suggestion with Key_Down and directly hit 
return -> the first suggestion seems to be used.

Can anyone confirm this who runs kdelibs that is not a day old? ;-)

Marc

- -- 
Marc Mutz <mutz@kde.org>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8m7093oWD+L2/6DgRAo0LAKDQ4pAlu0vtLfEHG3oLIz+8V51XkwCg5IHN
e9SzQgRIlKoarvVwQ/FZe6Y=
=a/cA
-----END PGP SIGNATURE-----

["fix-39665.diff" (text/x-diff)]

Index: configuredialog.cpp
===================================================================
RCS file: /home/kde/kdenetwork/kmail/configuredialog.cpp,v
retrieving revision 1.218
diff -u -3 -p -r1.218 configuredialog.cpp
--- configuredialog.cpp	2002/03/10 07:58:27	1.218
+++ configuredialog.cpp	2002/03/22 17:50:36
@@ -2512,8 +2512,8 @@ ComposerPageGeneralTab::ComposerPageGene
   hlay = new QHBoxLayout( vlay ); // inherits spacing
   mWordWrapCheck = new QCheckBox( i18n("Word &wrap at column:"), this );
   hlay->addWidget( mWordWrapCheck );
-  mWrapColumnSpin = new KIntSpinBox( 30/*min*/, 100/*max*/, 1/*step*/,
-				     72/*init*/, 10 /*base*/, this );
+  mWrapColumnSpin = new KIntSpinBox( 30/*min*/, 78/*max*/, 1/*step*/,
+				     78/*init*/, 10 /*base*/, this );
   mWrapColumnSpin->setEnabled( false ); // since !mWordWrapCheck->isChecked()
   hlay->addWidget( mWrapColumnSpin );
   hlay->addStretch( 1 );
Index: kmcomposewin.cpp
===================================================================
RCS file: /home/kde/kdenetwork/kmail/kmcomposewin.cpp,v
retrieving revision 1.482
diff -u -3 -p -r1.482 kmcomposewin.cpp
--- kmcomposewin.cpp	2002/03/13 22:46:43	1.482
+++ kmcomposewin.cpp	2002/03/22 17:50:39
@@ -359,8 +359,8 @@ void KMComposeWin::readConfig(void)
 
   if ((mLineBreak == 0) || (mLineBreak > 78))
     mLineBreak = 78;
-  if (mLineBreak < 60)
-    mLineBreak = 60;
+  if (mLineBreak < 30)
+    mLineBreak = 30;
   mAutoPgpSign = config->readBoolEntry("pgp-auto-sign", false);
   mAutoPgpEncrypt = config->readBoolEntry("pgp-auto-encrypt", false);
   mConfirmSend = config->readBoolEntry("confirm-before-send", false);
Index: kmmessage.cpp
===================================================================
RCS file: /home/kde/kdenetwork/kmail/kmmessage.cpp,v
retrieving revision 1.275
diff -u -3 -p -r1.275 kmmessage.cpp
--- kmmessage.cpp	2002/03/03 17:19:24	1.275
+++ kmmessage.cpp	2002/03/22 17:50:42
@@ -2449,8 +2452,8 @@ void KMMessage::readConfig(void)
     sWrapCol = config->readNumEntry("break-at", 78);
     if ((sWrapCol == 0) || (sWrapCol > 78))
       sWrapCol = 78;
-    if (sWrapCol < 60)
-      sWrapCol = 60;
+    if (sWrapCol < 30)
+      sWrapCol = 30;
 
     sPrefCharsets = config->readListEntry("pref-charsets");
   }


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic