fix the stop slot, remove some redundant debug and cvs ignore

This commit is contained in:
zack%kde.org 2004-12-07 00:50:21 +00:00
parent f119e6962c
commit 6fcb32b823
3 changed files with 2 additions and 4 deletions

View File

@ -417,9 +417,7 @@ QGeckoEmbed::reload(ReloadFlags flags)
bool
QGeckoEmbed::domKeyDownEvent(nsIDOMKeyEvent *keyEvent)
{
qDebug("key event start");
emit domKeyDown(keyEvent);
qDebug("key event stop");
return false;
}
@ -434,7 +432,6 @@ bool
QGeckoEmbed::domKeyUpEvent(nsIDOMKeyEvent *keyEvent)
{
emit domKeyUp(keyEvent);
qDebug("key release event stop");
return false;
}

View File

@ -3,3 +3,4 @@ Makefile
TestQGeckoEmbed
mainwindow
moc_*.cpp
uiimg_collection.cpp

View File

@ -34,7 +34,7 @@ MyMainWindow::MyMainWindow()
action = new QAction(QPixmap::fromMimeSource( "stop.png" ), tr("Stop"), CTRL + Key_S,
toolbar, "stop");
connect(action, SIGNAL(activated()), this, SLOT(stopLoad()));
connect(action, SIGNAL(activated()), this, SLOT(stop()));
action->addTo(toolbar);
location = new QLineEdit(toolbar);