summaryrefslogtreecommitdiffstats
path: root/tdeioslave
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-06 21:23:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-06 21:34:48 +0900
commit84498d97e27f79e7e919b42bbe54208a02856aaf (patch)
tree8a66f6e1a88bc2304b453796663ae75f20425490 /tdeioslave
parent8bc0bc7fc67437fbf757283604104e998ad2fda7 (diff)
downloadtdelibs-84498d97e27f79e7e919b42bbe54208a02856aaf.tar.gz
tdelibs-84498d97e27f79e7e919b42bbe54208a02856aaf.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 4f99f868f09bbffa2e15733b8b7c78eba07a199e)
Diffstat (limited to 'tdeioslave')
-rw-r--r--tdeioslave/file/CMakeLists.txt2
-rw-r--r--tdeioslave/file/Makefile.am2
-rw-r--r--tdeioslave/file/file.cpp (renamed from tdeioslave/file/file.cc)0
-rw-r--r--tdeioslave/ftp/CMakeLists.txt2
-rw-r--r--tdeioslave/ftp/Makefile.am2
-rw-r--r--tdeioslave/ftp/ftp.cpp (renamed from tdeioslave/ftp/ftp.cc)4
-rw-r--r--tdeioslave/http/CMakeLists.txt2
-rw-r--r--tdeioslave/http/Makefile.am2
-rw-r--r--tdeioslave/http/README.webdav2
-rw-r--r--tdeioslave/http/http.cpp (renamed from tdeioslave/http/http.cc)0
-rw-r--r--tdeioslave/http/http_cache_cleaner.cpp4
-rw-r--r--tdeioslave/iso/Makefile.am2
-rw-r--r--tdeioslave/iso/iso.cpp2
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 ac3a2094d..6c3f929a6 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_QT) $(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 ad1cc5574..ad1cc5574 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 1421b8667..9d4984808 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_QT) $(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 c68f90bea..b93bd0d6b 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_QT) $(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 ddb1c60f3..709b38270 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>
*/