src/hbplugins/inputmethods/common/hbinputabstractbase.cpp
changeset 1 f7ac710697a9
parent 0 16d8024aca5e
child 2 06ff229162e9
equal deleted inserted replaced
0:16d8024aca5e 1:f7ac710697a9
   162     if ((pos.x() + size.width()) > abs((int)viewport.width())) {
   162     if ((pos.x() + size.width()) > abs((int)viewport.width())) {
   163         // can not fit candidate popup to the right side of inline edit text.
   163         // can not fit candidate popup to the right side of inline edit text.
   164         pos.setX(abs((int)viewport.width()) - size.width());
   164         pos.setX(abs((int)viewport.width()) - size.width());
   165     }
   165     }
   166 }
   166 }
       
   167 
       
   168 void HbInputAbstractMethod::showThaiSpecialCharacters(uint buttonId)
       
   169 {
       
   170 	Q_UNUSED(buttonId);
       
   171 }
       
   172 
       
   173 bool HbInputAbstractMethod::isSctModeActive() const
       
   174 {
       
   175 	return false;
       
   176 }
       
   177 
   167    
   178