--- a/zz_configDialog.cpp Sat Apr 13 02:11:54 2013 +0300 +++ b/zz_configDialog.cpp Sun Apr 14 03:54:40 2013 +0300 @@ -1,6 +1,6 @@ /* * LDForge: LDraw parts authoring CAD - * Copyright (C) 2013 Santeri `arezey` Piippo + * Copyright (C) 2013 Santeri Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -39,7 +39,7 @@ extern_cfg (int, gui_toolbar_iconsize); extern_cfg (str, gui_colortoolbar); -ConfigDialog* g_ConfigDialog = nullptr; +ConfigDialog* g_ConfigDialog = null; #define INIT_CHECKBOX(BOX, CFG) \ BOX->setCheckState (CFG ? Qt::Checked : Qt::Unchecked); @@ -255,7 +255,7 @@ } else { color* col = entry.col; - if (col == nullptr) { + if (col == null) { qItem->setText ("[[unknown color]]"); qItem->setIcon (getIcon ("error")); } else { @@ -278,8 +278,8 @@ // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // ============================================================================= void ConfigDialog::slot_setColor () { - quickColorMetaEntry* pEntry = nullptr; - QListWidgetItem* qItem = nullptr; + quickColorMetaEntry* pEntry = null; + QListWidgetItem* qItem = null; const bool bNew = static_cast<QPushButton*> (sender ()) == qAddColor; if (bNew == false) { @@ -303,7 +303,7 @@ if (pEntry) pEntry->col = getColor (dValue); else { - quickColorMetaEntry entry = {getColor (dValue), nullptr, false}; + quickColorMetaEntry entry = {getColor (dValue), null, false}; qItem = getSelectedQuickColor (); ulong idx; @@ -357,7 +357,7 @@ // ============================================================================= void ConfigDialog::slot_addColorSeparator() { - quickColorMeta.push_back ({nullptr, nullptr, true}); + quickColorMeta.push_back ({null, null, true}); updateQuickColorList (&quickColorMeta[quickColorMeta.size () - 1]); } @@ -384,7 +384,7 @@ // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // ============================================================================= ConfigDialog::~ConfigDialog () { - g_ConfigDialog = nullptr; + g_ConfigDialog = null; } // ============================================================================= @@ -449,7 +449,7 @@ // ============================================================================= QListWidgetItem* ConfigDialog::getSelectedQuickColor () { if (qQuickColorList->selectedItems().size() == 0) - return nullptr; + return null; return qQuickColorList->selectedItems ()[0]; }