summaryrefslogtreecommitdiff
path: root/libopie2
authordrw <drw>2004-12-21 21:03:07 (UTC)
committer drw <drw>2004-12-21 21:03:07 (UTC)
commitff17ee5fdc96acdc533ce46fcefbd1a7624516b7 (patch) (unidiff)
tree09350c70b0fdcc70e8ed1e0967e770071ae2d846 /libopie2
parent06bacf46e8060a6d9e9b58553e0264628464d136 (diff)
downloadopie-ff17ee5fdc96acdc533ce46fcefbd1a7624516b7.zip
opie-ff17ee5fdc96acdc533ce46fcefbd1a7624516b7.tar.gz
opie-ff17ee5fdc96acdc533ce46fcefbd1a7624516b7.tar.bz2
Fix compile
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiedb/osqlmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opiedb/osqlmanager.cpp b/libopie2/opiedb/osqlmanager.cpp
index c472f6b..276b800 100644
--- a/libopie2/opiedb/osqlmanager.cpp
+++ b/libopie2/opiedb/osqlmanager.cpp
@@ -1,17 +1,17 @@
1#include "osqlmanager.h" 1#include "osqlmanager.h"
2#include "osqlbackendmanager.h" 2#include "osqlbackendmanager.h"
3#include "osqlitedriver.h" 3#include "osqlitedriver.h"
4 4
5 5#include <stdlib.h>
6 6
7namespace Opie { 7namespace Opie {
8namespace DB { 8namespace DB {
9 9
10OSQLManager::OSQLManager() { 10OSQLManager::OSQLManager() {
11} 11}
12OSQLBackEnd::ValueList OSQLManager::queryBackEnd() { 12OSQLBackEnd::ValueList OSQLManager::queryBackEnd() {
13 m_list.clear(); 13 m_list.clear();
14 QString opie = QString::fromLatin1( getenv("OPIEDIR") ); 14 QString opie = QString::fromLatin1( getenv("OPIEDIR") );
15 15
16 if ( !m_path.contains(opie) && !opie.isEmpty() ) 16 if ( !m_path.contains(opie) && !opie.isEmpty() )
17 m_path << opie; 17 m_path << opie;