author | mickeyl <mickeyl> | 2003-08-10 15:42:26 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-08-10 15:42:26 (UTC) |
commit | 90dbd3e9e7139c1280e71f9c77ed4362b8d0f367 (patch) (side-by-side diff) | |
tree | 22f0947337ea9b21a1d8f56d04ce3292c9d6f19e /libsql/osqlerror.cpp | |
parent | 616e919ff6aea6a30e18edb37128c229e806beae (diff) | |
download | opie-90dbd3e9e7139c1280e71f9c77ed4362b8d0f367.zip opie-90dbd3e9e7139c1280e71f9c77ed4362b8d0f367.tar.gz opie-90dbd3e9e7139c1280e71f9c77ed4362b8d0f367.tar.bz2 |
libsql is now a part of libopie2
-rw-r--r-- | libsql/osqlerror.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libsql/osqlerror.cpp b/libsql/osqlerror.cpp deleted file mode 100644 index 3890a50..0000000 --- a/libsql/osqlerror.cpp +++ b/dev/null @@ -1,23 +0,0 @@ -#include "osqlerror.h" - -OSQLError::OSQLError( const QString& driverText, - const QString& driverDatabaseText, - int type, int subType ) - : m_drvText( driverText ), m_drvDBText( driverDatabaseText ), - m_type( type ), m_number( subType ) -{ -} -OSQLError::~OSQLError() { -} -QString OSQLError::driverText()const { - return m_drvText; -} -QString OSQLError::databaseText()const { - return m_drvDBText; -} -int OSQLError::type()const { - return m_type; -} -int OSQLError::subNumber()const { - return m_number; -} |