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 );
|
||||
}
|
||||
|
||||
class KeyProcessor : public QObject
|
||||
namespace
|
||||
{
|
||||
class KeyProcessor : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
|
@ -258,7 +260,7 @@ class KeyProcessor : public QObject
|
|||
}
|
||||
|
||||
Q_SIGNALS:
|
||||
void keyProcessingFinished( const Result& result );
|
||||
void keyProcessingFinished( const Result& );
|
||||
|
||||
private:
|
||||
inline QString keyString( int keyCode ) const
|
||||
|
@ -291,8 +293,8 @@ class KeyProcessor : public QObject
|
|||
int m_spaceLeft = -1;
|
||||
QskTextPredictor* m_predictor = nullptr;
|
||||
Result m_currentResult;
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
class QskInputPanel::PrivateData
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue