Fix wrong forward declaration

This popped up in cmake monolithic build once. It looks like BufferView is
included indirectly by some of the other headers (otherwise we would have seen
compile errors for other build configurations as well), bu I'll keep the
forward declaration since we don't want to depend on this indirect header
inclusion.
This commit is contained in:
Georg Baum 2015-11-16 21:51:30 +01:00
parent 1900eb2834
commit 0c97d6edc0

View File

@ -21,11 +21,11 @@
#include <string>
class BufferView;
namespace lyx {
namespace frontend { class Painter; }
class BufferView;
class Inset;
class MacroContext;