diff options
Diffstat (limited to 'tdeioslave')
-rw-r--r-- | tdeioslave/file/CMakeLists.txt | 2 | ||||
-rw-r--r-- | tdeioslave/file/Makefile.am | 2 | ||||
-rw-r--r-- | tdeioslave/file/file.cpp (renamed from tdeioslave/file/file.cc) | 0 | ||||
-rw-r--r-- | tdeioslave/ftp/CMakeLists.txt | 2 | ||||
-rw-r--r-- | tdeioslave/ftp/Makefile.am | 2 | ||||
-rw-r--r-- | tdeioslave/ftp/ftp.cpp (renamed from tdeioslave/ftp/ftp.cc) | 4 | ||||
-rw-r--r-- | tdeioslave/http/CMakeLists.txt | 2 | ||||
-rw-r--r-- | tdeioslave/http/Makefile.am | 2 | ||||
-rw-r--r-- | tdeioslave/http/README.webdav | 2 | ||||
-rw-r--r-- | tdeioslave/http/http.cpp (renamed from tdeioslave/http/http.cc) | 0 | ||||
-rw-r--r-- | tdeioslave/http/http_cache_cleaner.cpp | 4 | ||||
-rw-r--r-- | tdeioslave/iso/Makefile.am | 2 | ||||
-rw-r--r-- | tdeioslave/iso/iso.cpp | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/tdeioslave/file/CMakeLists.txt b/tdeioslave/file/CMakeLists.txt index 6456e962b..0215e1522 100644 --- a/tdeioslave/file/CMakeLists.txt +++ b/tdeioslave/file/CMakeLists.txt @@ -44,7 +44,7 @@ tde_create_translated_desktop( set( target tdeio_file ) set( ${target}_SRCS - file.cc + file.cpp ) tde_add_kpart( ${target} AUTOMOC diff --git a/tdeioslave/file/Makefile.am b/tdeioslave/file/Makefile.am index c7f35b51f..d31b69b41 100644 --- a/tdeioslave/file/Makefile.am +++ b/tdeioslave/file/Makefile.am @@ -8,7 +8,7 @@ INCLUDES = $(all_includes) kde_module_LTLIBRARIES = tdeio_file.la -tdeio_file_la_SOURCES = file.cc +tdeio_file_la_SOURCES = file.cpp tdeio_file_la_LIBADD = $(LIB_TDEIO) $(LIB_TQT) $(LIB_TDECORE) $(ACL_LIBS) tdeio_file_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) $(top_builddir)/dcop/libDCOP.la noinst_HEADERS = file.h diff --git a/tdeioslave/file/file.cc b/tdeioslave/file/file.cpp index fda72f2d5..fda72f2d5 100644 --- a/tdeioslave/file/file.cc +++ b/tdeioslave/file/file.cpp diff --git a/tdeioslave/ftp/CMakeLists.txt b/tdeioslave/ftp/CMakeLists.txt index 7ef877e9d..797c5ae9c 100644 --- a/tdeioslave/ftp/CMakeLists.txt +++ b/tdeioslave/ftp/CMakeLists.txt @@ -38,7 +38,7 @@ tde_create_translated_desktop( set( target tdeio_ftp ) set( ${target}_SRCS - ftp.cc + ftp.cpp ) tde_add_kpart( ${target} AUTOMOC diff --git a/tdeioslave/ftp/Makefile.am b/tdeioslave/ftp/Makefile.am index fef6e168f..816659625 100644 --- a/tdeioslave/ftp/Makefile.am +++ b/tdeioslave/ftp/Makefile.am @@ -4,7 +4,7 @@ INCLUDES= $(all_includes) kde_module_LTLIBRARIES = tdeio_ftp.la -tdeio_ftp_la_SOURCES = ftp.cc +tdeio_ftp_la_SOURCES = ftp.cpp tdeio_ftp_la_LIBADD = $(LIB_TDEIO) $(LIB_TQT) $(LIB_TDECORE) tdeio_ftp_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) diff --git a/tdeioslave/ftp/ftp.cc b/tdeioslave/ftp/ftp.cpp index 65f3eedc5..8e0f96b5d 100644 --- a/tdeioslave/ftp/ftp.cc +++ b/tdeioslave/ftp/ftp.cpp @@ -100,8 +100,8 @@ namespace TDEIO { mimimumMimeSize = 1024 }; - // JPF: this helper was derived from write_all in file.cc (FileProtocol). - static // JPF: in ftp.cc we make it static + // JPF: this helper was derived from write_all in file.cpp (FileProtocol). + static // JPF: in ftp.cpp we make it static /** * This helper handles some special issues (blocking and interrupted * system call) when writing to a file handle. diff --git a/tdeioslave/http/CMakeLists.txt b/tdeioslave/http/CMakeLists.txt index a1a6c296a..a8570d60f 100644 --- a/tdeioslave/http/CMakeLists.txt +++ b/tdeioslave/http/CMakeLists.txt @@ -62,7 +62,7 @@ tde_add_tdeinit_executable( ${target} AUTOMOC set( target tdeio_http ) set( ${target}_SRCS - http.cc + http.cpp ) tde_add_kpart( ${target} AUTOMOC diff --git a/tdeioslave/http/Makefile.am b/tdeioslave/http/Makefile.am index 8e2eb4187..f4f4ddc7f 100644 --- a/tdeioslave/http/Makefile.am +++ b/tdeioslave/http/Makefile.am @@ -13,7 +13,7 @@ lib_LTLIBRARIES= tdeinit_LTLIBRARIES = tdeio_http_cache_cleaner.la kde_module_LTLIBRARIES = tdeio_http.la -tdeio_http_la_SOURCES = http.cc +tdeio_http_la_SOURCES = http.cpp tdeio_http_la_METASOURCES = AUTO tdeio_http_la_LIBADD = $(LIB_TDEIO) $(top_builddir)/tdeio/httpfilter/libhttpfilter.la $(LIB_TQT) $(LIB_TDECORE) $(LIBZ) $(top_builddir)/dcop/libDCOP.la $(top_builddir)/tdeio/misc/tdentlm/libtdentlm.la tdeio_http_la_LDFLAGS = $(all_libraries) $(GSSAPI_RPATH) -module $(KDE_PLUGIN) $(GSSAPI_LIBS) diff --git a/tdeioslave/http/README.webdav b/tdeioslave/http/README.webdav index d7f6cca26..e2a0f5d35 100644 --- a/tdeioslave/http/README.webdav +++ b/tdeioslave/http/README.webdav @@ -13,7 +13,7 @@ Applications supporting extended webdav features [none currently] Much of the info here is elaborated by rfc #2518; the rest can be understood by reading -davPropStat() in http.cc, specifically the setMetaData() calls. +davPropStat() in http.cpp, specifically the setMetaData() calls. Extended information is transferred via tdeio's metadata system... diff --git a/tdeioslave/http/http.cc b/tdeioslave/http/http.cpp index 8cd0f7a64..8cd0f7a64 100644 --- a/tdeioslave/http/http.cc +++ b/tdeioslave/http/http.cpp diff --git a/tdeioslave/http/http_cache_cleaner.cpp b/tdeioslave/http/http_cache_cleaner.cpp index aaf94d25a..1f2be7abf 100644 --- a/tdeioslave/http/http_cache_cleaner.cpp +++ b/tdeioslave/http/http_cache_cleaner.cpp @@ -77,7 +77,7 @@ public: }; // !START OF SYNC! -// Keep the following in sync with the cache code in http.cc +// Keep the following in sync with the cache code in http.cpp #define CACHE_REVISION "7\n" FileInfo *readEntry( const TQString &filename) @@ -158,7 +158,7 @@ FileInfo *readEntry( const TQString &filename) unlink( CEF.data()); return 0; } -// Keep the above in sync with the cache code in http.cc +// Keep the above in sync with the cache code in http.cpp // !END OF SYNC! void scanDirectory(FileInfoList &fileEntries, const TQString &name, const TQString &strDir) diff --git a/tdeioslave/iso/Makefile.am b/tdeioslave/iso/Makefile.am index ed8aaadfa..f0381203a 100644 --- a/tdeioslave/iso/Makefile.am +++ b/tdeioslave/iso/Makefile.am @@ -60,7 +60,7 @@ uninstall-local: # make messages.po. Move this one to ../po/ and "make merge" in po # the -x is for skipping messages already translated in tdelibs messages: - 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 -o -name \*.c`; \ if test -n "$$LIST"; then \ $(XGETTEXT) -C -ki18n -x $(kde_includes)/tde.pot $$LIST -o ../po/iso.pot; \ fi diff --git a/tdeioslave/iso/iso.cpp b/tdeioslave/iso/iso.cpp index 8696b0c67..80e32b415 100644 --- a/tdeioslave/iso/iso.cpp +++ b/tdeioslave/iso/iso.cpp @@ -15,7 +15,7 @@ * * ***************************************************************************/ - /* This file is heavily based on tar.cc from tdebase + /* This file is heavily based on tar.cpp from tdebase * (c) David Faure <faure@kde.org> */ |