~mhr3/unity-lens-applications/bug-850714

« back to all changes in this revision

Viewing changes to vapi/config.vapi

  • Committer: Neil Jagdish Patel
  • Date: 2010-01-27 12:52:28 UTC
  • Revision ID: neil.patel@canonical.com-20100127125228-6nb4gcdwnfjl3t55
[i18n] Support

renamed:
  vapi/unity-const.vapi => vapi/config.vapi
modified:
  .bzrignore
  configure.ac
  po/POTFILES.in
  src/Makefile.am
  src/applications.vala
  src/main.vala
  vapi/config.vapi

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *
19
19
 */
20
20
 
21
 
namespace Unity.Place.Applications
 
21
[CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "config.h")]
 
22
namespace Config
22
23
{
23
 
  [CCode (cname = "DATADIR")]
24
 
  public static const string DATADIR;
25
 
  [CCode (cname = "PKGDATADIR")]
26
 
  public static const string PKGDATADIR;
27
 
  [CCode (cname = "INDICATORDIR")]
 
24
  public const string DATADIR;
 
25
  public const string PKGDATADIR;
 
26
  public const string GETTEXT_PACKAGE;
 
27
  public const string LOCALE_DIR;
 
28
  public const string VERSION;
28
29
}