No bug - Add missing include guard to nsSVGInnerSVGFrame.h (apperently it's never had one!).

This commit is contained in:
Jonathan Watt 2013-11-18 14:29:47 +00:00
parent 9a00e6195b
commit 87341a69d3

View File

@ -3,6 +3,9 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef __NS_SVGINNERSVGFRAME_H__
#define __NS_SVGINNERSVGFRAME_H__
#include "mozilla/Attributes.h"
#include "nsSVGContainerFrame.h"
#include "nsISVGSVGFrame.h"
@ -71,3 +74,6 @@ protected:
nsAutoPtr<gfxMatrix> mCanvasTM;
};
#endif