summaryrefslogtreecommitdiffstats
path: root/doc/sources
diff options
context:
space:
mode:
Diffstat (limited to 'doc/sources')
-rw-r--r--doc/sources/Makefile.am4
-rw-r--r--doc/sources/c++/main.cpp2
-rw-r--r--doc/sources/c++/polygon.h (renamed from doc/sources/c++/polygon.hpp)0
-rw-r--r--doc/sources/c++/triangle.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/sources/Makefile.am b/doc/sources/Makefile.am
index dc0e0e7..ad4be01 100644
--- a/doc/sources/Makefile.am
+++ b/doc/sources/Makefile.am
@@ -11,7 +11,7 @@ install-data-local:
$(INSTALL_SCRIPT) c++/compile $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/compile
$(INSTALL_DATA) c++/main.cpp $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/main.cpp
$(INSTALL_DATA) c++/triangle.cpp $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/triangle.cpp
- $(INSTALL_DATA) c++/polygon.hpp $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/polygon.hpp
+ $(INSTALL_DATA) c++/polygon.h $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/polygon.h
$(INSTALL_DATA) c++/README $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/c++/README
$(INSTALL_DATA) ttx/Makefile.am $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/ttx/Makefile.am
@@ -21,4 +21,4 @@ install-data-local:
$(INSTALL_DATA) ttx/fmt_codec_ttx.h $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/ttx/fmt_codec_ttx.h
$(INSTALL_DATA) ttx/fmt_codec_ttx.cpp $(DESTDIR)$(datadir)/doc/ksquirrel-libs/$(PACKAGE_VERSION)/sources/ttx/fmt_codec_ttx.cpp
-EXTRA_DIST = c c++ ttx \ No newline at end of file
+EXTRA_DIST = c c++ ttx
diff --git a/doc/sources/c++/main.cpp b/doc/sources/c++/main.cpp
index b8fb8cd..eb3b2fe 100644
--- a/doc/sources/c++/main.cpp
+++ b/doc/sources/c++/main.cpp
@@ -1,4 +1,4 @@
-#include "polygon.hpp"
+#include "polygon.h"
#include <iostream>
#include <dlfcn.h>
diff --git a/doc/sources/c++/polygon.hpp b/doc/sources/c++/polygon.h
index e3189bf..e3189bf 100644
--- a/doc/sources/c++/polygon.hpp
+++ b/doc/sources/c++/polygon.h
diff --git a/doc/sources/c++/triangle.cpp b/doc/sources/c++/triangle.cpp
index 96185d0..008d679 100644
--- a/doc/sources/c++/triangle.cpp
+++ b/doc/sources/c++/triangle.cpp
@@ -1,4 +1,4 @@
-#include "polygon.hpp"
+#include "polygon.h"
#include <cmath>
class triangle : public polygon