summaryrefslogtreecommitdiff
path: root/plugingui
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui')
-rw-r--r--plugingui/Makefile.am1
-rw-r--r--plugingui/abouttab.cc9
-rw-r--r--plugingui/abouttab.h1
3 files changed, 11 insertions, 0 deletions
diff --git a/plugingui/Makefile.am b/plugingui/Makefile.am
index 12ffdf0..94e8a7c 100644
--- a/plugingui/Makefile.am
+++ b/plugingui/Makefile.am
@@ -25,6 +25,7 @@ RES = \
resources/widget.png \
../ABOUT \
../AUTHORS \
+ ../BUGS \
../COPYING
resource_data.cc : rcgen $(RES)
diff --git a/plugingui/abouttab.cc b/plugingui/abouttab.cc
index f731100..7e330cb 100644
--- a/plugingui/abouttab.cc
+++ b/plugingui/abouttab.cc
@@ -71,6 +71,15 @@ std::string AboutTab::getAboutText()
"\n");
about_text.append(std::string(VERSION) + "\n");
+ // Bugs
+ about_text.append(
+ "\n"
+ "=============\n"
+ " Bugs\n"
+ "=============\n"
+ "\n");
+ about_text.append(bugs.data());
+
// Authors
about_text.append(
"\n"
diff --git a/plugingui/abouttab.h b/plugingui/abouttab.h
index ecec13a..eda23da 100644
--- a/plugingui/abouttab.h
+++ b/plugingui/abouttab.h
@@ -51,6 +51,7 @@ private:
int margin{10};
Resource about{":../ABOUT"};
+ Resource bugs{":../BUGS"};
Resource authors{":../AUTHORS"};
Resource gpl{":../COPYING"};
};