~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu4

« back to all changes in this revision

Viewing changes to src/dom/xpathimpl.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Ted Gould, Kees Cook
  • Date: 2009-06-24 14:00:43 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624140043-07stp20mry48hqup
Tags: 0.47~pre0-0ubuntu1
* New upstream release

[ Ted Gould ]
* debian/control: Adding libgsl0 and removing version specifics on boost

[ Kees Cook ]
* debian/watch: updated to run uupdate and mangle pre-release versions.
* Dropped patches that have been taken upstream:
  - 01_mips
  - 02-poppler-0.8.3
  - 03-chinese-inkscape
  - 05_fix_latex_patch
  - 06_gcc-4.4
  - 07_cdr2svg
  - 08_skip-bad-utf-on-pdf-import
  - 09_gtk-clist
  - 10_belarussian
  - 11_libpng
  - 12_desktop
  - 13_slider
  - 100_svg_import_improvements
  - 102_sp_pattern_painter_free
  - 103_bitmap_type_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 * Authors:
11
11
 *   Bob Jamison
12
12
 *
13
 
 * Copyright (C) 2005 Bob Jamison
 
13
 * Copyright (C) 2005-2008 Bob Jamison
14
14
 *
15
15
 *  This library is free software; you can redistribute it and/or
16
16
 *  modify it under the terms of the GNU Lesser General Public
49
49
 *
50
50
 */
51
51
XPathExpression *XPathEvaluatorImpl::createExpression(
52
 
                                     const DOMString &expression,
53
 
                                     const XPathNSResolver *resolver)
 
52
                                     const DOMString &/*expression*/,
 
53
                                     const XPathNSResolver */*resolver*/)
54
54
                                     throw (XPathException, dom::DOMException)
55
55
{
56
56
    return NULL;
60
60
/**
61
61
 *
62
62
 */
63
 
XPathNSResolver *XPathEvaluatorImpl::createNSResolver(const Node *nodeResolver)
 
63
XPathNSResolver *XPathEvaluatorImpl::createNSResolver(const Node */*nodeResolver*/)
64
64
{
65
65
    return NULL;
66
66
}
70
70
 *
71
71
 */
72
72
XPathResult *XPathEvaluatorImpl::evaluate(
73
 
                                const DOMString &expression,
74
 
                                const Node *contextNode,
75
 
                                const XPathNSResolver *resolver,
76
 
                                const unsigned short type,
77
 
                                const XPathResult *result)
 
73
                                const DOMString &/*expression*/,
 
74
                                const Node */*contextNode*/,
 
75
                                const XPathNSResolver */*resolver*/,
 
76
                                const unsigned short /*type*/,
 
77
                                const XPathResult */*result*/)
78
78
                                throw (XPathException, dom::DOMException)
79
79
{
80
80
    return NULL;
97
97
 *
98
98
 */
99
99
XPathResult *XPathExpressionImpl::evaluate(
100
 
                                const Node *contextNode,
101
 
                                unsigned short type,
102
 
                                const XPathResult *result)
 
100
                                const Node */*contextNode*/,
 
101
                                unsigned short /*type*/,
 
102
                                const XPathResult */*result*/)
103
103
                                throw (XPathException, dom::DOMException)
104
104
{
105
105
    return NULL;
115
115
/**
116
116
 *
117
117
 */
118
 
DOMString XPathNSResolverImpl::lookupNamespaceURI(const DOMString &prefix)
 
118
DOMString XPathNSResolverImpl::lookupNamespaceURI(const DOMString &/*prefix*/)
119
119
{
120
120
    return "";
121
121
}
197
197
/**
198
198
 *
199
199
 */
200
 
Node *XPathResultImpl::snapshotItem(unsigned long index) throw (XPathException)
 
200
Node *XPathResultImpl::snapshotItem(unsigned long /*index*/) throw (XPathException)
201
201
{
202
202
    return NULL;
203
203
}