Hello community,

here is the log from the commit of package rocs for openSUSE:Factory checked in 
at 2013-12-11 14:34:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rocs (Old)
 and      /work/SRC/openSUSE:Factory/.rocs.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rocs"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rocs/rocs.changes        2013-12-02 
12:32:53.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.rocs.new/rocs.changes   2013-12-11 
14:34:15.000000000 +0100
@@ -1,0 +2,14 @@
+Fri Nov 29 07:12:26 UTC 2013 - [email protected]
+
+- Update to 4.11.97
+   * KDE 4.12 RC 1 release
+   * See http://www.kde.org/announcements/announce-4.12-rc.php
+
+-------------------------------------------------------------------
+Sat Nov 23 22:26:39 UTC 2013 - [email protected]
+
+- Update to 4.11.95
+   * KDE 4.12 Beta 3 release
+   * See http://www.kde.org/announcements/announce-4.12-beta3.php
+
+-------------------------------------------------------------------

Old:
----
  rocs-4.11.90.tar.xz

New:
----
  rocs-4.11.97.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rocs.spec ++++++
--- /var/tmp/diff_new_pack.2AJYkG/_old  2013-12-11 14:34:15.000000000 +0100
+++ /var/tmp/diff_new_pack.2AJYkG/_new  2013-12-11 14:34:15.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           rocs
-Version:        4.11.90
+Version:        4.11.97
 Release:        0
 Summary:        Graph Theory IDE
 License:        GPL-3.0+

++++++ rocs-4.11.90.tar.xz -> rocs-4.11.97.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rocs-4.11.90/App/CMakeLists.txt 
new/rocs-4.11.97/App/CMakeLists.txt
--- old/rocs-4.11.90/App/CMakeLists.txt 2013-11-04 04:59:52.000000000 +0100
+++ new/rocs-4.11.97/App/CMakeLists.txt 2013-11-28 00:35:27.000000000 +0100
@@ -22,7 +22,7 @@
 
 set(ROCS_VERSION_MAJOR 1)
 set(ROCS_VERSION_MINOR 9)
-set(ROCS_VERSION_PATCH 60)
+set(ROCS_VERSION_PATCH 80)
 
 configure_file( "${rocs_SOURCE_DIR}/rocsversion.h.cmake" 
"${rocs_BINARY_DIR}/rocsversion.h" @ONLY )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/DataStructures/Graph/Tests/CMakeLists.txt 
new/rocs-4.11.97/RocsCore/DataStructures/Graph/Tests/CMakeLists.txt
--- old/rocs-4.11.90/RocsCore/DataStructures/Graph/Tests/CMakeLists.txt 
2013-11-04 04:59:52.000000000 +0100
+++ new/rocs-4.11.97/RocsCore/DataStructures/Graph/Tests/CMakeLists.txt 
2013-11-28 00:35:27.000000000 +0100
@@ -23,11 +23,14 @@
 # basic functionality tests of data structure
 set (TestGraphStructure_SRCS
     TestGraphStructure.cpp
+    ../GraphStructure.cpp
+    ../GraphNode.cpp
 )
 kde4_add_executable(TestGraphStructure ${TestGraphStructure_SRCS} )
+set_target_properties(TestGraphStructure PROPERTIES COMPILE_FLAGS 
-DROCS_GRAPHSTRUCTURE_EXPORT=)
 target_link_libraries( TestGraphStructure
     rocscore
-    rocs_GraphStructure
+    ${KDE4_KDEUI_LIBS}
     ${KDE4_KROSSUI_LIBS}
     ${QT_QTGUI_LIBRARY}
     ${QT_QTTEST_LIBRARY}
@@ -40,11 +43,14 @@
 # graph algorithms
 set (TestGraphStructureAlgorithms_SRCS
     TestGraphStructureAlgorithms.cpp
+    ../GraphStructure.cpp
+    ../GraphNode.cpp
 )
 kde4_add_executable(TestGraphStructureAlgorithms 
${TestGraphStructureAlgorithms_SRCS} )
+set_target_properties(TestGraphStructureAlgorithms PROPERTIES COMPILE_FLAGS 
-DROCS_GRAPHSTRUCTURE_EXPORT=)
 target_link_libraries( TestGraphStructureAlgorithms
     rocscore
-    rocs_GraphStructure
+    ${KDE4_KDEUI_LIBS}
     ${KDE4_KROSSUI_LIBS}
     ${QT_QTGUI_LIBRARY}
     ${QT_QTTEST_LIBRARY}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/DataStructures/LinkedList/Tests/CMakeLists.txt 
new/rocs-4.11.97/RocsCore/DataStructures/LinkedList/Tests/CMakeLists.txt
--- old/rocs-4.11.90/RocsCore/DataStructures/LinkedList/Tests/CMakeLists.txt    
2013-11-04 04:59:52.000000000 +0100
+++ new/rocs-4.11.97/RocsCore/DataStructures/LinkedList/Tests/CMakeLists.txt    
2013-11-28 00:35:27.000000000 +0100
@@ -23,11 +23,13 @@
 # basic functionality tests of data structure
 set (TestLinkedListStructure_SRCS
     TestLinkedListStructure.cpp
+    ../ListNode.cpp
+    ../ListStructure.cpp
 )
 kde4_add_executable(TestLinkedListStructure ${TestLinkedListStructure_SRCS} )
+set_target_properties(TestLinkedListStructure PROPERTIES COMPILE_FLAGS 
-DROCS_LISTSTRUCTURE_EXPORT=)
 target_link_libraries( TestLinkedListStructure
     rocscore
-    rocs_ListStructure
     ${KDE4_KROSSUI_LIBS}
     ${QT_QTGUI_LIBRARY}
     ${QT_QTTEST_LIBRARY}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/dotFileFormat/DotFileFormatPlugin.cpp
 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/dotFileFormat/DotFileFormatPlugin.cpp
--- 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/dotFileFormat/DotFileFormatPlugin.cpp
    2013-11-04 04:59:52.000000000 +0100
+++ 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/dotFileFormat/DotFileFormatPlugin.cpp
    2013-11-28 00:35:27.000000000 +0100
@@ -54,7 +54,7 @@
 }
 
 DotFileFormatPlugin::DotFileFormatPlugin(QObject* parent, const QList< 
QVariant >&) :
-    GraphFilePluginInterface(FilePluginFactory::componentData().aboutData(), 
parent)
+    
GraphFilePluginInterface(FilePluginFactory(aboutdata,0).componentData().aboutData(),
 parent)
 {
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/dotFileFormat/Tests/CMakeLists.txt 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/dotFileFormat/Tests/CMakeLists.txt
--- 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/dotFileFormat/Tests/CMakeLists.txt   
    2013-11-04 04:59:52.000000000 +0100
+++ 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/dotFileFormat/Tests/CMakeLists.txt   
    2013-11-28 00:35:27.000000000 +0100
@@ -30,7 +30,6 @@
 kde4_add_unit_test(TestDotFileFormatPlugin ${TestDotFileFormatPlugin_SRCS})
 target_link_libraries(TestDotFileFormatPlugin
     rocscore
-    rocs_GraphStructure
     ${QT_QTTEST_LIBRARY}
     ${KDE4_KDECORE_LIBS}
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/gmlFileFormat/CMakeLists.txt 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/gmlFileFormat/CMakeLists.txt
--- old/rocs-4.11.90/RocsCore/LoadSave/Plugins/gmlFileFormat/CMakeLists.txt     
2013-11-04 04:59:52.000000000 +0100
+++ new/rocs-4.11.97/RocsCore/LoadSave/Plugins/gmlFileFormat/CMakeLists.txt     
2013-11-28 00:35:27.000000000 +0100
@@ -35,7 +35,6 @@
 
 target_link_libraries(rocs_gmlfileformat
     rocscore
-    rocs_GraphStructure
     ${KDE4_KDEUI_LIBS}
 )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/gmlFileFormat/GmlFileFormatPlugin.cpp
 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/gmlFileFormat/GmlFileFormatPlugin.cpp
--- 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/gmlFileFormat/GmlFileFormatPlugin.cpp
    2013-11-04 04:59:52.000000000 +0100
+++ 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/gmlFileFormat/GmlFileFormatPlugin.cpp
    2013-11-28 00:35:27.000000000 +0100
@@ -45,25 +45,21 @@
 K_PLUGIN_FACTORY(FilePLuginFactory, registerPlugin<GmlFileFormatPlugin>();)
 K_EXPORT_PLUGIN(FilePLuginFactory(aboutdata))
 
-
-GmlFileFormatPlugin::~GmlFileFormatPlugin()
+GmlFileFormatPlugin::GmlFileFormatPlugin(QObject *parent, const 
QList<QVariant>&) :
+    GraphFilePluginInterface(FilePLuginFactory(aboutdata, 
0).componentData().aboutData(), parent)
 {
 }
 
-
-GmlFileFormatPlugin::GmlFileFormatPlugin(QObject *parent, const 
QList<QVariant>&) :
-    GraphFilePluginInterface(FilePLuginFactory::componentData().aboutData(), 
parent)
+GmlFileFormatPlugin::~GmlFileFormatPlugin()
 {
 }
 
-
 const QStringList GmlFileFormatPlugin::extensions() const
 {
     return QStringList()
            << i18n("*.gml|Graph Markup Language Format") + '\n';
 }
 
-
 void GmlFileFormatPlugin::readFile()
 {
     Document * graphDoc = new Document(i18n("Import"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/gmlFileFormat/Tests/CMakeLists.txt 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/gmlFileFormat/Tests/CMakeLists.txt
--- 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/gmlFileFormat/Tests/CMakeLists.txt   
    2013-11-04 04:59:52.000000000 +0100
+++ 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/gmlFileFormat/Tests/CMakeLists.txt   
    2013-11-28 00:35:27.000000000 +0100
@@ -29,7 +29,6 @@
 kde4_add_unit_test(TestGmlFileFormatPlugin ${TestGmlFileFormatPlugin_SRCS})
 target_link_libraries(TestGmlFileFormatPlugin
     rocscore
-    rocs_GraphStructure
     ${QT_QTTEST_LIBRARY}
     ${KDE4_KDECORE_LIBS}
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/kmlFileFormat/CMakeLists.txt 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/kmlFileFormat/CMakeLists.txt
--- old/rocs-4.11.90/RocsCore/LoadSave/Plugins/kmlFileFormat/CMakeLists.txt     
2013-11-04 04:59:52.000000000 +0100
+++ new/rocs-4.11.97/RocsCore/LoadSave/Plugins/kmlFileFormat/CMakeLists.txt     
2013-11-28 00:35:27.000000000 +0100
@@ -33,7 +33,6 @@
 
 target_link_libraries(rocs_kmlfileformat
     rocscore
-    rocs_GraphStructure
     ${QT_QTXML_LIBRARY}
     ${KDE4_KDEUI_LIBS}
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/kmlFileFormat/KmlFileFormatPlugin.cpp
 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/kmlFileFormat/KmlFileFormatPlugin.cpp
--- 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/kmlFileFormat/KmlFileFormatPlugin.cpp
    2013-11-04 04:59:52.000000000 +0100
+++ 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/kmlFileFormat/KmlFileFormatPlugin.cpp
    2013-11-28 00:35:27.000000000 +0100
@@ -47,7 +47,7 @@
 
 
 KmlFileFormatPlugin::KmlFileFormatPlugin(QObject *parent, const QList< 
QVariant >&)
-    : GraphFilePluginInterface(FilePLuginFactory::componentData().aboutData(), 
parent)
+    : GraphFilePluginInterface(FilePLuginFactory(aboutdata, 
0).componentData().aboutData(), parent)
 {
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/kmlFileFormat/Tests/CMakeLists.txt 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/kmlFileFormat/Tests/CMakeLists.txt
--- 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/kmlFileFormat/Tests/CMakeLists.txt   
    2013-11-04 04:59:52.000000000 +0100
+++ 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/kmlFileFormat/Tests/CMakeLists.txt   
    2013-11-28 00:35:27.000000000 +0100
@@ -26,7 +26,6 @@
 kde4_add_unit_test(TestKmlFileFormatPlugin ${TestKmlFileFormatPlugin_SRCS})
 target_link_libraries(TestKmlFileFormatPlugin
     rocscore
-    rocs_GraphStructure
     ${QT_QTXML_LIBRARY}
     ${QT_QTTEST_LIBRARY}
     ${KDE4_KDECORE_LIBS}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/tgfFileFormat/TgfFileFormatPlugin.cpp
 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/tgfFileFormat/TgfFileFormatPlugin.cpp
--- 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/tgfFileFormat/TgfFileFormatPlugin.cpp
    2013-11-04 04:59:52.000000000 +0100
+++ 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/tgfFileFormat/TgfFileFormatPlugin.cpp
    2013-11-28 00:35:27.000000000 +0100
@@ -42,9 +42,8 @@
 
 
 TgfFileFormatPlugin::TgfFileFormatPlugin(QObject* parent, const QList< 
QVariant >&) :
-    GraphFilePluginInterface(FilePluginFactory::componentData().aboutData(), 
parent)
+    GraphFilePluginInterface(FilePluginFactory(aboutdata, 
0).componentData().aboutData(), parent)
 {
-
 }
 
 TgfFileFormatPlugin::~TgfFileFormatPlugin()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/tikzFileFormat/TikzFileFormatPlugin.cpp
 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/tikzFileFormat/TikzFileFormatPlugin.cpp
--- 
old/rocs-4.11.90/RocsCore/LoadSave/Plugins/tikzFileFormat/TikzFileFormatPlugin.cpp
  2013-11-04 04:59:52.000000000 +0100
+++ 
new/rocs-4.11.97/RocsCore/LoadSave/Plugins/tikzFileFormat/TikzFileFormatPlugin.cpp
  2013-11-28 00:35:27.000000000 +0100
@@ -40,7 +40,7 @@
 
 
 TikzFileFormatPlugin::TikzFileFormatPlugin(QObject* parent, const 
QList<QVariant>&) :
-    GraphFilePluginInterface(FilePluginFactory::componentData().aboutData(), 
parent)
+    
GraphFilePluginInterface(FilePluginFactory(aboutdata,0).componentData().aboutData(),
 parent)
 {
 }
 
@@ -54,7 +54,6 @@
            << i18n("*.pgf|TikZ (PGF) Format") + '\n';
 }
 
-
 GraphFilePluginInterface::PluginType TikzFileFormatPlugin::pluginCapability() 
const
 {
     return GraphFilePluginInterface::ExportOnly;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rocs-4.11.90/RocsCore/Modifiers/ValueModifier.cpp 
new/rocs-4.11.97/RocsCore/Modifiers/ValueModifier.cpp
--- old/rocs-4.11.90/RocsCore/Modifiers/ValueModifier.cpp       2013-11-04 
04:59:52.000000000 +0100
+++ new/rocs-4.11.97/RocsCore/Modifiers/ValueModifier.cpp       2013-11-28 
00:35:27.000000000 +0100
@@ -44,8 +44,8 @@
         list[i]->setProperty(property.toLatin1(), baseString + 
QString::number(start++));
     }
 }
-template void ValueModifier::enumerate<DataPtr>(const QList<DataPtr> &list, 
const QString &property, int start, const QString &baseString, bool 
overrideValues);
-template void ValueModifier::enumerate<PointerPtr>(const QList<PointerPtr> 
&list, const QString &property, int start, const QString &baseString, bool 
overrideValues);
+template ROCSLIB_EXPORT void ValueModifier::enumerate<DataPtr>(const 
QList<DataPtr> &list, const QString &property, int start, const QString 
&baseString, bool overrideValues);
+template ROCSLIB_EXPORT void ValueModifier::enumerate<PointerPtr>(const 
QList<PointerPtr> &list, const QString &property, int start, const QString 
&baseString, bool overrideValues);
 
 
 template<typename T>
@@ -81,8 +81,8 @@
         }
     }
 }
-template void ValueModifier::enumerateAlpha<DataPtr>(const QList<DataPtr> 
&list, const QString &property, const QString &start, bool overrideValues);
-template void ValueModifier::enumerateAlpha<PointerPtr>(const 
QList<PointerPtr> &list, const QString &property, const QString &start, bool 
overrideValues);
+template ROCSLIB_EXPORT void ValueModifier::enumerateAlpha<DataPtr>(const 
QList<DataPtr> &list, const QString &property, const QString &start, bool 
overrideValues);
+template ROCSLIB_EXPORT void ValueModifier::enumerateAlpha<PointerPtr>(const 
QList<PointerPtr> &list, const QString &property, const QString &start, bool 
overrideValues);
 
 
 template<typename T>
@@ -105,8 +105,8 @@
         list[i]->setProperty(property.toLatin1(), QString::number(die()));
     }
 }
-template void ValueModifier::assignRandomIntegers<DataPtr>(const 
QList<DataPtr> &list, const QString &property, int lowerLimit, int upperLimit, 
int seed, bool overrideValues);
-template void ValueModifier::assignRandomIntegers<PointerPtr>(const 
QList<PointerPtr> &list, const QString &property, int lowerLimit, int 
upperLimit, int seed, bool overrideValues);
+template ROCSLIB_EXPORT void 
ValueModifier::assignRandomIntegers<DataPtr>(const QList<DataPtr> &list, const 
QString &property, int lowerLimit, int upperLimit, int seed, bool 
overrideValues);
+template ROCSLIB_EXPORT void 
ValueModifier::assignRandomIntegers<PointerPtr>(const QList<PointerPtr> &list, 
const QString &property, int lowerLimit, int upperLimit, int seed, bool 
overrideValues);
 
 
 template<typename T>
@@ -129,8 +129,8 @@
         list[i]->setProperty(property.toLatin1(), QString::number(die()));
     }
 }
-template void ValueModifier::assignRandomReals<DataPtr>(const QList<DataPtr> 
&list, const QString &property, qreal lowerLimit, qreal upperLimit, int seed, 
bool overrideValues);
-template void ValueModifier::assignRandomReals<PointerPtr>(const 
QList<PointerPtr> &list, const QString &property, qreal lowerLimit, qreal 
upperLimit, int seed, bool overrideValues);
+template ROCSLIB_EXPORT void ValueModifier::assignRandomReals<DataPtr>(const 
QList<DataPtr> &list, const QString &property, qreal lowerLimit, qreal 
upperLimit, int seed, bool overrideValues);
+template ROCSLIB_EXPORT void 
ValueModifier::assignRandomReals<PointerPtr>(const QList<PointerPtr> &list, 
const QString &property, qreal lowerLimit, qreal upperLimit, int seed, bool 
overrideValues);
 
 template<typename T>
 void ValueModifier::assignConstantValue(const QList<T> &list, const QString 
&property, const QString &constant, bool overrideValues)
@@ -142,5 +142,5 @@
         list[i]->setProperty(property.toLatin1(), constant);
     }
 }
