forked from qt-creator/qt-creator
DiffEditor: Fix warnings on clang/msvc
The recent move to use classes in favor of structs missed the forward declarations, so the build produces warnings about the mismatch when using clang (and MSVC as far as I can tell). Change-Id: I235f7410a5b43b14c318843c9ee4dfcb9ea88e63 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
@@ -53,9 +53,9 @@ QT_END_NAMESPACE
|
|||||||
namespace DiffEditor {
|
namespace DiffEditor {
|
||||||
|
|
||||||
class DiffViewEditorWidget;
|
class DiffViewEditorWidget;
|
||||||
struct TextLineData;
|
class TextLineData;
|
||||||
struct ChunkData;
|
class ChunkData;
|
||||||
struct FileData;
|
class FileData;
|
||||||
|
|
||||||
class DIFFEDITOR_EXPORT DiffEditorWidget : public QWidget
|
class DIFFEDITOR_EXPORT DiffEditorWidget : public QWidget
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user