From 68401c7995fa29d5ea1be053f5419db2fb796031 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Wed, 21 Apr 2010 17:11:58 +0000 Subject: [PATCH] Added missing signals git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@9094 383ad7c9-94d9-4d36-a494-682f7c89f535 --- Core/openFunctions.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Core/openFunctions.cc b/Core/openFunctions.cc index a7038e56..54845828 100644 --- a/Core/openFunctions.cc +++ b/Core/openFunctions.cc @@ -530,7 +530,8 @@ void Core::slotObjectOpened ( int _id ) { // ================================================================================ // Tell plugins, that the Object is updated and the active object has changed // ================================================================================ - emit signalObjectUpdated(_id); + emit signalObjectUpdated(_id ); + emit signalObjectUpdated(_id, UPDATE_ALL); // ================================================================================ // Create initial backup @@ -578,6 +579,7 @@ void Core::slotEmptyObjectAdded ( int _id ) { // Tell the Plugins that the Object List and the active object have changed emit signalObjectUpdated(_id); + emit signalObjectUpdated(_id,UPDATE_ALL); backupRequest(_id,"Original Object"); -- GitLab