summaryrefslogtreecommitdiff
path: root/muse2/muse/master/masteredit.cpp
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2011-08-14 18:24:47 +0000
committerFlorian Jung <flo@windfisch.org>2011-08-14 18:24:47 +0000
commit01d2680f0d18f7783ca1e1f48098590cd0317284 (patch)
tree4000612a2642f3e19da22ddd24244d323a9cedb4 /muse2/muse/master/masteredit.cpp
parent6898f640d5a95ab9c175388f22c4c846b8dbe5ab (diff)
removed the senseless (unsigned long)(some_pointer) stuff, as some_pointer
was stored as "real" (uncasted) pointer in the same struct
Diffstat (limited to 'muse2/muse/master/masteredit.cpp')
-rw-r--r--muse2/muse/master/masteredit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/muse2/muse/master/masteredit.cpp b/muse2/muse/master/masteredit.cpp
index 9053f3a8..8d41e37a 100644
--- a/muse2/muse/master/masteredit.cpp
+++ b/muse2/muse/master/masteredit.cpp
@@ -43,7 +43,7 @@ QByteArray MasterEdit::_toolbarInit;
void MasterEdit::closeEvent(QCloseEvent* e)
{
- emit deleted((unsigned long)this);
+ emit deleted(static_cast<TopWin*>(this));
e->accept();
}