Skip to content

Commit

Permalink
Add missing include to namespace.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Pekka Vuorela committed Jun 24, 2024
1 parent 8129694 commit 23d624e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions common/maliit/namespace.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#define MALIIT_NAMESPACE_H

#include <QMetaType>
#include <QList>
#include <QSharedPointer>

//! \ingroup common
Expand Down Expand Up @@ -114,11 +115,11 @@ namespace Maliit {

PreeditTextFormat()
: start(0), length(0), preeditFace(PreeditDefault)
{};
{}

PreeditTextFormat(int s, int l, const PreeditFace &face)
: start(s), length(l), preeditFace(face)
{};
{}
};

namespace InputMethodQuery
Expand Down

0 comments on commit 23d624e

Please sign in to comment.