diff options
Diffstat (limited to 'doc/chalk')
-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 029af8d7..bf5fab62 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> |