From 79fd2b2bbd9f842ce3c84c67e3314033a9cceea4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:18:06 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- ark/CMakeLists.txt | 6 +- ark/Makefile.am | 2 +- ark/arch.cpp | 2 +- ark/arj.cpp | 2 +- ark/ark_part.h | 8 +- ark/ark_part.rc | 2 +- ark/ark_part_readonly.rc | 2 +- ark/arkfactory.h | 2 +- ark/arkutils.cpp | 230 ----------------------------------------------- ark/arkutils.h | 56 ------------ ark/arkviewer.cpp | 2 +- ark/arkviewer.h | 2 +- ark/arkwidget.cpp | 2 +- ark/artdeutils.cpp | 230 +++++++++++++++++++++++++++++++++++++++++++++++ ark/artdeutils.h | 56 ++++++++++++ ark/extractiondialog.cpp | 2 +- ark/lha.cpp | 2 +- ark/mainwindow.cpp | 4 +- ark/mainwindow.h | 4 +- ark/rar.cpp | 2 +- ark/sevenzip.cpp | 2 +- ark/zoo.cpp | 2 +- 22 files changed, 311 insertions(+), 311 deletions(-) delete mode 100644 ark/arkutils.cpp delete mode 100644 ark/arkutils.h create mode 100644 ark/artdeutils.cpp create mode 100644 ark/artdeutils.h (limited to 'ark') diff --git a/ark/CMakeLists.txt b/ark/CMakeLists.txt index fa15179..c0ea58a 100644 --- a/ark/CMakeLists.txt +++ b/ark/CMakeLists.txt @@ -39,7 +39,7 @@ tde_add_library( ark_common STATIC_PIC tde_add_tdeinit_executable( ark AUTOMOC SOURCES main.cpp arkapp.cpp mainwindow.cpp - LINK ark_common-static khtml-shared + LINK ark_common-static tdehtml-shared ) @@ -49,12 +49,12 @@ tde_add_kpart( libarkpart AUTOMOC SOURCES ark_part.cpp arkfactory.cpp zip.cpp tar.cpp filelistview.cpp arch.cpp lha.cpp compressedfile.cpp zoo.cpp rar.cpp ar.cpp - arkutils.cpp archiveformatdlg.cpp + artdeutils.cpp archiveformatdlg.cpp arkwidget.cpp searchbar.cpp addition.ui extraction.ui general.ui arkviewer.cpp sevenzip.cpp extractiondialog.cpp ace.cpp tarlistingthread.cpp arj.cpp - LINK ark_common-static khtml-shared + LINK ark_common-static tdehtml-shared DESTINATION ${PLUGIN_INSTALL_DIR} ) diff --git a/ark/Makefile.am b/ark/Makefile.am index 14f33f5..aa26f03 100644 --- a/ark/Makefile.am +++ b/ark/Makefile.am @@ -27,7 +27,7 @@ libarkpart_la_COMPILE_FIRST = settings.h libarkpart_la_SOURCES = ark_part.cpp arkfactory.cpp zip.cpp tar.cpp \ filelistview.cpp arch.cpp lha.cpp \ compressedfile.cpp zoo.cpp rar.cpp \ - ar.cpp arkutils.cpp archiveformatdlg.cpp \ + ar.cpp artdeutils.cpp archiveformatdlg.cpp \ arkwidget.cpp searchbar.cpp \ addition.ui extraction.ui general.ui \ arkviewer.cpp sevenzip.cpp extractiondialog.cpp \ diff --git a/ark/arch.cpp b/ark/arch.cpp index 18a589a..cd3d186 100644 --- a/ark/arch.cpp +++ b/ark/arch.cpp @@ -47,7 +47,7 @@ // ark includes #include "arch.h" #include "arkwidget.h" -#include "arkutils.h" +#include "artdeutils.h" #include "filelistview.h" // the archive types diff --git a/ark/arj.cpp b/ark/arj.cpp index 146df76..79574b1 100644 --- a/ark/arj.cpp +++ b/ark/arj.cpp @@ -42,7 +42,7 @@ #include "arj.h" #include "arkwidget.h" #include "settings.h" -#include "arkutils.h" +#include "artdeutils.h" #include "filelistview.h" ArjArch::ArjArch( ArkWidget *_gui, const TQString & _fileName ) diff --git a/ark/ark_part.h b/ark/ark_part.h index 6ec3202..1057395 100644 --- a/ark/ark_part.h +++ b/ark/ark_part.h @@ -23,10 +23,10 @@ #ifndef ARK_PART_H #define ARK_PART_H -#include -#include -#include -#include +#include +#include +#include +#include #include #include diff --git a/ark/ark_part.rc b/ark/ark_part.rc index 086765f..44605ca 100644 --- a/ark/ark_part.rc +++ b/ark/ark_part.rc @@ -1,5 +1,5 @@ - + diff --git a/ark/ark_part_readonly.rc b/ark/ark_part_readonly.rc index 84f4f02..c325723 100644 --- a/ark/ark_part_readonly.rc +++ b/ark/ark_part_readonly.rc @@ -1,5 +1,5 @@ - + diff --git a/ark/arkfactory.h b/ark/arkfactory.h index 51b4933..5207ac4 100644 --- a/ark/arkfactory.h +++ b/ark/arkfactory.h @@ -21,7 +21,7 @@ #ifndef ARKFACTORY_H #define ARKFACTORY_H -#include +#include class ArkFactory : public KParts::Factory { diff --git a/ark/arkutils.cpp b/ark/arkutils.cpp deleted file mode 100644 index 52049d0..0000000 --- a/ark/arkutils.cpp +++ /dev/null @@ -1,230 +0,0 @@ -/* - - $Id$ - - ark -- archiver for the KDE project - - Copyright (C) - - 2002: Helio Chissini de Castro - 2001: Corel Corporation (author: Michael Jarrett, michaelj@corel.com) - 1999-2000: Corel Corporation (author: Emily Ezust, emilye@corel.com) - 1999: Francois-Xavier Duranceau duranceau@kde.org - 1997-1999: Rob Palmbos palm9744@kettering.edu - 2003: Hans Petter Bieker - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -*/ - -#include - -// C includes -#include -#include - -#include -#include -#include -#include - -#include -#include - -#ifdef _HPUX_SOURCE -#include -#endif - -// for statfs: -#ifdef BSD4_4 -#include -#elif defined(__linux__) -#include -#elif defined(__sun) -#include -#define STATFS statvfs -#elif defined(_AIX) -#include -#endif - -#ifndef STATFS -#define STATFS statfs -#endif - -// KDE includes -#include -#include -#include -#include - -// TQt includes -#include - -#include "arkutils.h" - -TQString ArkUtils::getTimeStamp(const TQString &_month, - const TQString &_day, - const TQString &_yearOrTime) -{ - // Make the date format sortable. - // Month is in _month, day is in _day. - // In _yearOrTime is either a year or a time. - // If it's March, we'll see the year for all dates up to October 1999. - // (five months' difference - e.g., if it's Apr, then get years up to Nov) - - char month[4]; - strncpy(month, _month.ascii(), 3); - month[3] = '\0'; - int nMonth = getMonth(month); - int nDay = _day.toInt(); - - kdDebug(1601) << "Month is " << nMonth << ", Day is " << nDay << endl; - - time_t t = time(0); - if (t == -1) - exit(1); - struct tm *now = localtime(&t); - int thisYear = now->tm_year + 1900; - int thisMonth = now->tm_mon + 1; - - TQString year, timestamp; - - if (_yearOrTime.contains(":")) - // it has a timestamp so we have to figure out the year - { - year.sprintf("%d", ArkUtils::getYear(nMonth, thisYear, thisMonth)); - timestamp = _yearOrTime; - } - else - { - year = _yearOrTime; - if (year.right(1) == " ") - year = year.left(4); - if (year.left(1) == " ") - year = year.right(4); - - timestamp = "??:??"; - } - - TQString retval; - retval.sprintf("%s-%.2d-%.2d %s", - year.utf8().data(), nMonth, nDay, - timestamp.utf8().data()); - return retval; -} - -int ArkUtils::getMonth(const char *strMonth) - // returns numeric value for three-char month string -{ - static char months[13][4] = { "", "Jan", "Feb", "Mar", "Apr", "May", "Jun", - "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}; - int nIndex; - for (nIndex = 1; nIndex < 13; ++nIndex) - { - if (0 == strcmp(strMonth, months[nIndex])) - return nIndex; - } - return 0; -} - -// This function gets the year from an LHA or ls -l timestamp. -// Note: LHA doesn't seem to display the year if the file is more -// than 6 months into the future, so this will fail to give the correct -// year (of course it is hoped that there are not too many files lying -// around from the future). - -int ArkUtils::getYear(int theMonth, int thisYear, int thisMonth) -{ - int monthDiff = TQABS(thisMonth - theMonth); - if (monthDiff > 6) - return (thisYear - 1); - else - return thisYear; -} - -TQString ArkUtils::fixYear(const TQString& strYear) -{ - // returns 4-digit year by guessing from two-char year string. - // Remember: this is used for file timestamps. There probably aren't any - // files that were created before 1970, so that's our cutoff. Of course, - // in 2070 we'll have some problems.... - - if ( strYear.length() != 2 ) return strYear; - - bool ok; - int y = strYear.toInt( &ok ); - - if ( ok ) - { - if ( y > 70 ) - y += 1900; - else - y += 2000; - - return TQString::number( y ); - } - else - return TQString(); -} - -bool -ArkUtils::haveDirPermissions( const TQString &strFile ) -{ - return ( access( TQFile::encodeName( strFile ), W_OK ) == 0 ); -} - -bool -ArkUtils::diskHasSpace(const TQString &dir, TDEIO::filesize_t size) - // check if disk has enough space to accommodate (a) new file(s) of - // the given size in the partition containing the given directory -{ - kdDebug( 1601 ) << "diskHasSpace() " << "dir: " << dir << " Size: " << size << endl; - - struct STATFS buf; - if (STATFS(TQFile::encodeName(dir), &buf) == 0) - { - double nAvailable = (double)buf.f_bavail * buf.f_bsize; - if ( nAvailable < (double)size ) - { - KMessageBox::error(0, i18n("You have run out of disk space.")); - return false; - } - } - else - { - // something bad happened - kdWarning( 1601 ) << "diskHasSpace() failed" << endl; - // Q_ASSERT(0); - } - return true; -} - -TDEIO::filesize_t -ArkUtils::getSizes(TQStringList *list) -{ - TDEIO::filesize_t sum = 0; - TQString str; - KDE_struct_stat st; - - for ( TQStringList::Iterator it = list->begin(); it != list->end(); ++it) - { - str = *it; - str = str.right(str.length()-5); - if (KDE_stat(TQFile::encodeName(str), &st ) < 0) - continue; - sum += st.st_size; - } - return sum; -} diff --git a/ark/arkutils.h b/ark/arkutils.h deleted file mode 100644 index baed64b..0000000 --- a/ark/arkutils.h +++ /dev/null @@ -1,56 +0,0 @@ -// -*-C++-*- emacs magic for .h files -/* - - $Id$ - - ark -- archiver for the KDE project - - Copyright (C) - - 1997-1999: Rob Palmbos palm9744@kettering.edu - 1999: Francois-Xavier Duranceau duranceau@kde.org - 1999-2000: Corel Corporation (author: Emily Ezust, emilye@corel.com) - 2001: Corel Corporation (author: Michael Jarrett, michaelj@corel.com) - 2003: Hans Petter Bieker - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -*/ - -#ifndef ARKUTILS_H -#define ARKUTILS_H - -#include - -#include - -class TQStringList; - -// various functions for massaging timestamps -namespace ArkUtils -{ - int getYear(int theMonth, int thisYear, int thisMonth); - int getMonth(const char *strMonth); - TQString fixYear(const TQString& strYear); - - TQString getTimeStamp(const TQString &month, - const TQString &day, - const TQString &year); - bool haveDirPermissions(const TQString &strFile); - bool diskHasSpace(const TQString &dir, TDEIO::filesize_t size); - TDEIO::filesize_t getSizes(TQStringList *list); -} - -#endif diff --git a/ark/arkviewer.cpp b/ark/arkviewer.cpp index 13dbfbe..7a2dda9 100644 --- a/ark/arkviewer.cpp +++ b/ark/arkviewer.cpp @@ -22,7 +22,7 @@ #include "arkviewer.h" #include -#include +#include #include #include #include diff --git a/ark/arkviewer.h b/ark/arkviewer.h index 5fc3849..af04c80 100644 --- a/ark/arkviewer.h +++ b/ark/arkviewer.h @@ -23,7 +23,7 @@ */ #include -#include +#include class ArkViewer : public KDialogBase { diff --git a/ark/arkwidget.cpp b/ark/arkwidget.cpp index 5931f8b..c49760d 100644 --- a/ark/arkwidget.cpp +++ b/ark/arkwidget.cpp @@ -75,7 +75,7 @@ #include "extractiondialog.h" #include "arkwidget.h" #include "filelistview.h" -#include "arkutils.h" +#include "artdeutils.h" #include "archiveformatinfo.h" #include "compressedfile.h" #include "searchbar.h" diff --git a/ark/artdeutils.cpp b/ark/artdeutils.cpp new file mode 100644 index 0000000..dbf5395 --- /dev/null +++ b/ark/artdeutils.cpp @@ -0,0 +1,230 @@ +/* + + $Id$ + + ark -- archiver for the KDE project + + Copyright (C) + + 2002: Helio Chissini de Castro + 2001: Corel Corporation (author: Michael Jarrett, michaelj@corel.com) + 1999-2000: Corel Corporation (author: Emily Ezust, emilye@corel.com) + 1999: Francois-Xavier Duranceau duranceau@kde.org + 1997-1999: Rob Palmbos palm9744@kettering.edu + 2003: Hans Petter Bieker + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +*/ + +#include + +// C includes +#include +#include + +#include +#include +#include +#include + +#include +#include + +#ifdef _HPUX_SOURCE +#include +#endif + +// for statfs: +#ifdef BSD4_4 +#include +#elif defined(__linux__) +#include +#elif defined(__sun) +#include +#define STATFS statvfs +#elif defined(_AIX) +#include +#endif + +#ifndef STATFS +#define STATFS statfs +#endif + +// KDE includes +#include +#include +#include +#include + +// TQt includes +#include + +#include "artdeutils.h" + +TQString ArkUtils::getTimeStamp(const TQString &_month, + const TQString &_day, + const TQString &_yearOrTime) +{ + // Make the date format sortable. + // Month is in _month, day is in _day. + // In _yearOrTime is either a year or a time. + // If it's March, we'll see the year for all dates up to October 1999. + // (five months' difference - e.g., if it's Apr, then get years up to Nov) + + char month[4]; + strncpy(month, _month.ascii(), 3); + month[3] = '\0'; + int nMonth = getMonth(month); + int nDay = _day.toInt(); + + kdDebug(1601) << "Month is " << nMonth << ", Day is " << nDay << endl; + + time_t t = time(0); + if (t == -1) + exit(1); + struct tm *now = localtime(&t); + int thisYear = now->tm_year + 1900; + int thisMonth = now->tm_mon + 1; + + TQString year, timestamp; + + if (_yearOrTime.contains(":")) + // it has a timestamp so we have to figure out the year + { + year.sprintf("%d", ArkUtils::getYear(nMonth, thisYear, thisMonth)); + timestamp = _yearOrTime; + } + else + { + year = _yearOrTime; + if (year.right(1) == " ") + year = year.left(4); + if (year.left(1) == " ") + year = year.right(4); + + timestamp = "??:??"; + } + + TQString retval; + retval.sprintf("%s-%.2d-%.2d %s", + year.utf8().data(), nMonth, nDay, + timestamp.utf8().data()); + return retval; +} + +int ArkUtils::getMonth(const char *strMonth) + // returns numeric value for three-char month string +{ + static char months[13][4] = { "", "Jan", "Feb", "Mar", "Apr", "May", "Jun", + "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}; + int nIndex; + for (nIndex = 1; nIndex < 13; ++nIndex) + { + if (0 == strcmp(strMonth, months[nIndex])) + return nIndex; + } + return 0; +} + +// This function gets the year from an LHA or ls -l timestamp. +// Note: LHA doesn't seem to display the year if the file is more +// than 6 months into the future, so this will fail to give the correct +// year (of course it is hoped that there are not too many files lying +// around from the future). + +int ArkUtils::getYear(int theMonth, int thisYear, int thisMonth) +{ + int monthDiff = TQABS(thisMonth - theMonth); + if (monthDiff > 6) + return (thisYear - 1); + else + return thisYear; +} + +TQString ArkUtils::fixYear(const TQString& strYear) +{ + // returns 4-digit year by guessing from two-char year string. + // Remember: this is used for file timestamps. There probably aren't any + // files that were created before 1970, so that's our cutoff. Of course, + // in 2070 we'll have some problems.... + + if ( strYear.length() != 2 ) return strYear; + + bool ok; + int y = strYear.toInt( &ok ); + + if ( ok ) + { + if ( y > 70 ) + y += 1900; + else + y += 2000; + + return TQString::number( y ); + } + else + return TQString(); +} + +bool +ArkUtils::haveDirPermissions( const TQString &strFile ) +{ + return ( access( TQFile::encodeName( strFile ), W_OK ) == 0 ); +} + +bool +ArkUtils::diskHasSpace(const TQString &dir, TDEIO::filesize_t size) + // check if disk has enough space to accommodate (a) new file(s) of + // the given size in the partition containing the given directory +{ + kdDebug( 1601 ) << "diskHasSpace() " << "dir: " << dir << " Size: " << size << endl; + + struct STATFS buf; + if (STATFS(TQFile::encodeName(dir), &buf) == 0) + { + double nAvailable = (double)buf.f_bavail * buf.f_bsize; + if ( nAvailable < (double)size ) + { + KMessageBox::error(0, i18n("You have run out of disk space.")); + return false; + } + } + else + { + // something bad happened + kdWarning( 1601 ) << "diskHasSpace() failed" << endl; + // Q_ASSERT(0); + } + return true; +} + +TDEIO::filesize_t +ArkUtils::getSizes(TQStringList *list) +{ + TDEIO::filesize_t sum = 0; + TQString str; + KDE_struct_stat st; + + for ( TQStringList::Iterator it = list->begin(); it != list->end(); ++it) + { + str = *it; + str = str.right(str.length()-5); + if (KDE_stat(TQFile::encodeName(str), &st ) < 0) + continue; + sum += st.st_size; + } + return sum; +} diff --git a/ark/artdeutils.h b/ark/artdeutils.h new file mode 100644 index 0000000..baed64b --- /dev/null +++ b/ark/artdeutils.h @@ -0,0 +1,56 @@ +// -*-C++-*- emacs magic for .h files +/* + + $Id$ + + ark -- archiver for the KDE project + + Copyright (C) + + 1997-1999: Rob Palmbos palm9744@kettering.edu + 1999: Francois-Xavier Duranceau duranceau@kde.org + 1999-2000: Corel Corporation (author: Emily Ezust, emilye@corel.com) + 2001: Corel Corporation (author: Michael Jarrett, michaelj@corel.com) + 2003: Hans Petter Bieker + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +*/ + +#ifndef ARKUTILS_H +#define ARKUTILS_H + +#include + +#include + +class TQStringList; + +// various functions for massaging timestamps +namespace ArkUtils +{ + int getYear(int theMonth, int thisYear, int thisMonth); + int getMonth(const char *strMonth); + TQString fixYear(const TQString& strYear); + + TQString getTimeStamp(const TQString &month, + const TQString &day, + const TQString &year); + bool haveDirPermissions(const TQString &strFile); + bool diskHasSpace(const TQString &dir, TDEIO::filesize_t size); + TDEIO::filesize_t getSizes(TQStringList *list); +} + +#endif diff --git a/ark/extractiondialog.cpp b/ark/extractiondialog.cpp index 8057828..9974252 100644 --- a/ark/extractiondialog.cpp +++ b/ark/extractiondialog.cpp @@ -48,7 +48,7 @@ #include #include -#include "arkutils.h" +#include "artdeutils.h" #include "settings.h" ExtractionDialog::ExtractionDialog( TQWidget *parent, const char *name, diff --git a/ark/lha.cpp b/ark/lha.cpp index 045be09..f0074aa 100644 --- a/ark/lha.cpp +++ b/ark/lha.cpp @@ -49,7 +49,7 @@ #include "settings.h" #include "arch.h" #include "lha.h" -#include "arkutils.h" +#include "artdeutils.h" #include "filelistview.h" LhaArch::LhaArch( ArkWidget *_gui, const TQString & _fileName ) diff --git a/ark/mainwindow.cpp b/ark/mainwindow.cpp index 2c9a957..21ffb08 100644 --- a/ark/mainwindow.cpp +++ b/ark/mainwindow.cpp @@ -32,8 +32,8 @@ #include #include #include -#include -#include +#include +#include #include #include #include diff --git a/ark/mainwindow.h b/ark/mainwindow.h index d448e8c..c878942 100644 --- a/ark/mainwindow.h +++ b/ark/mainwindow.h @@ -31,8 +31,8 @@ // KDE includes #include -#include -#include +#include +#include #include class ArkWidget; diff --git a/ark/rar.cpp b/ark/rar.cpp index 2b015f5..500b338 100644 --- a/ark/rar.cpp +++ b/ark/rar.cpp @@ -49,7 +49,7 @@ #include "arch.h" #include "settings.h" #include "rar.h" -#include "arkutils.h" +#include "artdeutils.h" #include "filelistview.h" RarArch::RarArch( ArkWidget *_gui, const TQString & _fileName ) diff --git a/ark/sevenzip.cpp b/ark/sevenzip.cpp index 3ddf02f..c683f67 100644 --- a/ark/sevenzip.cpp +++ b/ark/sevenzip.cpp @@ -39,7 +39,7 @@ #include "sevenzip.h" #include "arkwidget.h" #include "settings.h" -#include "arkutils.h" +#include "artdeutils.h" #include "filelistview.h" SevenZipArch::SevenZipArch( ArkWidget *gui, const TQString &filename ) diff --git a/ark/zoo.cpp b/ark/zoo.cpp index f94abdb..c9814b4 100644 --- a/ark/zoo.cpp +++ b/ark/zoo.cpp @@ -46,7 +46,7 @@ #include "arkwidget.h" #include "arch.h" #include "zoo.h" -#include "arkutils.h" +#include "artdeutils.h" #include "filelistview.h" static TQString fixTime( const TQString &_strTime ); -- cgit v1.2.1