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

List:       koffice-devel
Subject:    question about freeze and patch
From:       John Dailey <dailey () vt ! edu>
Date:       2002-04-11 23:39:39
[Download RAW message or body]

According to the release schedule, as of today "KOffice is temporarily 
frozen".  Does this mean we need to post patches on this list?  Or do we 
still commit at will, but only bugfixing patches?

Just in case, here's a patch to fix bug 40465 (Copy as text doesn't work if 
more than one cell is selected).

-John
["copyAsText.patch" (text/x-diff)]

Index: kspread_table.cc
===================================================================
RCS file: /home/kde/koffice/kspread/kspread_table.cc,v
retrieving revision 1.335
diff -p -u -3 -r1.335 kspread_table.cc
--- kspread_table.cc	2002/04/03 18:30:50	1.335
+++ kspread_table.cc	2002/04/12 03:27:48
@@ -3957,8 +3957,8 @@ void KSpreadTable::copyAsText( const QPo
         KSpreadCell * cell = cellAt( x, y );
         if( !cell->isDefault() )
         {
-          if ( cell->strOutText().length() > max )
-            max = cell->strOutText().length();
+          if ( cell->text().length() > max )
+            max = cell->text().length();
         }
       }
     }
@@ -3970,10 +3970,10 @@ void KSpreadTable::copyAsText( const QPo
         KSpreadCell * cell = cellAt( x, y );
         if( !cell->isDefault() )
         {
-            int l = max - cell->strOutText().length();
+            int l = max - cell->text().length();
             for ( int i = 0; i < l; ++i )
               result += " ";
-            result += cell->strOutText();
+            result += cell->text();
         }
         else
         {

_______________________________________________
koffice-devel mailing list
koffice-devel@mail.kde.org
http://mail.kde.org/mailman/listinfo/koffice-devel

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

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