class moved to anonymous namespace
This commit is contained in:
parent
95dab4301d
commit
9fe2771225
|
@ -106,8 +106,10 @@ static inline void qskSendKey( QQuickItem* receiver, int key )
|
||||||
QCoreApplication::sendEvent( receiver, &keyRelease );
|
QCoreApplication::sendEvent( receiver, &keyRelease );
|
||||||
}
|
}
|
||||||
|
|
||||||
class KeyProcessor : public QObject
|
namespace
|
||||||
{
|
{
|
||||||
|
class KeyProcessor : public QObject
|
||||||
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -258,7 +260,7 @@ class KeyProcessor : public QObject
|
||||||
}
|
}
|
||||||
|
|
||||||
Q_SIGNALS:
|
Q_SIGNALS:
|
||||||
void keyProcessingFinished( const Result& result );
|
void keyProcessingFinished( const Result& );
|
||||||
|
|
||||||
private:
|
private:
|
||||||
inline QString keyString( int keyCode ) const
|
inline QString keyString( int keyCode ) const
|
||||||
|
@ -291,8 +293,8 @@ class KeyProcessor : public QObject
|
||||||
int m_spaceLeft = -1;
|
int m_spaceLeft = -1;
|
||||||
QskTextPredictor* m_predictor = nullptr;
|
QskTextPredictor* m_predictor = nullptr;
|
||||||
Result m_currentResult;
|
Result m_currentResult;
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
class QskInputPanel::PrivateData
|
class QskInputPanel::PrivateData
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue