Summary: | Multiple Close buttons on EstateDetails | ||
---|---|---|---|
Product: | [Applications] atlantik | Reporter: | Rob Kaper <webmaster> |
Component: | general | Assignee: | Rob Kaper <atlantik-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | esigra |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Rob Kaper
2003-07-12 00:14:52 UTC
Subject: KDE_3_1_BRANCH: kdegames/atlantik CVS commit by kaper: backport for fix bug #61118: Multiple Close buttons CCMAIL: 61118-done@bugs.kde.org M +1 -0 ChangeLog 1.121.4.21 M +1 -0 TODO 1.144.4.4 M +7 -5 libatlantikui/estatedetails.cpp 1.12.4.5 --- kdegames/atlantik/ChangeLog #1.121.4.20:1.121.4.21 @@ -14,4 +14,5 @@ - sort user column in server list by number, not alphabetically - show non-game users when not in a game +- prevent double close buttons on estate details 0.5.2 --- kdegames/atlantik/TODO #1.144.4.3:1.144.4.4 @@ -17,4 +17,5 @@ - Update messages views after resize. - all player/core dependencies in Board should only be there in Mode::Play +- don't display trade results over auction, but stack it behind it in the queue For 0.6.0 --- kdegames/atlantik/libatlantikui/estatedetails.cpp #1.12.4.4:1.12.4.5 @@ -223,4 +223,6 @@ void EstateDetails::addButton(QString co void EstateDetails::addCloseButton() { + if (!m_closeButton) + { m_closeButton = new KPushButton(i18n("Close"), this); m_buttonBox->addWidget(m_closeButton); @@ -226,6 +228,6 @@ void EstateDetails::addCloseButton() m_buttonBox->addWidget(m_closeButton); m_closeButton->show(); - connect(m_closeButton, SIGNAL(pressed()), this, SIGNAL(buttonClose())); + } } |