diff options
author | ale <ale@FreeBSD.org> | 2006-04-21 19:38:50 +0000 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2006-04-21 19:38:50 +0000 |
commit | 0675f8b1c8390e2bb7c3fc723b6fc020dbee775e (patch) | |
tree | dd083d3fd467c330e27545a6f2aa76b9a45c59b9 /x11/rsibreak-kde4 | |
parent | c6e92b90608e566ec2130bea0325bb4d09f23714 (diff) | |
download | FreeBSD-ports-0675f8b1c8390e2bb7c3fc723b6fc020dbee775e.zip FreeBSD-ports-0675f8b1c8390e2bb7c3fc723b6fc020dbee775e.tar.gz |
Another fix for 4.X.
Submitted by: RSIBreak author
Diffstat (limited to 'x11/rsibreak-kde4')
-rw-r--r-- | x11/rsibreak-kde4/files/patch-rsibreak_src_rsiglobals.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/x11/rsibreak-kde4/files/patch-rsibreak_src_rsiglobals.cpp b/x11/rsibreak-kde4/files/patch-rsibreak_src_rsiglobals.cpp new file mode 100644 index 0000000..e988c9ff --- /dev/null +++ b/x11/rsibreak-kde4/files/patch-rsibreak_src_rsiglobals.cpp @@ -0,0 +1,16 @@ +--- rsibreak/src/rsiglobals.cpp.orig Fri Apr 21 21:35:42 2006 ++++ rsibreak/src/rsiglobals.cpp Fri Apr 21 21:36:17 2006 +@@ -72,11 +72,11 @@ QString RSIGlobals::formatSeconds( const + sString1 = i18n("One second","%n seconds", secs); + sString2 = i18n("one second","%n seconds", secs); + +- if ( hours > 0 and mins >0 ) ++ if ( hours > 0 && mins >0 ) + return(i18n("Arguments: hours, minutes " + "both as you defined earlier", + "%1 and %2").arg(hString, mString2) ); +- else if ( hours > 0 and mins == 0 ) ++ else if ( hours > 0 && mins == 0 ) + return( hString ); + + else if ( hours == 0 ) |