summaryrefslogtreecommitdiffstats
path: root/src/kvirc/ui/kvi_input.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kvirc/ui/kvi_input.cpp')
-rw-r--r--src/kvirc/ui/kvi_input.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/kvirc/ui/kvi_input.cpp b/src/kvirc/ui/kvi_input.cpp
index 5069305..4316efe 100644
--- a/src/kvirc/ui/kvi_input.cpp
+++ b/src/kvirc/ui/kvi_input.cpp
@@ -265,10 +265,10 @@ void KviInputEditor::dropEvent(TQDropEvent *e)
TQStringList list;
if(KviUriDrag::decodeLocalFiles(e,list))
{
- //debug("Local files decoded");
+ //tqDebug("Local files decoded");
if(!list.isEmpty())
{
- //debug("List not empty");
+ //tqDebug("List not empty");
TQStringList::ConstIterator it = list.begin(); //kewl ! :)
for( ; it != list.end(); ++it )
{
@@ -695,7 +695,7 @@ void KviInputEditor::extractNextBlock(int idx,TQFontMetrics & fm,int curXPos,int
}
break;
default:
- debug("Ops..");
+ tqDebug("Ops..");
exit(0);
break;
}
@@ -746,7 +746,7 @@ void KviInputEditor::runUpToTheFirstVisibleChar()
}
break;
case 0:
- debug("KviInputEditor::Encountered invisible end of the string!");
+ tqDebug("KviInputEditor::Encountered invisible end of the string!");
exit(0);
break;
}
@@ -1572,7 +1572,7 @@ void KviInputEditor::keyPressEvent(TQKeyEvent *e)
return;
}
- //debug("%c",e->ascii());
+ //tqDebug("%c",e->ascii());
if(!m_bReadOnly) {
insertText(e->text());
}
@@ -1750,7 +1750,7 @@ void KviInputEditor::keyReleaseEvent(TQKeyEvent *e)
unsigned short ch = m_szAltKeyCode.toUShort(&bOk);
if(bOk && ch != 0)
{
- //debug("INSERTING CHAR %d",ch);
+ //tqDebug("INSERTING CHAR %d",ch);
insertChar(TQChar(ch));
e->accept();
}
@@ -2155,7 +2155,7 @@ int KviInputEditor::xPositionFromCharIndex(int chIdx,bool bContentsCoords)
// FIXME: this could use fm.width(m_szTextBuffer,chIdx)
int curXPos = bContentsCoords ? KVI_INPUT_MARGIN : frameWidth()+KVI_INPUT_MARGIN;
int curChar = m_iFirstVisibleChar;
- //debug("%i",g_pLastFontMetrics);
+ //tqDebug("%i",g_pLastFontMetrics);
if(!g_pLastFontMetrics) g_pLastFontMetrics = new TQFontMetrics(KVI_OPTION_FONT(KviOption_fontInput));
while(curChar < chIdx)
{
@@ -2442,7 +2442,7 @@ void KviInput::inputEditorEnterPressed()
void KviInput::keyPressEvent(TQKeyEvent *e)
{
- //debug("KviInput::keyPressEvent(key:%d,state:%d,text:%s)",e->key(),e->state(),e->text().isEmpty() ? "empty" : e->text().utf8().data());
+ //tqDebug("KviInput::keyPressEvent(key:%d,state:%d,text:%s)",e->key(),e->state(),e->text().isEmpty() ? "empty" : e->text().utf8().data());
if((e->state() & TQt::ControlButton) || (e->state() & TQt::AltButton) || (e->state() & TQt::MetaButton))
{