summaryrefslogtreecommitdiff
path: root/poppler/OptionalContent.h
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2008-11-08 20:20:00 +0100
committerCarlos Garcia Campos <carlosgc@gnome.org>2008-11-08 20:20:00 +0100
commita906d12e16748d9a40c0db4043a576fd3d004341 (patch)
treebdd5b2cc48755b41efeaec3a168867a81a1c37e5 /poppler/OptionalContent.h
parente73c2ce906b7e1f06d641f7e0733aad6336b4091 (diff)
Minor code cleanup and consistency issues
Diffstat (limited to 'poppler/OptionalContent.h')
-rw-r--r--poppler/OptionalContent.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/poppler/OptionalContent.h b/poppler/OptionalContent.h
index 0ffbc447..b6136c3d 100644
--- a/poppler/OptionalContent.h
+++ b/poppler/OptionalContent.h
@@ -66,18 +66,18 @@ class OptionalContentGroup {
public:
enum State { On, Off };
- OptionalContentGroup(Dict *dict, XRef *xrefA);
+ OptionalContentGroup(Dict *dict);
OptionalContentGroup(GooString *label);
~OptionalContentGroup();
- GooString* name() const;
+ GooString* getName() const;
- Ref ref() const;
+ Ref getRef() const;
void setRef(const Ref ref);
- State state() { return m_state; };
+ State getState() { return m_state; };
void setState(State state) { m_state = state; };
private: