summaryrefslogtreecommitdiff
path: root/ppdc/ppdc-attr.cxx
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-05-21 01:15:17 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-05-21 01:15:17 +0000
commitbdd6c45b5e42206a5add7bf770196531dd8ad811 (patch)
tree0c0c794dd8f5da9ab0bf589b2cb9fd2a7e0778ca /ppdc/ppdc-attr.cxx
parent20fbc9034781e607f8063453c8a52ec73fc5c293 (diff)
downloadcups-bdd6c45b5e42206a5add7bf770196531dd8ad811.tar.gz
Merge changes from CUPS 1.4svn-r7607.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@784 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'ppdc/ppdc-attr.cxx')
-rw-r--r--ppdc/ppdc-attr.cxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/ppdc/ppdc-attr.cxx b/ppdc/ppdc-attr.cxx
index 094e38706..e532531d6 100644
--- a/ppdc/ppdc-attr.cxx
+++ b/ppdc/ppdc-attr.cxx
@@ -32,13 +32,15 @@
ppdcAttr::ppdcAttr(const char *n, // I - Name
const char *s, // I - Spec string
const char *t, // I - Human-readable text
- const char *v) // I - Value
+ const char *v, // I - Value
+ bool loc) // I - Localize this attribute?
: ppdcShared()
{
- name = new ppdcString(n);
- selector = new ppdcString(s);
- text = new ppdcString(t);
- value = new ppdcString(v);
+ name = new ppdcString(n);
+ selector = new ppdcString(s);
+ text = new ppdcString(t);
+ value = new ppdcString(v);
+ localizable = loc;
}