Method constructor() removed, several small fixes
[shipsimu.git] / application / ship-simu / main / structures / extended / decks / class_BaseDeck.php
index 22da45c6a1b422cf4b749bc19d86a1ff2d75b30a..13768b8ca0780381b94bbb50ad3a0d85e5e98f4e 100644 (file)
  * 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 <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 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.<br />\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");
        }
 
        /**