~ubuntu-branches/ubuntu/oneiric/nautilus/oneiric-updates

« back to all changes in this revision

Viewing changes to debian/patches/12_unity_launcher_support.patch

  • Committer: Package Import Robot
  • Author(s): Didier Roche, Marco Trevisan (Treviño), Ted Gould, Didier Roche
  • Date: 2011-09-29 09:40:29 UTC
  • Revision ID: package-import@ubuntu.com-20110929094029-objo7dclk6yhc4f6
Tags: 1:3.2.0-0ubuntu3
[ Marco Trevisan (Treviño) ]
* debian/patches/12_unity_launcher_support.patch:
  - Fixed a typo that lead to bad computation of progress for
    files with size >= 2GB due to a type overflow (LP: #845188)

[ Ted Gould ]
* debian/patches/05_desktop_menu_export.patch: Update for Nautilus 3.x
  (LP: #805252)

[ Didier Roche ]
* clean the above patch from duplication and add DEP3 info

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
+double
79
79
+nautilus_progress_info_get_current (NautilusProgressInfo *info)
80
80
+{
81
 
+       int current;
 
81
+       double current;
82
82
+       
83
83
+       G_LOCK (progress_info);
84
84
+
96
96
+double
97
97
+nautilus_progress_info_get_total (NautilusProgressInfo *info)
98
98
+{
99
 
+       int total;
 
99
+       double total;
100
100
+       
101
101
+       G_LOCK (progress_info);
102
102
+