Renaming of files in preparation for code style tools.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/50/head
Michele Calgaro 3 years ago
parent 2df45fd65d
commit 3a75bdfe83
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -384,7 +384,7 @@ void PageViewer::slotSetCaption(const TQString& cap)
void PageViewer::slotPaletteOrFontChanged()
{
kdDebug() << "PageViewer::slotPaletteOrFontChanged()" << endl;
// taken from KonqView (tdebase/konqueror/konq_view.cc)
// taken from KonqView (tdebase/konqueror/konq_view.cpp)
TQObject *obj = KParts::BrowserExtension::childObject(this);
if ( !obj ) // not all views have a browser extension !

@ -32,7 +32,7 @@
*/
#include <inttypes.h>
#include "boost-compat/remove_cv.hpp"
#include "boost-compat/remove_cv.h"
/**
* \namespace byte_io

@ -1,5 +1,5 @@
#include "boost-compat/static_assert.hpp"
#include "boost-compat/remove_cv.hpp"
#include "boost-compat/static_assert.h"
#include "boost-compat/remove_cv.h"
#ifdef HAVE_BOOST
#include <boost/type_traits/is_same.hpp>
#endif

@ -1,5 +1,5 @@
#ifndef BOOST_CHECKED_DELETE_HPP_INCLUDED
#define BOOST_CHECKED_DELETE_HPP_INCLUDED
#ifndef BOOST_CHECKED_DELETE_H_INCLUDED
#define BOOST_CHECKED_DELETE_H_INCLUDED
// MS compatible compilers support #pragma once
@ -66,4 +66,4 @@ template<class T> struct checked_array_deleter
} // namespace boost
#endif // #ifndef BOOST_CHECKED_DELETE_HPP_INCLUDED
#endif // #ifndef BOOST_CHECKED_DELETE_H_INCLUDED

@ -1,4 +1,4 @@
// Boost config.hpp configuration header file ------------------------------//
// Boost config.h configuration header file ------------------------------//
// (C) Copyright John Maddock 2002.
// Use, modification and distribution are subject to the
@ -7,15 +7,15 @@
// See http://www.boost.org/libs/config for most recent version.
// Boost config.hpp policy and rationale documentation has been moved to
// Boost config.h policy and rationale documentation has been moved to
// http://www.boost.org/libs/config
//
// CAUTION: This file is intended to be completely stable -
// DO NOT MODIFY THIS FILE!
//
#ifndef BOOST_CONFIG_HPP
#define BOOST_CONFIG_HPP
#ifndef BOOST_CONFIG_H
#define BOOST_CONFIG_H
// if we don't have a user config, then use the default location:
#if !defined(BOOST_USER_CONFIG) && !defined(BOOST_NO_USER_CONFIG)
@ -56,7 +56,7 @@
// get config suffix code:
#include <boost/config/suffix.hpp>
#endif // BOOST_CONFIG_HPP
#endif // BOOST_CONFIG_H

@ -6,8 +6,8 @@
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt).
#ifndef BOOST_CONFIG_ABI_PREFIX_HPP
# define BOOST_CONFIG_ABI_PREFIX_HPP
#ifndef BOOST_CONFIG_ABI_PREFIX_H
# define BOOST_CONFIG_ABI_PREFIX_H
#else
# error double inclusion of header boost/config/abi_prefix.hpp is an error
#endif

@ -9,10 +9,10 @@
// This header should be #included AFTER code that was preceded by a #include
// <boost/config/abi_prefix.hpp>.
#ifndef BOOST_CONFIG_ABI_PREFIX_HPP
#ifndef BOOST_CONFIG_ABI_PREFIX_H
# error Header boost/config/abi_prefix.hpp must only be used after boost/config/abi_prefix.hpp
#else
# undef BOOST_CONFIG_ABI_PREFIX_HPP
# undef BOOST_CONFIG_ABI_PREFIX_H
#endif
// the suffix header occurs after all of our code:

@ -5,7 +5,7 @@
/*
* LOCATION: see http://www.boost.org for most recent version.
* FILE auto_link.hpp
* FILE auto_link.h
* VERSION see <boost/version.hpp>
* DESCRIPTION: Automatic library inclusion for Borland/Microsoft compilers.
*/
@ -67,7 +67,7 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y.
***************************************************************************/
#ifdef __cplusplus
# ifndef BOOST_CONFIG_HPP
# ifndef BOOST_CONFIG_H
# include <boost/config.hpp>
# endif
#elif defined(_MSC_VER) && !defined(__MWERKS__) && !defined(__EDG_VERSION__)
@ -86,7 +86,7 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y.
|| (defined(__MWERKS__) && defined(_WIN32) && (__MWERKS__ >= 0x3000)) \
|| (defined(__ICL) && defined(_MSC_EXTENSIONS) && (_MSC_VER >= 1200))
#ifndef BOOST_VERSION_HPP
#ifndef BOOST_VERSION_H
# include <boost/version.hpp>
#endif

@ -34,7 +34,7 @@
# define BOOST_NO_TEMPLATE_TEMPLATES
#endif
// See also kai.hpp which checks a Kai-specific symbol for EH
// See also kai.h which checks a Kai-specific symbol for EH
# if !defined(__KCC) && !defined(__EXCEPTIONS)
# define BOOST_NO_EXCEPTIONS
# endif

@ -14,7 +14,7 @@
// GNU C++ compiler setup:
# if __GNUC__ == 2 && __GNUC_MINOR__ == 91
// egcs 1.1 won't parse shared_ptr.hpp without this:
// egcs 1.1 won't parse shared_ptr.h without this:
# define BOOST_NO_AUTO_PTR
# endif
# if __GNUC__ == 2 && __GNUC_MINOR__ < 95

@ -16,7 +16,7 @@
# define BOOST_NO_STDC_NAMESPACE
# endif
// see also common_edg.hpp which needs a special check for __KCC
// see also common_edg.h which needs a special check for __KCC
# if !defined(_EXCEPTIONS)
# define BOOST_NO_EXCEPTIONS
# endif

@ -38,7 +38,7 @@
// Requesting debug info (-g) with Boost.Python results
// in an internal compiler error for "static const"
// initialized in-class.
// >> Assertion: (../links/dbg_cstabs.cc, line 611)
// >> Assertion: (../links/dbg_cstabs.cpp, line 611)
// while processing ../test.cpp at line 0.
// (Jens Maurer according to Gottfried GanรŸauge 04 Mar 2002)
# define BOOST_NO_INCLASS_MEMBER_INITIALIZATION

@ -4,10 +4,10 @@
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifndef BOOST_CONFIG_REQUIRES_THREADS_HPP
#define BOOST_CONFIG_REQUIRES_THREADS_HPP
#ifndef BOOST_CONFIG_REQUIRES_THREADS_H
#define BOOST_CONFIG_REQUIRES_THREADS_H
#ifndef BOOST_CONFIG_HPP
#ifndef BOOST_CONFIG_H
# include <boost/config.hpp>
#endif
@ -89,4 +89,4 @@
#endif // BOOST_HAS_THREADS
#endif // BOOST_CONFIG_REQUIRES_THREADS_HPP
#endif // BOOST_CONFIG_REQUIRES_THREADS_H

@ -45,7 +45,7 @@
#if !defined(_GLIBCPP_USE_LONG_LONG) \
&& !defined(_GLIBCXX_USE_LONG_LONG)\
&& defined(BOOST_HAS_LONG_LONG)
// May have been set by compiler/*.hpp, but "long long" without library
// May have been set by compiler/*.h, but "long long" without library
// support is useless.
# undef BOOST_HAS_LONG_LONG
#endif

@ -1,4 +1,4 @@
// Boost config.hpp configuration header file ------------------------------//
// Boost config.h configuration header file ------------------------------//
// (C) Copyright John Maddock 2001 - 2003.
// (C) Copyright Darin Adler 2001.
@ -14,15 +14,15 @@
// See http://www.boost.org for most recent version.
// Boost config.hpp policy and rationale documentation has been moved to
// Boost config.h policy and rationale documentation has been moved to
// http://www.boost.org/libs/config
//
// This file is intended to be stable, and relatively unchanging.
// It should contain boilerplate code only - no compiler specific
// code unless it is unavoidable - no changes unless unavoidable.
#ifndef BOOST_CONFIG_SUFFIX_HPP
#define BOOST_CONFIG_SUFFIX_HPP
#ifndef BOOST_CONFIG_SUFFIX_H
#define BOOST_CONFIG_SUFFIX_H
//
// look for long long by looking for the appropriate macros in <limits.h>.

@ -1,4 +1,4 @@
// boost/config/user.hpp ---------------------------------------------------//
// boost/config/user.h ---------------------------------------------------//
// (C) Copyright John Maddock 2001.
// Use, modification and distribution are subject to the

@ -1,8 +1,8 @@
#ifndef BOOST_INTRUSIVE_PTR_HPP_INCLUDED
#define BOOST_INTRUSIVE_PTR_HPP_INCLUDED
#ifndef BOOST_INTRUSIVE_PTR_H_INCLUDED
#define BOOST_INTRUSIVE_PTR_H_INCLUDED
//
// intrusive_ptr.hpp
// intrusive_ptr.h
//
// Copyright (c) 2001, 2002 Peter Dimov
//
@ -269,4 +269,4 @@ template<class E, class T, class Y> std::basic_ostream<E, T> & operator<< (std::
# pragma warning(pop)
#endif
#endif // #ifndef BOOST_INTRUSIVE_PTR_HPP_INCLUDED
#endif // #ifndef BOOST_INTRUSIVE_PTR_H_INCLUDED

@ -1,4 +1,4 @@
// Boost next_prior.hpp header file ---------------------------------------//
// Boost next_prior.h header file ---------------------------------------//
// (C) Copyright Dave Abrahams and Daniel Walker 1999-2003. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
@ -9,8 +9,8 @@
// Revision History
// 13 Dec 2003 Added next(x, n) and prior(x, n) (Daniel Walker)
#ifndef BOOST_NEXT_PRIOR_HPP_INCLUDED
#define BOOST_NEXT_PRIOR_HPP_INCLUDED
#ifndef BOOST_NEXT_PRIOR_H_INCLUDED
#define BOOST_NEXT_PRIOR_H_INCLUDED
#include <iterator>
@ -48,4 +48,4 @@ inline T prior(T x, Distance n)
} // namespace boost
#endif // BOOST_NEXT_PRIOR_HPP_INCLUDED
#endif // BOOST_NEXT_PRIOR_H_INCLUDED

@ -1,4 +1,4 @@
// Boost noncopyable.hpp header file --------------------------------------//
// Boost noncopyable.h header file --------------------------------------//
// (C) Copyright Beman Dawes 1999-2003. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
@ -6,8 +6,8 @@
// See http://www.boost.org/libs/utility for documentation.
#ifndef BOOST_NONCOPYABLE_HPP_INCLUDED
#define BOOST_NONCOPYABLE_HPP_INCLUDED
#ifndef BOOST_NONCOPYABLE_H_INCLUDED
#define BOOST_NONCOPYABLE_H_INCLUDED
namespace boost {
@ -33,4 +33,4 @@ typedef noncopyable_::noncopyable noncopyable;
} // namespace boost
#endif // BOOST_NONCOPYABLE_HPP_INCLUDED
#endif // BOOST_NONCOPYABLE_H_INCLUDED

@ -1,7 +1,7 @@
#ifndef BOOST_TT_REMOVE_CV_HPP_INCLUDED
#define BOOST_TT_REMOVE_CV_HPP_INCLUDED
#ifndef BOOST_TT_DETAIL_CV_TRAITS_IMPL_HPP_INCLUDED
#define BOOST_TT_DETAIL_CV_TRAITS_IMPL_HPP_INCLUDED
#ifndef BOOST_TT_REMOVE_CV_H_INCLUDED
#define BOOST_TT_REMOVE_CV_H_INCLUDED
#ifndef BOOST_TT_DETAIL_CV_TRAITS_IMPL_H_INCLUDED
#define BOOST_TT_DETAIL_CV_TRAITS_IMPL_H_INCLUDED
// ADAPTED (TAKEN) FROM BOOST
//
// (C) Copyright Dave Abrahams, Steve Cleary, Beman Dawes, Howard

@ -1,5 +1,5 @@
#ifndef BOOST_SCOPED_PTR_HPP_INCLUDED
#define BOOST_SCOPED_PTR_HPP_INCLUDED
#ifndef BOOST_SCOPED_PTR_H_INCLUDED
#define BOOST_SCOPED_PTR_H_INCLUDED
// ADAPTED FOR indexlib
@ -13,7 +13,7 @@
// http://www.boost.org/libs/smart_ptr/scoped_ptr.htm
//
#include "checked_delete.hpp"
#include "checked_delete.h"
#include <memory> // for std::auto_ptr
#include <assert.h>
@ -115,4 +115,4 @@ template<class T> inline T * get_pointer(scoped_ptr<T> const & p)
} // namespace boost
#endif // #ifndef BOOST_SCOPED_PTR_HPP_INCLUDED
#endif // #ifndef BOOST_SCOPED_PTR_H_INCLUDED

@ -1,8 +1,8 @@
#ifndef BOOST_SHARED_PTR_HPP_INCLUDED
#define BOOST_SHARED_PTR_HPP_INCLUDED
#ifndef BOOST_SHARED_PTR_H_INCLUDED
#define BOOST_SHARED_PTR_H_INCLUDED
//
// shared_ptr.hpp
// shared_ptr.h
//
// (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
// Copyright (c) 2001, 2002, 2003 Peter Dimov
@ -470,4 +470,4 @@ template<class D, class T> D * get_deleter(shared_ptr<T> const & p)
#endif // #if defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(BOOST_MSVC6_MEMBER_TEMPLATES)
#endif // #ifndef BOOST_SHARED_PTR_HPP_INCLUDED
#endif // #ifndef BOOST_SHARED_PTR_H_INCLUDED

@ -1,8 +1,8 @@
#ifndef LPC_SMART_PTR_HPP1119293317_INCLUDE_GUARD_
#define LPC_SMART_PTR_HPP1119293317_INCLUDE_GUARD_
#ifndef LPC_SMART_PTR_H1119293317_INCLUDE_GUARD_
#define LPC_SMART_PTR_H1119293317_INCLUDE_GUARD_
//
// smart_ptr.hpp
// smart_ptr.h
//
// For convenience, this header includes the rest of the smart
// pointer library headers.
@ -28,4 +28,4 @@
#endif
#endif /* LPC_SMART_PTR_HPP1119293317_INCLUDE_GUARD_ */
#endif /* LPC_SMART_PTR_H1119293317_INCLUDE_GUARD_ */

