~ubuntu-branches/debian/sid/gnome-color-chooser/sid

« back to all changes in this revision

Viewing changes to src/utils.cc

  • Committer: Bazaar Package Importer
  • Author(s): Werner Pantke
  • Date: 2008-04-11 01:16:55 UTC
  • Revision ID: james.westby@ubuntu.com-20080411011655-52kob3kbl2e4fkwe
Tags: 0.2.3-2
* ported back upstream/trunk changes that fix FTBFS with g++-4.3
  (Closes: #474794)
* changed debian/rules to fix unreported "FTBFS if built twice in a row" bug
  (Thanks to Peter Green and Lintian docs)
* changed debian/control to make the description follow new lintian rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
#include "utils.h"
18
18
 
 
19
#include <string.h>
 
20
 
19
21
// Utils::Io
20
22
#include <sys/types.h>
21
23
#include <sys/stat.h>
68
70
 
69
71
    gtkrc << include << "\n";
70
72
    gtkrc.close();
 
73
    return 1;
71
74
  }
72
75
 
 
76
  return 0;
73
77
}
74
78
 
75
79