Ignore:
Timestamp:
08/18/12 09:09:38 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

The number of the crew and the passengers as well as all payload weights can be edited

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/gui/gui.py

    r300 r303  
    223223
    224224    @property
     225    def numCrew(self):
     226        """Get the number of crew members."""
     227        return self._wizard.numCrew
     228
     229    @property
     230    def numPassengers(self):
     231        """Get the number of passengers."""
     232        return self._wizard.numPassengers
     233
     234    @property
     235    def bagWeight(self):
     236        """Get the bag weight."""
     237        return self._wizard.bagWeight
     238
     239    @property
    225240    def cargoWeight(self):
    226241        """Get the cargo weight."""
    227242        return self._wizard.cargoWeight
     243
     244    @property
     245    def mailWeight(self):
     246        """Get the mail weight."""
     247        return self._wizard.mailWeight
    228248
    229249    @property
Note: See TracChangeset for help on using the changeset viewer.