@ -0,0 +1,11 @@
#ifndef LPC_STATIC_ASSERT_H1119293317_INCLUDE_GUARD_
#define LPC_STATIC_ASSERT_H1119293317_INCLUDE_GUARD_
#ifdef HAVE_BOOST
#include <boost/static_assert.hpp>
#elif !defined( BOOST_STATIC_ASSERT )
#define BOOST_STATIC_ASSERT( x )
#endif
#endif /* LPC_STATIC_ASSERT_H1119293317_INCLUDE_GUARD_ */

@ -1,11 +0,0 @@
#ifndef LPC_STATIC_ASSERT_HPP1119293317_INCLUDE_GUARD_
#define LPC_STATIC_ASSERT_HPP1119293317_INCLUDE_GUARD_
#ifdef HAVE_BOOST
#include <boost/static_assert.hpp>
#elif !defined( BOOST_STATIC_ASSERT )
#define BOOST_STATIC_ASSERT( x )
#endif
#endif /* LPC_STATIC_ASSERT_HPP1119293317_INCLUDE_GUARD_ */

@ -1,8 +1,8 @@
#ifndef BOOST_WEAK_PTR_HPP_INCLUDED
#define BOOST_WEAK_PTR_HPP_INCLUDED
#ifndef BOOST_WEAK_PTR_H_INCLUDED
#define BOOST_WEAK_PTR_H_INCLUDED
//
// weak_ptr.hpp
// weak_ptr.h
//
// Copyright (c) 2001, 2002, 2003 Peter Dimov
//
@ -189,4 +189,4 @@ template<class T> shared_ptr<T> make_shared(weak_ptr<T> const & r)
# pragma warning(pop)
#endif
#endif // #ifndef BOOST_WEAK_PTR_HPP_INCLUDED
#endif // #ifndef BOOST_WEAK_PTR_H_INCLUDED