-template void ValueModifier::assignConstantValue<DataPtr>(const QList<DataPtr> 
&list, const QString &property, const QString &constant, bool overrideValues = 
true);
-template void ValueModifier::assignConstantValue<PointerPtr>(const 
QList<PointerPtr> &list, const QString &property, const QString &constant, bool 
overrideValues = true);
+template ROCSLIB_EXPORT void ValueModifier::assignConstantValue<DataPtr>(const 
QList<DataPtr> &list, const QString &property, const QString &constant, bool 
overrideValues);
+template ROCSLIB_EXPORT void 
ValueModifier::assignConstantValue<PointerPtr>(const QList<PointerPtr> &list, 
const QString &property, const QString &constant, bool overrideValues);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rocs-4.11.90/doc/index.docbook 
new/rocs-4.11.97/doc/index.docbook
--- old/rocs-4.11.90/doc/index.docbook  2013-11-04 04:59:52.000000000 +0100
+++ new/rocs-4.11.97/doc/index.docbook  2013-11-28 00:35:27.000000000 +0100
@@ -41,7 +41,7 @@
 <copyright><year>2011-2013</year><holder>Andreas 
Cord-Landwehr</holder></copyright>
 
 <date>2013-07-03</date>
-<releaseinfo>1.9.0 &kde; 4.11</releaseinfo>
+<releaseinfo>1.10.0 &kde; 4.12</releaseinfo>
 
 <legalnotice>&FDLNotice;</legalnotice>
 
@@ -301,10 +301,10 @@
         This toolbar provides all tools for the visual graph editor.
         Use the <inlinemediaobject><imageobject><imagedata 
fileref="hi22-action-rocsadddata.png" format="PNG"/></imageobject>
         </inlinemediaobject><guibutton>Add Element</guibutton> or 
<inlinemediaobject><imageobject><imagedata fileref="hi22-action-rocsaddedge.png"
-        format="PNG"/></imageobject></inlinemediaobject><guibutton>Add 
Connection</guibutton> buttons to create new elements 
+        format="PNG"/></imageobject></inlinemediaobject><guibutton>Add 
Connection</guibutton> buttons to create new elements
        or to connect elements, respectively.
         New data elements are added to the data structure that is currently 
selected at the <emphasis>Document Selector</emphasis> bar.
-         Note that <guibutton>Add Element</guibutton> and <guibutton>Add 
Connection</guibutton> buttons both have menus to select the type of which the 
created elements shall be. 
+         Note that <guibutton>Add Element</guibutton> and <guibutton>Add 
Connection</guibutton> buttons both have menus to select the type of which the 
created elements shall be.
         For details see <xref linkend="user-interface-toolbars" />.
     </para></listitem>
 </varlistentry>

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to