diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-05-23 20:48:35 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-05-29 15:17:38 +0900 |
commit | d63c9d696eb6e2539528b99afc21f4086c9defe3 (patch) | |
tree | b3bfc97a66431a12cdd8f9379c0072673ede43df /doc/chalk/developers-plugins.docbook | |
parent | 5363fe3c36504c37bdc6dcfafd5f71daeae251e8 (diff) | |
download | koffice-d63c9d69.tar.gz koffice-d63c9d69.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 8b78a8791bc539bcffe7159f9d9714d577cb3d7d)
Diffstat (limited to 'doc/chalk/developers-plugins.docbook')
-rw-r--r-- | doc/chalk/developers-plugins.docbook | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/chalk/developers-plugins.docbook b/doc/chalk/developers-plugins.docbook index 029af8d7e..bf5fab62f 100644 --- a/doc/chalk/developers-plugins.docbook +++ b/doc/chalk/developers-plugins.docbook @@ -195,7 +195,7 @@ kde_services_DATA = chalkLIBRARYNAME.desktop INCLUDES = $(all_includes) -chalkLIBRARYNAME_la_SOURCES = sourcefile1.cc sourcefile2.cc +chalkLIBRARYNAME_la_SOURCES = sourcefile1.cpp sourcefile2.cpp kde_module_LTLIBRARIES = chalkLIBRARYNAME.la noinst_HEADERS = header1.h header2.h @@ -878,14 +878,14 @@ A good example of a tool is the star tool: </para> <screen> -kis_tool_star.cc Makefile.am tool_star_cursor.png wdg_tool_star.ui +kis_tool_star.cpp Makefile.am tool_star_cursor.png wdg_tool_star.ui kis_tool_star.h Makefile.in tool_star.h -chalktoolstar.desktop tool_star.cc tool_star.png +chalktoolstar.desktop tool_star.cpp tool_star.png </screen> <para> As you see, you need two images: one for the cursor and one for the toolbox. -<filename>tool_star.cc</filename> is just the plugin loader, similar to what +<filename>tool_star.cpp</filename> is just the plugin loader, similar to what we have seen above. The real meat is in the implementation: </para> |