@ -19,4 +19,4 @@ if test "x$have_boost" = "xyes"; then
CXXFLAGS="-DHAVE_BOOST $CXXFLAGS"
fi

@ -39,7 +39,7 @@
#include <functional>
#include <string.h>
#include "format.h"
#include "boost-compat/next_prior.hpp"
#include "boost-compat/next_prior.h"
ifile::ifile( std::string name ):

@ -34,7 +34,7 @@
#include "index.h"
#include "slow.h"
#include "boost-compat/noncopyable.hpp"
#include "boost-compat/noncopyable.h"
/**
* \see class slow which should be merged into this one.

@ -33,7 +33,7 @@
#include "logfile.h"
#include <iostream>
#include <algorithm>
#include "boost-compat/next_prior.hpp"
#include "boost-compat/next_prior.h"
#include "format.h"
namespace {

@ -35,8 +35,8 @@
#include "bitio.h"
#include "compat.h"
#include "manager.h"
#include "boost-compat/static_assert.hpp"
#include "boost-compat/scoped_ptr.hpp"
#include "boost-compat/static_assert.h"
#include "boost-compat/scoped_ptr.h"
#ifdef HAVE_BOOST
#include <boost/type_traits/is_convertible.hpp>
#endif

@ -34,7 +34,7 @@
#include <inttypes.h>
#include <iostream>
#include "boost-compat/static_assert.hpp"
#include "boost-compat/static_assert.h"
#ifdef HAVE_BOOST
#include <boost/type_traits.hpp>
#endif

@ -34,7 +34,7 @@
#include <iostream>
#include <string>
#include "boost-compat/scoped_ptr.hpp"
#include "boost-compat/scoped_ptr.h"
#include "manager.h"
#include "memvector.h"

@ -1,5 +1,5 @@
/***************************************************************************
pablib.cxx - description
pablib.cpp - description
-------------------
begin : Tue Jul 4 2000
copyright : (C) 2000 by Hans Dijkema

@ -1,5 +1,5 @@
/***************************************************************************
pablib.hxx - description
pablib.h - description
-------------------
begin : Tue Jul 4 2000
copyright : (C) 2000 by Hans Dijkema
@ -16,8 +16,8 @@
***************************************************************************/
#ifndef PAB_LIB_HXX
#define PAB_LIB_HXX
#ifndef PAB_LIB_H
#define PAB_LIB_H
#include <tdelocale.h>
#include <tqfile.h>

