diff options
| author | su_v <suv-sf@users.sourceforge.net> | 2014-09-15 16:06:04 +0000 |
|---|---|---|
| committer | ~suv <suv-sf@users.sourceforge.net> | 2014-09-15 16:06:04 +0000 |
| commit | c9756b3d790bffe1fbdade3ff7e53548fec636e5 (patch) | |
| tree | f219b32ea7f628bc8cd2325bd91a8c18c09d7beb /src/inkscape.cpp | |
| parent | simplify test (note to self: always consult the man page before pushing a com... (diff) | |
| parent | Always check result of sp_repr_read_mem for NULL (diff) | |
| download | inkscape-c9756b3d790bffe1fbdade3ff7e53548fec636e5.tar.gz inkscape-c9756b3d790bffe1fbdade3ff7e53548fec636e5.zip | |
update to trunk (r13556)
(bzr r13506.1.97)
Diffstat (limited to 'src/inkscape.cpp')
| -rw-r--r-- | src/inkscape.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inkscape.cpp b/src/inkscape.cpp index 4b4c8c678..e312e15b9 100644 --- a/src/inkscape.cpp +++ b/src/inkscape.cpp @@ -945,7 +945,7 @@ bool inkscape_load_menus( Inkscape::Application * inkscape ) inkscape->menus = sp_repr_read_mem(menus_skeleton, MENUS_SKELETON_SIZE, NULL); } - return (inkscape->menus != 0); + return (inkscape->menus != NULL); } |
