diff --git a/build_num b/build_num index 8b94b5cb8..48d35b8fa 100644 --- a/build_num +++ b/build_num @@ -1 +1 @@ -#define BUILD_NUM 432 +#define BUILD_NUM 433 diff --git a/doc/ChangeLog b/doc/ChangeLog index 000792f6b..f99c4297e 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,11 @@ +2008-08-01 vadim + + * ObjectManipulator.cpp (ObjectManipulator::contextMenuRequested): + fixed bug #2023243: "IPv6 - Some objects missing from context + menus". Added items "New Address IPv6" and "New Network IPv6" to + context menus associated with folders "Addresses" and "Networks" + in the tree. + 2008-08-01 Vadim Kurland * Fixed build on Mac, starting with rev 433 code is built with QT diff --git a/src/gui/ObjectManipulator.cpp b/src/gui/ObjectManipulator.cpp index 21b177acf..5cd9f519d 100644 --- a/src/gui/ObjectManipulator.cpp +++ b/src/gui/ObjectManipulator.cpp @@ -1030,6 +1030,8 @@ void ObjectManipulator::contextMenuRequested(const QPoint &pos) { newID1=popup->addAction( tr("New Address"), this, SLOT( newAddress() ) ); + newID1=popup->addAction( tr("New Address IPv6"), this, + SLOT( newAddressIPv6() ) ); } if (currentObj->getPath(true)=="Objects/DNS Names") { @@ -1052,9 +1054,12 @@ void ObjectManipulator::contextMenuRequested(const QPoint &pos) SLOT( newHost() ) ); if (currentObj->getPath(true)=="Objects/Networks") + { newID1=popup->addAction( tr("New Network"), this, SLOT( newNetwork() ) ); - + newID1=popup->addAction( tr("New Network IPv6"), this, + SLOT( newNetworkIPv6() ) ); + } if (currentObj->getPath(true)=="Objects/Groups") newID1=popup->addAction( tr("New Group"), this, SLOT( newObjectGroup() ) );