@ -17,7 +17,7 @@
</general>
<kdevfileview>
<groups>
<group pattern="*.cpp;*.cxx;*.h" name="Sources" />
<group pattern="*.cpp;*.h" name="Sources" />
<group pattern="*.ui" name="User Interface" />
<group pattern="*.png" name="Icons" />
<group pattern="*.po;*.ts" name="Translations" />

@ -255,7 +255,7 @@ void KMail::FolderDiaACLTab::ListViewItem::setPermissions( unsigned int permissi
void KMail::FolderDiaACLTab::ListViewItem::load( const ACLListEntry& entry )
{
// Don't allow spaces in userids. If you need this, fix the slave->app communication,
// since it uses space as a separator (imap4.cc, look for GETACL)
// since it uses space as a separator (imap4.cpp, look for GETACL)
// It's ok in distribution list names though, that's why this check is only done here
// and also why there's no validator on the lineedit.
if ( entry.userId.contains( ' ' ) )

@ -38,12 +38,12 @@ install(
tde_add_executable( kmailcvt AUTOMOC
SOURCES
kimportpagedlg.ui kimportpage.cpp kselfilterpagedlg.ui
kselfilterpage.cpp filters.cxx filter_oe.cxx kmailcvt.cpp main.cpp
filter_pmail.cxx filter_plain.cxx filter_outlook.cxx filter_mbox.cxx
filter_evolution.cxx filter_mailapp.cxx filter_evolution_v2.cxx
filter_opera.cxx filter_thunderbird.cxx filter_kmail_maildir.cxx
filter_sylpheed.cxx filter_thebat.cxx filter_lnotes.cxx
filter_kmail_archive.cxx
kselfilterpage.cpp filters.cpp filter_oe.cpp kmailcvt.cpp main.cpp
filter_pmail.cpp filter_plain.cpp filter_outlook.cpp filter_mbox.cpp
filter_evolution.cpp filter_mailapp.cpp filter_evolution_v2.cpp
filter_opera.cpp filter_thunderbird.cpp filter_kmail_maildir.cpp
filter_sylpheed.cpp filter_thebat.cpp filter_lnotes.cpp
filter_kmail_archive.cpp
LINK tdeio-shared
DESTINATION ${BIN_INSTALL_DIR}
)

@ -1,32 +1,32 @@
bin_PROGRAMS = kmailcvt
kmailcvt_SOURCES = kimportpagedlg.ui kimportpage.cpp kselfilterpagedlg.ui \
kselfilterpage.cpp filters.cxx filter_oe.cxx kmailcvt.cpp \
main.cpp filter_pmail.cxx filter_plain.cxx filter_outlook.cxx \
filter_mbox.cxx filter_evolution.cxx filter_mailapp.cxx \
filter_evolution_v2.cxx filter_opera.cxx filter_thunderbird.cxx \
filter_kmail_maildir.cxx filter_sylpheed.cxx filter_thebat.cxx \
filter_lnotes.cxx filter_kmail_archive.cxx
kselfilterpage.cpp filters.cpp filter_oe.cpp kmailcvt.cpp \
main.cpp filter_pmail.cpp filter_plain.cpp filter_outlook.cpp \
filter_mbox.cpp filter_evolution.cpp filter_mailapp.cpp \
filter_evolution_v2.cpp filter_opera.cpp filter_thunderbird.cpp \
filter_kmail_maildir.cpp filter_sylpheed.cpp filter_thebat.cpp \
filter_lnotes.cpp filter_kmail_archive.cpp
kmailcvt_LDADD = $(LIB_TDEFILE)
EXTRA_DIST = main.cpp kmailcvt.cpp kimportpage.cpp kimportpage.h \
kselfilterpage.cpp kselfilterpage.h kmailcvt.h \
kmailcvt.desktop filter_oe.cxx filter_oe.hxx \
filters.cxx filters.hxx \
kmailcvt.desktop filter_oe.cpp filter_oe.h \
filters.cpp filters.h \
PAB_format.html sv9429424.gif \
filter_pmail.cxx filter_pmail.hxx \
filter_plain.cxx filter_plain.hxx \
filter_mbox.cxx filter_mbox.hxx \
filter_evolution.cxx filter_evolution.hxx \
filter_mailapp.hxx filter_mailapp.cxx \
filter_opera.hxx filter_opera.cxx \
filter_evolution_v2.hxx filter_evolution_v2.cxx \
filter_thunderbird.hxx filter_thunderbird.cxx \
filter_kmail_maildir.hxx filter_kmail_maildir.cxx \
filter_sylpheed.hxx filter_sylpheed.cxx \
filter_thebat.hxx filter_thebat.cxx filter_lnotes.hxx filter_lnotes.cxx \
filter_kmail_archive.cxx fitler_kmail_archive.hxx
filter_pmail.cpp filter_pmail.h \
filter_plain.cpp filter_plain.h \
filter_mbox.cpp filter_mbox.h \
filter_evolution.cpp filter_evolution.h \
filter_mailapp.h filter_mailapp.cpp \
filter_opera.h filter_opera.cpp \
filter_evolution_v2.h filter_evolution_v2.cpp \
filter_thunderbird.h filter_thunderbird.cpp \
filter_kmail_maildir.h filter_kmail_maildir.cpp \
filter_sylpheed.h filter_sylpheed.cpp \
filter_thebat.h filter_thebat.cpp filter_lnotes.h filter_lnotes.cpp \
filter_kmail_archive.cpp fitler_kmail_archive.h
install-data-local: uninstall.desktop
$(mkinstalldirs) $(DESTDIR)$(kde_appsdir)/Utilities
@ -45,7 +45,7 @@ kmailcvt_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE
KDE_ICON=AUTO
messages: rc.cpp
LIST=`find . -name \*.h -o -name \*.hh -o -name \*.H -o -name \*.hxx -o -name \*.hpp -o -name \*.cpp -o -name \*.cc -o -name \*.cxx -o -name \*.ecpp -o -name \*.C`; \
LIST=`find . -name \*.h -o -name \*.cpp`; \
if test -n "$$LIST"; then \
$(XGETTEXT) $$LIST -o $(podir)/kmailcvt.pot; \
fi

@ -7,9 +7,9 @@ with KMail via its DCOP interface to add messages.
Writing a filter
----------------
...is very easy. Create two files filter_myformat.cxx and filter_myformat.hxx
and add "filter_myformat.cxx" to the end of the kmailcvt_SOURCES line in
Makefile.am and "filter_myformat.cxx filter_myformat.hxx" to the end of the
...is very easy. Create two files filter_myformat.cpp and filter_myformat.h
and add "filter_myformat.cpp" to the end of the kmailcvt_SOURCES line in
Makefile.am and "filter_myformat.cpp filter_myformat.h" to the end of the
EXTRA_DIST line in Makefile.am. Now run "make -f Makefile.cvs; ./configure" in
your tdepim source directory.

@ -1,5 +1,5 @@
/*
* filter_evolution.cxx
* filter_evolution.cpp
* Author : Simon MARTIN <simartin@users.sourceforge.net>
* Copyright (c) 2004 Simon MARTIN
*
@ -18,7 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "filter_evolution.hxx"
#include "filter_evolution.h"
#include <config.h>
#include <tdelocale.h>

@ -1,5 +1,5 @@
/*
* filter_evolution.hxx
* filter_evolution.h
* Author : Simon MARTIN <simartin@users.sourceforge.net>
* Copyright (c) 2004 Simon MARTIN
*
@ -18,10 +18,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef FILTER_EVOLUTION_HXX
#define FILTER_EVOLUTION_HXX
#ifndef FILTER_EVOLUTION_H
#define FILTER_EVOLUTION_H
#include "filters.hxx"
#include "filters.h"
/**
* Imports Evolution mboxes recursively, keeping the folder structure.

@ -1,5 +1,5 @@
/***************************************************************************
filter_evolution_v2.cxx - Evolution 2.0.x mail import
filter_evolution_v2.cpp - Evolution 2.0.x mail import
-------------------
begin : Januar 26 2005
copyright : (C) 2005 by Danny Kukawka
@ -16,7 +16,7 @@
* *
***************************************************************************/
#include "filter_evolution_v2.hxx"
#include "filter_evolution_v2.h"
#include <config.h>
#include <tdelocale.h>

@ -1,5 +1,5 @@
/***************************************************************************
filter_evolution_v2.hxx - Evolution 2.0.x mail import
filter_evolution_v2.h - Evolution 2.0.x mail import
-------------------
begin : Januar 26 2005
copyright : (C) 2005 by Danny Kukawka
@ -16,10 +16,10 @@
* *
***************************************************************************/
#ifndef FILTER_EVOLUTION_V2_HXX
#define FILTER_EVOLUTION_V2_HXX
#ifndef FILTER_EVOLUTION_V2_H
#define FILTER_EVOLUTION_V2_H
#include "filters.hxx"
#include "filters.h"
/**
* Imports Evolution v2.x mail folder recursively, keeping the folder structure.

@ -16,7 +16,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "filter_kmail_archive.hxx"
#include "filter_kmail_archive.h"
#include <tdelocale.h>

@ -16,10 +16,10 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef FILTER_KMAIL_ARCHIVE_HXX
#define FILTER_KMAIL_ARCHIVE_HXX
#ifndef FILTER_KMAIL_ARCHIVE_H
#define FILTER_KMAIL_ARCHIVE_H
#include "filters.hxx"
#include "filters.h"
class FilterKMailArchive : public Filter
{

@ -1,5 +1,5 @@
/***************************************************************************
filter_kmail_maildir.cxx - Kmail maildir mail import
filter_kmail_maildir.cpp - Kmail maildir mail import
-------------------
begin : April 06 2005
copyright : (C) 2005 by Danny Kukawka
@ -15,7 +15,7 @@
* *
***************************************************************************/
#include "filter_kmail_maildir.hxx"
#include "filter_kmail_maildir.h"
#include <config.h>
#include <tdelocale.h>

@ -1,5 +1,5 @@
/***************************************************************************
filter_kmail_maildir.hxx - Kmail maildir mail import
filter_kmail_maildir.h - Kmail maildir mail import
-------------------
begin : April 06 2005
copyright : (C) 2005 by Danny Kukawka
@ -14,10 +14,10 @@
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef FILTER_KMAIL_MAILDIR_HXX
#define FILTER_KMAIL_MAILDIR_HXX
#ifndef FILTER_KMAIL_MAILDIR_H
#define FILTER_KMAIL_MAILDIR_H
#include "filters.hxx"
#include "filters.h"
/**
* Imports KMail mail folder with maildir format recursively, recreating the folder structure.

@ -1,5 +1,5 @@
/***************************************************************************
filter_lnotes.cxx - Lotus Notes Structured Text mail import
filter_lnotes.cpp - Lotus Notes Structured Text mail import
-------------------
begin : Wed Feb 16, 2005
copyright : (C) 2005 by Robert Rockers
@ -23,7 +23,7 @@
#include <kdebug.h>
#include <tqfileinfo.h>
#include "filter_lnotes.hxx"
#include "filter_lnotes.h"
/** Default constructor. */
FilterLNotes::FilterLNotes() :
@ -57,7 +57,7 @@ void FilterLNotes::import(FilterInfo *info) {
totalFiles = filenames.count();
inf->setOverall(0);
// See filter_mbox.cxx for better reference.
// See filter_mbox.cpp for better reference.
for ( TQStringList::Iterator filename = filenames.begin(); filename != filenames.end(); ++filename ) {
++currentFile;
@ -75,7 +75,7 @@ void FilterLNotes::import(FilterInfo *info) {
*/
void FilterLNotes::ImportLNotes(const TQString& file) {
// See Filter_pmail.cxx for better reference
// See Filter_pmail.cpp for better reference
// Format of a Lotus Notes 5 Structured Text Document w form feed
// Each email begins with a custom Header Principal:

@ -1,5 +1,5 @@
/***************************************************************************
filter_lnotes.hxx - Lotus Notes Structured Text mail import
filter_lnotes.h - Lotus Notes Structured Text mail import
-------------------
begin : Wed Feb 16, 2005
copyright : (C) 2005 by Robert Rockers
@ -15,10 +15,10 @@
* *
***************************************************************************/
#ifndef FILTER_LNOTES_HXX
#define FILTER_LNOTES_HXX
#ifndef FILTER_LNOTES_H
#define FILTER_LNOTES_H
#include "filters.hxx"
#include "filters.h"
/**imports Lotus Notes Structured Text Archives and archvies messages into KMail
*@author Robert Rockers

@ -1,5 +1,5 @@
/***************************************************************************
filter_mailapp.cxx - OS X Mail App import
filter_mailapp.cpp - OS X Mail App import
-------------------
copyright : (C) 2004 by Chris Howells
email : howells@kde.org
@ -26,7 +26,7 @@
#include <tdetempfile.h>
#include <kdebug.h>
#include "filter_mailapp.hxx"
#include "filter_mailapp.h"
FilterMailApp::FilterMailApp() :
Filter( i18n("Import From OS X Mail"),

@ -1,5 +1,5 @@
/***************************************************************************
filter_mailapp.hxx - OS X Mail App import
filter_mailapp.h - OS X Mail App import
-------------------
copyright : (C) 2004 by Chris Howells
email : howells@kde.org
@ -10,10 +10,10 @@
***************************************************************************/
#ifndef FILTER_MAILAPP_HXX
#define FILTER_MAILAPP_HXX
#ifndef FILTER_MAILAPP_H
#define FILTER_MAILAPP_H
#include "filters.hxx"
#include "filters.h"
/**
*imports mbox archives messages into KMail

@ -1,5 +1,5 @@
/***************************************************************************
filter_mbox.cxx - mbox mail import
filter_mbox.cpp - mbox mail import
-------------------
begin : Sat Apr 5 2003
copyright : (C) 2003 by Laurence Anderson
@ -21,7 +21,7 @@
#include <tdetempfile.h>
#include <kdebug.h>
#include "filter_mbox.hxx"
#include "filter_mbox.h"
FilterMBox::FilterMBox() :

@ -1,5 +1,5 @@
/***************************************************************************
filter_mbox.hxx - mbox mail import
filter_mbox.h - mbox mail import
-------------------
begin : Sat Apr 5 2003
copyright : (C) 2003 by Laurence Anderson
@ -15,10 +15,10 @@
* *
***************************************************************************/
#ifndef FILTER_MBOX_HXX
#define FILTER_MBOX_HXX
#ifndef FILTER_MBOX_H
#define FILTER_MBOX_H
#include "filters.hxx"
#include "filters.h"
/**
* imports mbox archives messages into KMail

@ -1,5 +1,5 @@
/***************************************************************************
filter_oe.cxx - Outlook Express mail import
filter_oe.cpp - Outlook Express mail import
-------------------
begin : Sat Feb 1 2003
copyright : (C) 2003 by Laurence Anderson
@ -25,7 +25,7 @@
#include <tdetempfile.h>
#include <kdebug.h>
#include "filter_oe.hxx"
#include "filter_oe.h"
#define OE4_SIG_1 0x36464d4a
#define OE4_SIG_2 0x00010003

@ -1,5 +1,5 @@
/***************************************************************************
filter_oe.hxx - Outlook Express mail import
filter_oe.h - Outlook Express mail import
-------------------
begin : Sat Feb 1 2003
copyright : (C) 2003 by Laurence Anderson
@ -15,10 +15,10 @@
* *
***************************************************************************/
#ifndef FILTER_OE_HXX
#define FILTER_OE_HXX
#ifndef FILTER_OE_H
#define FILTER_OE_H
#include "filters.hxx"
#include "filters.h"
/**
*imports outlook text messages into KMail

@ -1,5 +1,5 @@
/***************************************************************************
filter_opera.cxx - Opera mail import
filter_opera.cpp - Opera mail import
-------------------
begin : Januar 26 2005
copyright : (C) 2005 by Danny Kukawka
@ -21,7 +21,7 @@
#include <tdetempfile.h>
#include <kdebug.h>
#include "filter_opera.hxx"
#include "filter_opera.h"
FilterOpera::FilterOpera() :

@ -1,5 +1,5 @@
/***************************************************************************
filter_opera.hxx - Opera mail import
filter_opera.h - Opera mail import
-------------------
begin : Januar 26 2005
copyright : (C) 2005 by Danny Kukawka
@ -15,10 +15,10 @@
* *
***************************************************************************/
#ifndef FILTER_OPERA_HXX
#define FILTER_OPERA_HXX
#ifndef FILTER_OPERA_H
#define FILTER_OPERA_H
#include "filters.hxx"
#include "filters.h"
/**
*imports opera account-archives into KMail

@ -1,5 +1,5 @@
/***************************************************************************
filter_opera.cxx - Outlook mail import
filter_opera.cpp - Outlook mail import
-------------------
begin : February 01 2005
copyright : (C) 2005 by Danny Kukawka
@ -22,7 +22,7 @@
#include <tdetempfile.h>
#include <kdebug.h>
#include "filter_outlook.hxx"
#include "filter_outlook.h"
FilterOutlook::FilterOutlook() :
Filter( i18n("Import Outlook Emails"),

@ -1,5 +1,5 @@
/***************************************************************************
filter_opera.hxx - Outlook mail import
filter_opera.h - Outlook mail import
-------------------
begin : Januar 26 2005
copyright : (C) 2005 by Danny Kukawka
@ -15,10 +15,10 @@
* *
***************************************************************************/
#ifndef FILTER_OUTLOOK_HXX
#define FILTER_OUTLOOK_HXX
#ifndef FILTER_OUTLOOK_H
#define FILTER_OUTLOOK_H
#include "filters.hxx"
#include "filters.h"
/**
* imports mails from Outlook pst-files into KMail

@ -1,5 +1,5 @@
/***************************************************************************
FilterPlain.cxx - Plain mail import
FilterPlain.cpp - Plain mail import
-------------------
begin : Fri Jun 14 2002
copyright : (C) 2002 by Laurence Anderson
@ -20,7 +20,7 @@
#include <tdefiledialog.h>
#include <libgen.h>
#include "filter_plain.hxx"
#include "filter_plain.h"
FilterPlain::FilterPlain() :

@ -1,5 +1,5 @@
/***************************************************************************
FilterPlain.hxx - Plain mail import
FilterPlain.h - Plain mail import
-------------------
begin : Fri Jun 24 2002
copyright : (C) 2002 by Laurence Anderson
@ -15,10 +15,10 @@
* *
***************************************************************************/
#ifndef FILTER_PLAIN_HXX
#define FILTER_PLAIN_HXX
#ifndef FILTER_PLAIN_H
#define FILTER_PLAIN_H