~valavanisalex/ubuntu/precise/inkscape/fix-943984

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/xml/rebase-hrefs.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef REBASE_HREFS_H_SEEN
 
2
#define REBASE_HREFS_H_SEEN
 
3
 
 
4
#include <glib/gtypes.h>
 
5
#include "util/list.h"
 
6
#include "xml/attribute-record.h"
 
7
struct SPDocument;
 
8
 
 
9
namespace Inkscape {
 
10
namespace XML {
 
11
 
 
12
gchar *calc_abs_doc_base(gchar const *doc_base);
 
13
 
 
14
void rebase_hrefs(SPDocument *doc, gchar const *new_base, bool spns);
 
15
 
 
16
Inkscape::Util::List<AttributeRecord const> rebase_href_attrs(
 
17
    gchar const *old_abs_base,
 
18
    gchar const *new_abs_base,
 
19
    Inkscape::Util::List<AttributeRecord const> attributes);
 
20
 
 
21
}
 
22
}
 
23
 
 
24
 
 
25
#endif /* !REBASE_HREFS_H_SEEN */
 
26
 
 
27
/*
 
28
  Local Variables:
 
29
  mode:c++
 
30
  c-file-style:"stroustrup"
 
31
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
32
  indent-tabs-mode:nil
 
33
  fill-column:99
 
34
  End:
 
35
*/
 
36
// vi: set autoindent shiftwidth=4 tabstop=8 filetype=cpp expandtab softtabstop=4 encoding=utf-8 textwidth=99 :