~centralelyon2010/inkscape/imagelinks2

1 by mental
moving trunk for module inkscape
1
#include "sp-gradient-reference.h"
9012.1.157 by Jon A. Cruz
Initial F&S dialog setting of swatch colors.
2
#include "sp-gradient.h"
1 by mental
moving trunk for module inkscape
3
4
bool
5
SPGradientReference::_acceptObject(SPObject *obj) const
6
{
7
    return SP_IS_GRADIENT(obj);
8
    /* effic: Don't bother making this an inline function: _acceptObject is a virtual function,
9
       typically called from a context where the runtime type is not known at compile time. */
10
}
11
12
13
/*
14
  Local Variables:
15
  mode:c++
16
  c-file-style:"stroustrup"
17
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
18
  indent-tabs-mode:nil
19
  fill-column:99
20
  End:
21
*/
9020 by JazzyNico
Code refactoring and merging with trunk (revision 10599).
22
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :