summaryrefslogtreecommitdiffstats
path: root/src/setupwizard.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-10-17 17:11:53 +0900
committerMichele Calgaro <[email protected]>2024-10-29 21:58:43 +0900
commit40fbabf0fe3486a8e91f3caf2fbb40e341ba69aa (patch)
tree858bd532d394f08fe82b35ba2895a44501e16370 /src/setupwizard.cpp
parent54c9cce803be42c31e10d5865656cf8d38eb2ef6 (diff)
downloadkrecipes-40fbabf0fe3486a8e91f3caf2fbb40e341ba69aa.tar.gz
krecipes-40fbabf0fe3486a8e91f3caf2fbb40e341ba69aa.zip
Remove check for obsolete sqlite support. Check only for aqlite3
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit d572a3f536f3cb283303c161095c5e83d4dc27da)
Diffstat (limited to 'src/setupwizard.cpp')
-rw-r--r--src/setupwizard.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/setupwizard.cpp b/src/setupwizard.cpp
index 73921ca..157d15b 100644
--- a/src/setupwizard.cpp
+++ b/src/setupwizard.cpp
@@ -62,7 +62,7 @@ SetupWizard::SetupWizard( TQWidget *parent, const char *name, bool modal, WFlags
setFinishEnabled( savePage, true ); // Enable finish button
setSizePolicy( TQSizePolicy::MinimumExpanding, TQSizePolicy::MinimumExpanding );
- #if (!(HAVE_SQLITE || HAVE_SQLITE3))
+ #if (!HAVE_SQLITE3)
#if (HAVE_MYSQL)
showPages( MySQL );
#else
@@ -793,7 +793,7 @@ DBTypeSetupPage::DBTypeSetupPage( TQWidget *parent ) : TQWidget( parent )
psqlCheckBox->setEnabled( false );
#endif
-#if (!(HAVE_SQLITE || HAVE_SQLITE3))
+#if (!HAVE_SQLITE3)
liteCheckBox->setEnabled( false );
#if (HAVE_MYSQL)