~ubuntu-branches/ubuntu/oneiric/notecase/oneiric

« back to all changes in this revision

Viewing changes to src/config.h

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Soyez
  • Date: 2008-11-10 11:29:57 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20081110112957-9uu6p24w7i0c7ib2
Tags: 1.9.7-0ubuntu1
* New Upstream Release
* Updated Standards-Version to 3.8.0, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#ifndef CONFIG_H__
10
10
#define CONFIG_H__
11
11
 
12
 
#define APP_NAME_STR "NoteCase" 
13
 
#define APP_VER_STR "1.9.1"
 
12
#define APP_NAME_STR "NoteCase"
 
13
#define APP_VER_STR "1.9.7"
14
14
 
15
15
#define PACKAGE "notecase"      //NLS package definition
16
16
#define UNDO_LIST_SIZE 10
29
29
#ifdef _WIN32
30
30
        #define HELP_FILE_PATH ""       //calculated dynamically
31
31
#else
32
 
        #define HELP_FILE_PATH "/share/doc/notecase/help.ncd"   //relative to INSTALL_PREFIX
 
32
        #define DOC_DIR_PATH "/usr/share/doc/notecase/"
 
33
        #define HELP_FILE_PATH "help.ncd"       //relative to DOC_DIR_PATH
33
34
#endif
34
35
 
35
36
#ifdef _WIN32
36
 
        #define LOCALE_DIR ""   //calculated dynamically        
 
37
        #define LOCALE_DIR ""   //calculated dynamically
37
38
#else
38
39
        #define LOCALE_DIR "/share/locale/"     //relative to INSTALL_PREFIX
39
40
#endif
43
44
#endif
44
45
 
45
46
#endif
46