~ubuntu-branches/ubuntu/precise/gnome-do/precise-backports

« back to all changes in this revision

Viewing changes to Do/src/Preferences.cs

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2008-04-14 21:36:12 UTC
  • mfrom: (0.1.2 lenny) (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080414213612-j6izjrqjsd4f4ulo
* Initial Debian package (closes: #474022)
* debian/patches/02_use_cli_for_wrapper:
  + Patch upstream's wrapper to call /usr/bin/cli rather than mono
* debian/patches/01_fix_libX11_linkage:
  + Link libdo against libX11; fix undefined symbol warnings.
* debian/patches/03_show_in_all_DEs:
  + Show the launcher in all desktop environments; it's useful in XFCE
  and KDE as well as GNOME.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
using Do;
26
26
using Do.Universe;
27
27
 
28
 
namespace Do
29
 
{
 
28
namespace Do {
30
29
        
31
30
        /// <summary>
32
31
        /// A class providing generic functionality for dealing with preferences,
33
32
        /// whether those preferences are provided by gconf, command line options,
34
33
        /// etc.
35
34
        /// </summary>
36
 
        public class Preferences
37
 
        {
 
35
        public class Preferences {
38
36
                const string GConfRootPath = "/apps/gnome-do/preferences/";
39
37
 
40
38
                GConf.Client client;
45
43
                /// <param name="args">
46
44
                /// A <see cref="System.String"/> array.
47
45
                /// </param>
48
 
                string[] options;
 
46
                string [] options;
49
47
 
50
48
                /// <summary>
51
49
                /// 
53
51
                /// <param name="args">
54
52
                /// A <see cref="System.String"/>
55
53
                /// </param>
56
 
                public Preferences (string[] args)
 
54
                public Preferences (string [] args)
57
55
                {
58
56
                        client = new GConf.Client();
59
57
                        options = args;