-rw-r--r-- | noncore/apps/odict/odict.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp index cc3148a..9f9a8d9 100644 --- a/noncore/apps/odict/odict.cpp +++ b/noncore/apps/odict/odict.cpp | |||
@@ -94,6 +94,30 @@ void ODict::saveConfig() | |||
94 | 94 | ||
95 | void ODict::slotStartQuery() | 95 | void ODict::slotStartQuery() |
96 | { | 96 | { |
97 | /* | ||
98 | * if the user has not yet defined a dictionary | ||
99 | */ | ||
100 | if ( !query_co->currentText() ) | ||
101 | { | ||
102 | switch ( QMessageBox::information( this, tr( "OPIE-Dictionary" ), | ||
103 | tr( "No dictionary defined" ), | ||
104 | tr( "&Define one" ), | ||
105 | tr( "&Cancel" ), | ||
106 | 0, // Define a dict choosen | ||
107 | 1 ) ) // Cancel choosen | ||
108 | { | ||
109 | |||
110 | case 0: | ||
111 | slotSettings(); | ||
112 | break; | ||
113 | case 1: // stop here | ||
114 | return; | ||
115 | } | ||
116 | } | ||
117 | |||
118 | /* | ||
119 | * ok, the user has defined a dict | ||
120 | */ | ||
97 | QString querystring = query_le->text(); | 121 | QString querystring = query_le->text(); |
98 | ding->setCaseSensitive( casesens ); | 122 | ding->setCaseSensitive( casesens ); |
99 | ding->setCompleteWord( completewords ); | 123 | ding->setCompleteWord( completewords ); |