summaryrefslogtreecommitdiff
path: root/noncore/apps/odict
authortille <tille>2003-01-04 12:27:56 (UTC)
committer tille <tille>2003-01-04 12:27:56 (UTC)
commit969924a9d896b70141758b734d898b4423dac357 (patch) (side-by-side diff)
tree8af7ca893a9c83454520fa93a819fcb562b569ce /noncore/apps/odict
parentadbf1d5e2eb8b78e9a8f117fc085aa89f984d4bc (diff)
downloadopie-969924a9d896b70141758b734d898b4423dac357.zip
opie-969924a9d896b70141758b734d898b4423dac357.tar.gz
opie-969924a9d896b70141758b734d898b4423dac357.tar.bz2
check for querystring and dictionary
and display msgbox
Diffstat (limited to 'noncore/apps/odict') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/odict.cpp10
-rw-r--r--noncore/apps/odict/odict.pro3
2 files changed, 11 insertions, 2 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp
index 2857c65..e2d1d7b 100644
--- a/noncore/apps/odict/odict.cpp
+++ b/noncore/apps/odict/odict.cpp
@@ -92,13 +92,21 @@ void ODict::slotDisplayAbout()
QMessageBox::about( this, tr( "About ODict" ), tr( "OPIE-Dictionary ODict \n (c) 2002, 2003 Carsten Niehaus \n cniehaus@handhelds.org \n Version 20030103" ) );
}
void ODict::slotStartQuery()
{
QString querystring = query_le->text();
- DingWidget *ding = new DingWidget( vbox , querystring , browser_top, browser_bottom, activated_name);
+ qDebug("opening dict >%s< for >%s<", activated_name.latin1(),querystring.latin1());
+ if (querystring.isEmpty()){
+ qWarning("emphty querysting");
+ return;
+ }
+ if (!activated_name || activated_name.isEmpty())
+ QMessageBox::warning(this,tr("No Dictionary"),tr("Please choose a dictonary") );
+ else
+ DingWidget *ding = new DingWidget( vbox , querystring , browser_top, browser_bottom, activated_name);
}
void ODict::slotSetErrorcount( int count )
{
errorTol = count;
diff --git a/noncore/apps/odict/odict.pro b/noncore/apps/odict/odict.pro
index e39fa95..23ef0e0 100644
--- a/noncore/apps/odict/odict.pro
+++ b/noncore/apps/odict/odict.pro
@@ -1,8 +1,9 @@
TEMPLATE = app
-CONFIG = qt warn_on release
+CONFIG = qt warn_on debug
+#CONFIG = qt warn_on release
HEADERS = odict.h \
searchmethoddlg.h \
configdlg.h \
dingwidget.h \
dictwidget.h