Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 pdf-presenter-console (4.3.4-2) unstable; urgency=medium
 .
   * Track upstream maintenance patches
Author: Barak A. Pearlmutter <bap@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2019-08-04

--- pdf-presenter-console-4.3.4.orig/src/classes/action/action_mapping.vala
+++ pdf-presenter-console-4.3.4/src/classes/action/action_mapping.vala
@@ -48,7 +48,7 @@ namespace pdfpc {
          * methods, and we need blank objects to call them.  Thus, this blank
          * constructor.
          */
-        public ActionMapping() {
+        protected ActionMapping() {
             base();
         }
 
--- pdf-presenter-console-4.3.4.orig/src/classes/drawings/storage.vala
+++ pdf-presenter-console-4.3.4/src/classes/drawings/storage.vala
@@ -35,7 +35,7 @@ namespace pdfpc.Drawings.Storage {
          */
         protected Metadata.Pdf metadata;
 
-        public Base(Metadata.Pdf metadata) {
+        protected Base(Metadata.Pdf metadata) {
             this.metadata = metadata;
         }
 
--- pdf-presenter-console-4.3.4.orig/src/classes/renderer/cache/base.vala
+++ pdf-presenter-console-4.3.4/src/classes/renderer/cache/base.vala
@@ -37,7 +37,7 @@ namespace pdfpc.Renderer.Cache {
         /**
          * Initialize the cache store
          */
-        public Base(Metadata.Pdf metadata) {
+        protected Base(Metadata.Pdf metadata) {
             this.metadata = metadata;
         }
 
--- pdf-presenter-console-4.3.4.orig/src/classes/timer_label.vala
+++ pdf-presenter-console-4.3.4/src/classes/timer_label.vala
@@ -95,7 +95,7 @@ namespace pdfpc {
          * Default constructor taking the initial time as argument, as well as
          * the time to countdown until the talk actually starts.
          */
-        public TimerLabel(PresentationController controller, time_t start_time = 0) {
+        protected TimerLabel(PresentationController controller, time_t start_time = 0) {
             this.controller = controller;
             this.start_time = start_time;
         }
--- pdf-presenter-console-4.3.4.orig/src/classes/view/behaviour/base.vala
+++ pdf-presenter-console-4.3.4/src/classes/view/behaviour/base.vala
@@ -41,7 +41,7 @@ namespace pdfpc.View {
         /**
          * Base constructor not taking any arguments
          */
-        public Base() {
+        protected Base() {
             // Nothing to do here
         }
 
