gnome-scan r663 - in trunk: . lib
- From: bersace svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-scan r663 - in trunk: . lib
- Date: Fri, 12 Dec 2008 20:21:40 +0000 (UTC)
Author: bersace
Date: Fri Dec 12 20:21:40 2008
New Revision: 663
URL: http://svn.gnome.org/viewvc/gnome-scan?rev=663&view=rev
Log:
Revert group and domain parameter.
Modified:
trunk/ChangeLog
trunk/lib/gnome-scan-option.vala
Modified: trunk/lib/gnome-scan-option.vala
==============================================================================
--- trunk/lib/gnome-scan-option.vala (original)
+++ trunk/lib/gnome-scan-option.vala Fri Dec 12 20:21:40 2008
@@ -43,8 +43,8 @@
public string name {get; set construct;}
public string title {get; set construct;}
public string desc {get; set construct;}
- public string domain {get; set construct;}
public string group {get; set construct;}
+ public string domain {get; set construct;}
public Gnome.Scan.Unit unit {get; set construct; default = Unit.NONE;}
public OptionHint hint {get; set construct;}
@@ -54,13 +54,13 @@
public class OptionBool : Option {
public bool value {set; get;}
- public OptionBool(string name, string title, string desc, string domain, string group, bool value, OptionHint hint)
+ public OptionBool(string name, string title, string desc, string group, string domain, bool value, OptionHint hint)
{
this.name = name;
this.title = title;
this.desc = desc;
- this.domain = domain;
this.group = group;
+ this.domain = domain;
this.value = value;
this.hint = hint;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]