QmlJSEditor: Export QmlJSCompletionAssistInterface

Requested in the mailing list

Change-Id: Ica71665f72dbe448fbe5a0fe82c4113c22d06324
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
Orgad Shaneh
2015-03-06 09:35:06 +02:00
committed by Orgad Shaneh
parent 3d360653cf
commit eb35a8bfbe

View File

@@ -49,10 +49,11 @@
namespace QmlJS { class Value; }
namespace QmlJSEditor {
namespace Internal {
class QmlJSCompletionAssistInterface;
namespace Internal {
class QmlJSAssistProposalItem : public TextEditor::AssistProposalItem
{
public:
@@ -117,8 +118,9 @@ private:
TextEditor::SnippetAssistCollector m_snippetCollector;
};
} // Internal
class QmlJSCompletionAssistInterface : public TextEditor::AssistInterface
class QMLJSEDITOR_EXPORT QmlJSCompletionAssistInterface : public TextEditor::AssistInterface
{
public:
QmlJSCompletionAssistInterface(QTextDocument *textDocument,
@@ -138,7 +140,6 @@ private:
QIcon m_darkCyanIcon;
};
} // Internal
} // QmlJSEditor
#endif // QMLJSCOMPLETIONASSIST_H