--- a/src/hbcore/inputfw/hbinputmethodnull.cpp Mon Apr 19 14:02:13 2010 +0300
+++ b/src/hbcore/inputfw/hbinputmethodnull.cpp Mon May 03 12:48:33 2010 +0300
@@ -26,83 +26,63 @@
#include "hbinputmethodnull_p.h"
#include "hbinputeditorinterface.h"
-//
-// HbInputMethodNull
-//
-
-// ---------------------------------------------------------------------------
-// HbInputMethodNull::Instance
-//
-// ---------------------------------------------------------------------------
-//
+/*!
+\internal
+*/
HbInputMethodNull* HbInputMethodNull::Instance()
{
static HbInputMethodNull myInstance;
return &myInstance;
}
-// ---------------------------------------------------------------------------
-// HbInputMethodNull::HbInputMethodNull
-//
-// ---------------------------------------------------------------------------
-//
+/*!
+\internal
+*/
HbInputMethodNull::HbInputMethodNull()
{
}
-// ---------------------------------------------------------------------------
-// HbInputMethodNull::~HbInputMethodNull
-//
-// ---------------------------------------------------------------------------
-//
+/*!
+\internal
+*/
HbInputMethodNull::~HbInputMethodNull()
{
}
-// ---------------------------------------------------------------------------
-// HbInputMethodNull::identifierName
-//
-// ---------------------------------------------------------------------------
-//
+/*!
+\internal
+*/
QString HbInputMethodNull::identifierName()
{
return QString();
}
-// ---------------------------------------------------------------------------
-// HbInputMethodNull::isComposing
-//
-// ---------------------------------------------------------------------------
-//
+/*!
+\internal
+*/
bool HbInputMethodNull::isComposing() const
{
return false;
}
-// ---------------------------------------------------------------------------
-// HbInputMethodNull::language
-//
-// ---------------------------------------------------------------------------
-//
+/*!
+\internal
+*/
QString HbInputMethodNull::language()
{
return QString();
}
-// ---------------------------------------------------------------------------
-// HbInputMethodNull::reset
-//
-// ---------------------------------------------------------------------------
-//
+/*!
+\internal
+*/
void HbInputMethodNull::reset()
{
}
-// ---------------------------------------------------------------------------
-// HbInputMethodNull::filterEvent
-//
-// ---------------------------------------------------------------------------
-//
+/*!
+\internal
+*/
bool HbInputMethodNull::filterEvent(const QEvent* event)
{
if (!event || event->type() != QEvent::KeyPress) {
@@ -117,12 +97,9 @@
return false;
}
-
-// ---------------------------------------------------------------------------
-// HbInputMethodNull::mouseHandler
-//
-// ---------------------------------------------------------------------------
-//
+/*!
+\internal
+*/
void HbInputMethodNull::mouseHandler(int x, QMouseEvent* event)
{
Q_UNUSED(x);