~jcowgill/ubuntu/trusty/easytag/bug-1295882

« back to all changes in this revision

Viewing changes to src/musepack_header.c

  • Committer: Package Import Robot
  • Author(s): James Cowgill, James Cowgill, Alessio Treglia
  • Date: 2014-02-28 15:50:09 UTC
  • mfrom: (8.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20140228155009-o7quqdw3qlldw98q
Tags: 2.1.10-1
* Team upload.

[ James Cowgill ]
* New upstream release (Closes: #560813, #500051, #518955, #727811).
* Add myself to the list of uploaders.
* Use debhelper v9.
* debian/control:
  - Build depend on desktop-file-utils and yelp-tools.
  - Recommend on gnome-icon-theme, gvfs and yelp (thanks David King)
  - Update homepage location.
  - Bump standards to 3.9.5 (no changes required).
* debian/copyright:
  - Rewritten to use DEP-5
* debian/rules:
  - Enable all hardening flags.
  - Remove unnecessary dh overrides.
* debian/patches:
  - Remove 1001-c90_style.patch, applied upstream.
  - Add patch to remove appdata from buildsystem.
    Can't use until appdata-tools is introduced into Debian.

[ Alessio Treglia ]
* Improve package description (Closes: #691687)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 *
17
17
 *  You should have received a copy of the GNU General Public License
18
18
 *  along with this program; if not, write to the Free Software
19
 
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
20
 */
21
21
 
22
22
#include <config.h>
23
23
 
24
24
#include <gtk/gtk.h>
25
 
#include <glib/gi18n-lib.h>
 
25
#include <glib/gi18n.h>
26
26
#include <stdio.h>
27
27
#include <stdlib.h>
28
28
#include <string.h>
104
104
    g_free(text);
105
105
 
106
106
    /* Size */
107
 
    size  = Convert_Size(ETFileInfo->size);
108
 
    size1 = Convert_Size(ETCore->ETFileDisplayedList_TotalSize);
 
107
    size  = g_format_size (ETFileInfo->size);
 
108
    size1 = g_format_size (ETCore->ETFileDisplayedList_TotalSize);
109
109
    text  = g_strdup_printf("%s (%s)",size,size1);
110
110
    gtk_label_set_text(GTK_LABEL(SizeValueLabel),text);
111
111
    g_free(size);