~ubuntu-branches/ubuntu/trusty/pcmanfm/trusty-proposed

« back to all changes in this revision

Viewing changes to src/pref-dialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Lee
  • Date: 2008-09-26 10:19:20 UTC
  • mfrom: (4.1.5 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080926101920-cfldybkmwgwrtv9u
Tags: 0.5-3
* Correct spellings,  03_correct_spelling.dpatch (Closes:498794) 
* Code in some files are taken from other projects, added these
  informations into copyright file. (Closes:499678)
* Applied 04_defaut_terminal.dpatch to support x-terminal-emulator
  alternative. (Closes:497494) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
G_BEGIN_DECLS
7
7
 
8
 
gboolean show_preference_dialog( GtkWindow* parent );
 
8
typedef enum {
 
9
    PREF_GENERAL,
 
10
    PREF_DESKTOP,
 
11
    PREF_VOLMAN,
 
12
    PREF_ADVANCED
 
13
}PrefDlgPage;
 
14
 
 
15
gboolean fm_edit_preference( GtkWindow* parent, int page );
9
16
 
10
17
G_END_DECLS
11
18