diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-13 19:22:19 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-13 21:14:47 +0900 |
commit | c57343e948aa9f3346ad866ad88d4b1330d098b8 (patch) | |
tree | 143dc455ce45167d0ae2809678967eeeb1e62ac6 /ksvg/scripts/makeimpl | |
parent | d56dba4d2f900eb73d5ee00586c1b2d84b132b3f (diff) | |
download | tdegraphics-c57343e948aa9f3346ad866ad88d4b1330d098b8.tar.gz tdegraphics-c57343e948aa9f3346ad866ad88d4b1330d098b8.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 14d0fbe96c6abdb9da80e99953aec672f999948c)
Diffstat (limited to 'ksvg/scripts/makeimpl')
-rw-r--r-- | ksvg/scripts/makeimpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ksvg/scripts/makeimpl b/ksvg/scripts/makeimpl index fb5ab8f5..e6c7b719 100644 --- a/ksvg/scripts/makeimpl +++ b/ksvg/scripts/makeimpl @@ -21,7 +21,7 @@ function printg( a ) } function printh( a ) { - printf a >> FILENAME "Impl.cc" + printf a >> FILENAME "Impl.cpp" } function doFuncCC( a, class ) { @@ -166,7 +166,7 @@ function doAttr( a, class ) printg( " " )n printg( b[nr] ");\n" ) - # do put method .cc + # do put method .cpp printtofunc( "void " clas "::set" ) printtofunc( toupper( substr( b[nr], 1, 1) ) ) printtofunc( substr( b[nr], 2) "(" ) @@ -212,7 +212,7 @@ function doAttr( a, class ) $temp = b[nr] printg( $temp "() const;\n" ) - # do get method .cc + # do get method .cpp i = 1 while ( i < nr ) { @@ -277,7 +277,7 @@ function doReadonlyAttr( a, class ) $temp = b[nr] printg( $temp "() const;\n" ) - # do get method .cc + # do get method .cpp i = 1 while ( i < nr ) { |