~ubuntu-branches/ubuntu/saucy/filezilla/saucy-proposed

« back to all changes in this revision

Viewing changes to debian/patches/02_use-decimal-si-by-default.patch

  • Committer: Bazaar Package Importer
  • Author(s): Adrien Cunin
  • Date: 2010-12-12 16:11:49 UTC
  • mfrom: (1.1.27 upstream) (3.2.9 sid)
  • Revision ID: james.westby@ubuntu.com-20101212161149-0tsniecmy8o1f6yc
Tags: 3.3.5.1-1ubuntu1
* Merge from Debian unstable. Remaining changes:
   - 02_use-decimal-si-by-default.patch: by default, display file sizes using
     decimal base and SI units instead of just bytes; complies with Ubuntu
     UnitsPolicy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
Description: by default, display file sizes using decimal base and SI units instead of just bytes; complies with Ubuntu UnitsPolicy.
3
3
--- a/src/interface/Options.cpp
4
4
+++ b/src/interface/Options.cpp
5
 
@@ -73,7 +73,7 @@
6
 
        { "Logging file", string, _T(""), false },
7
 
        { "Logging filesize limit", number, _T("10"), false },
8
 
        { "Trusted root certificate", string, _T(""), true },
9
 
-       { "Size format", number, _T("0"), false },
10
 
+       { "Size format", number, _T("3"), false },
11
 
        { "Size thousands separator", number, _T("1"), false },
12
 
        { "Size decimal places", number, _T("0"), false },
 
5
@@ -92,7 +92,7 @@
 
6
        { "Logging file", string, _T(""), normal },
 
7
        { "Logging filesize limit", number, _T("10"), normal },
 
8
        { "Trusted root certificate", string, _T(""), internal },
 
9
-       { "Size format", number, _T("0"), normal },
 
10
+       { "Size format", number, _T("3"), normal },
 
11
        { "Size thousands separator", number, _T("1"), normal },
 
12
        { "Size decimal places", number, _T("1"), normal },
13
13