[Kde-bindings] kdebindings cannot be checked out on windows

Wolfgang Rohdewald wolfgang at rohdewald.de
Fri Jan 7 10:28:51 UTC 2011


because there are two file with the same windows file name (just 
case difference):

svn://anonsvn.kde.org/home/kde/branches/KDE/4.5/kdebindings/perl/qtgui/examples/widgets/icons/IconSizeSpinbox.pm
and
svn://anonsvn.kde.org/home/kde/branches/KDE/4.5/kdebindings/perl/qtgui/examples/widgets/icons/IconSizeSpinBox.pm

only IconSizeSpinBox.pm is currently used.

Is it OK if I do svn rm for IconSizeSpinbox.pm?

without answer, I will wait until tomorrow and then just do that

grep -ri Iconsizespinbox * | grep -v svn
widgets/icons/MainWindow.pm:use IconSizeSpinBox;
widgets/icons/MainWindow.pm:    this->setOtherSpinBox( 
IconSizeSpinBox() );
widgets/icons/IconSizeSpinBox.pm:package IconSizeSpinBox;
widgets/icons/IconSizeSpinbox.pm:package IconSizeSpinbox;


--- widgets/icons/IconSizeSpinbox.pm    2011-01-07 
09:29:39.033377000 +0100                                                  
+++ widgets/icons/IconSizeSpinBox.pm    2011-01-07 
09:29:39.033377000 +0100                                                  
@@ -1,4 +1,4 @@                                                                                                              
-package IconSizeSpinbox;                                                                                                    
+package IconSizeSpinBox;                                                                                                    
                                                                                                                             
 use strict;
 use warnings;
@@ -24,7 +24,7 @@
     my $regExp = Qt::RegExp(this->tr('(\\d+)
(\\s*[xx]\\s*\\d+)?'));
 
     if ($regExp->exactMatch($text)) {
-        return $regExp->cap(1).toInt();
+        return $regExp->cap(1);
     } else {
         return 0;
     }
@@ -34,7 +34,7 @@
 # [2]
 sub textFromValue {
     my ( $value ) = @_;
-    return sprintf this->tr('%d x %d'), $value;
+    return sprintf this->tr('%d x %d'), $value, $value;
 }
 # [2]
 


-- 
Wolfgang
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/kde-bindings/attachments/20110107/f95339af/attachment.html>


More information about the Kde-bindings mailing list