X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Fstructures%2Fextended%2Fdecks%2Fclass_BaseDeck.php;fp=application%2Fship-simu%2Fmain%2Fstructures%2Fextended%2Fdecks%2Fclass_BaseDeck.php;h=13768b8ca0780381b94bbb50ad3a0d85e5e98f4e;hp=22da45c6a1b422cf4b749bc19d86a1ff2d75b30a;hb=1d128d8532290e84885d09d2d3f0060abd08e49e;hpb=ace5ab5addea14f33c3576db5fae85f82d247d87 diff --git a/application/ship-simu/main/structures/extended/decks/class_BaseDeck.php b/application/ship-simu/main/structures/extended/decks/class_BaseDeck.php index 22da45c..13768b8 100644 --- a/application/ship-simu/main/structures/extended/decks/class_BaseDeck.php +++ b/application/ship-simu/main/structures/extended/decks/class_BaseDeck.php @@ -19,15 +19,15 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * along with this program. If not, see . */ class BaseDeck extends BaseDeckStructure { /** * Constructor for cargo decks in general */ - private function __construct ($class) { + protected function __construct ($class) { // Call parent constructor - parent::constructor($class); + parent::__construct($class); // Debub message if (((defined('DEBUG_DECK')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.
\n", @@ -36,17 +36,7 @@ class BaseDeck extends BaseDeckStructure { )); // Set description - $this->setPartDescr("Allgemeines Deck"); - } - - /** - * Calls the private constructor - * - * @param $class The class' name - * @return void - */ - public function constructor ($class) { - $this->__construct($class); + $this->setObjectDescription("Allgemeines Deck"); } /**