diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-08-19 13:08:28 +0200 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2020-08-19 13:08:28 +0200 |
commit | 3eda17fbb27cf5425b4fdf0590e17f04ae64b4a1 (patch) | |
tree | 98b8b95ea92cc37e0fbc98b16456d86e46df1f8c /kpacman/kpacman.cpp | |
parent | 5debd26d86e7e1bb9ad9dcfa9b98e672440c195b (diff) | |
download | tdepacman-3eda17fbb27cf5425b4fdf0590e17f04ae64b4a1.tar.gz tdepacman-3eda17fbb27cf5425b4fdf0590e17f04ae64b4a1.zip |
fix FTBFS, 'keys' class object being out of scope.
see comments starting from https://mirror.git.trinitydesktop.org/gitea/TDE/kpacman/issues/1#issuecomment-9217
Patch is provided by François Andriot with contribution from Slávek Banko
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'kpacman/kpacman.cpp')
-rw-r--r-- | kpacman/kpacman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kpacman/kpacman.cpp b/kpacman/kpacman.cpp index 8d91f17..08f23cf 100644 --- a/kpacman/kpacman.cpp +++ b/kpacman/kpacman.cpp @@ -445,7 +445,7 @@ void KpacmanApp::slotKeyBindings() slotStatusMsg(i18n("Configure key bindings...")); /////////////////////////////////////////////////////////////////// // configure key bindings - Keys *keys = new Keys(); + PKeys *keys = new PKeys(); if (keys->exec() == TQDialog::Accepted) { view->referee->initKeys(); view->score->initKeys(); |