summaryrefslogtreecommitdiffstats
path: root/freebsd/dependencies/pinentry-tqt/files/patch-tqt_pinentrydialog.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2024-04-28 15:26:47 +0200
committerSlávek Banko <slavek.banko@axis.cz>2024-04-28 16:44:24 +0200
commitd9d57c445215945fe170f313f09761bea19692fe (patch)
tree170d3ffd37b7f6a941b85c3b30dcb2cd0797e040 /freebsd/dependencies/pinentry-tqt/files/patch-tqt_pinentrydialog.cpp
parentc141e5fbf1ab459a75b1dc97b7b70afdc1e6199d (diff)
downloadtde-packaging-d9d57c445215945fe170f313f09761bea19692fe.tar.gz
tde-packaging-d9d57c445215945fe170f313f09761bea19692fe.zip
FreeBSD: Update for final R14.1.2.
Forced C++14 for cases where distribution ports are not ready for C++17. Add ports for several applications. Switch several ports to CMake. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 7f1d96cd60f9d6890fed200ce82d88f32007f39a)
Diffstat (limited to 'freebsd/dependencies/pinentry-tqt/files/patch-tqt_pinentrydialog.cpp')
-rw-r--r--freebsd/dependencies/pinentry-tqt/files/patch-tqt_pinentrydialog.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/freebsd/dependencies/pinentry-tqt/files/patch-tqt_pinentrydialog.cpp b/freebsd/dependencies/pinentry-tqt/files/patch-tqt_pinentrydialog.cpp
new file mode 100644
index 000000000..ea73c0cfc
--- /dev/null
+++ b/freebsd/dependencies/pinentry-tqt/files/patch-tqt_pinentrydialog.cpp
@@ -0,0 +1,33 @@
+--- tqt/pinentrydialog.cpp.orig
++++ tqt/pinentrydialog.cpp
+@@ -84,18 +84,18 @@
+
+ _ok->setDefault(true);
+
+- connect( _ok, SIGNAL( clicked() ),
+- this, SIGNAL( accepted() ) );
+- connect( _cancel, SIGNAL( clicked() ),
+- this, SIGNAL( rejected() ) );
+- connect( _edit, SIGNAL( textModified(const SecTQString&) ),
+- this, SLOT( updateQuality(const SecTQString&) ) );
+- connect (_edit, SIGNAL (backspacePressed()),
+- this, SLOT (onBackspace ()));
+- connect (this, SIGNAL (accepted ()),
+- this, SLOT (accept ()));
+- connect (this, SIGNAL (rejected ()),
+- this, SLOT (reject ()));
++ connect( _ok, TQ_SIGNAL( clicked() ),
++ this, TQ_SIGNAL( accepted() ) );
++ connect( _cancel, TQ_SIGNAL( clicked() ),
++ this, TQ_SIGNAL( rejected() ) );
++ connect( _edit, TQ_SIGNAL( textModified(const SecTQString&) ),
++ this, TQ_SLOT( updateQuality(const SecTQString&) ) );
++ connect (_edit, TQ_SIGNAL (backspacePressed()),
++ this, TQ_SLOT (onBackspace ()));
++ connect (this, TQ_SIGNAL (accepted ()),
++ this, TQ_SLOT (accept ()));
++ connect (this, TQ_SIGNAL (rejected ()),
++ this, TQ_SLOT (reject ()));
+ _edit->setFocus();
+ }
+