summaryrefslogtreecommitdiff
path: root/devel/kdesdk3/patches
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2007-05-23 13:45:05 +0000
committermarkd <markd@pkgsrc.org>2007-05-23 13:45:05 +0000
commitda797114b5276f85b60b75d68c1352695778616e (patch)
treeacb469654ce757faa83e5d6f135900e4f2ed95bb /devel/kdesdk3/patches
parent03322c0ea5d2f8ee51ad7490312da70a6e518970 (diff)
downloadpkgsrc-da797114b5276f85b60b75d68c1352695778616e.tar.gz
Update to KDE 3.5.7
Cervisia * Improve layouting of the CVS log dialog. KBabel * Fix random crashes on Catalogmanager. KCachegrind * Fix parsing of dot output on some cases. Umbrello * C# Code Generation and export. * Java interface inheritance, abstract classes and generics in code generation. * Operations of the Interface are implemented in the class automatically. * Java 5 generics support. * Code generation ignores unidirectional association. * %date% and %time% not being parsed. * Relationships for entities do not live outside of the diagram. * Multiplicity labels often are placed incorrectly. * Association role labels are duplicated. * Crash on adding operation to class with Advanced Code Generators enabled. * Javascript wrong Code Generation. * Javascript/ActionScript Code Generation creates bad format methods. * Sequence diagram object size incorrect after toggling "Draw as Actor". * Support duplicating sequence diagrams. * Incorrect Association Properties text. * Buttons are not displayed. * Impossible to reuse same use case in a use case diagram. * Crash on creating various types of associations. * Fix displacement of sequence line on initial drag/drop of a class from the list view to a sequence diagram. * Support copy/paste of attribute or operation in the list view within the same class. * Associations not updated during move of class on diagram. * Fix unclickable diagrams. * ERD not saved correctly, rendered unusable. * Improve loading of XMI files from older versions * Package contents always shown empty in package properties dialog. * Subsystem or component may realize interface in component diagram. * Crash when deleting the link between a package and a class. * Ada95 Code Generation Errors for Aggregation. * Unable to delete multiplicity information or label from an association. * C++ code generator does not correctly define namespaces. * Ada code generator generates "withs" in both directions for certain associations. * Ada code generator always generates methods abstract even if abstract box not checked. * Missing "with" on Ada code generation for aggregation. * Operation Properties "Type" combo box too small. * Allowing to duplicate diagrams. * Crash on changing multiplicity in an association in ERD. * Class diagram in folder not loaded correctly from xmi. * Sequence diagram crashes on inserting message. * No synchronization of comments when round-tripping. * Crash on loading xmi with actor as object of sequence diagram. * ActionScript/JavaScript association code generation error. * XMI file contains massive duplications of <UML:Stereotype>. * Segmentation fault on loading corrupted file. * Crash when moving all elements in a sequence diagram. * Fix crash while adding class via class wizard. * Various dialog layout fixes. New Top/Bottom arrowbutton in Activity subdialog of state properties dialog.
Diffstat (limited to 'devel/kdesdk3/patches')
-rw-r--r--devel/kdesdk3/patches/patch-ad15
-rw-r--r--devel/kdesdk3/patches/patch-ae19
2 files changed, 0 insertions, 34 deletions
diff --git a/devel/kdesdk3/patches/patch-ad b/devel/kdesdk3/patches/patch-ad
deleted file mode 100644
index 156046e0b81..00000000000
--- a/devel/kdesdk3/patches/patch-ad
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ad,v 1.5 2007/01/26 03:28:08 markd Exp $
-
-kde svn patch 624935
-
---- kbabel/catalogmanager/libsvn/svnhandler.cpp.orig 2007-01-20 23:56:24.000000000 +1300
-+++ kbabel/catalogmanager/libsvn/svnhandler.cpp
-@@ -148,7 +148,7 @@ SVNHandler::FileStatus SVNHandler::fstat
- QDomElement entry, wcStatus;
-
- // Parse the output.
-- if ( !doc.setContent( out.output(), &errorMsg, &errorLine, &errorCol ) ) {
-+ if ( !doc.setContent( out.getOutput(), &errorMsg, &errorLine, &errorCol ) ) {
- kdDebug(8109) << "Cannot parse \"svn status -v --xml\" output for"
- << filename << endl << "Line: " << errorLine << " Column: "
- << errorCol << " Error: " << errorMsg << endl;
diff --git a/devel/kdesdk3/patches/patch-ae b/devel/kdesdk3/patches/patch-ae
deleted file mode 100644
index 92d00c36cfb..00000000000
--- a/devel/kdesdk3/patches/patch-ae
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-ae,v 1.3 2007/01/26 03:28:08 markd Exp $
-
-kde svn patch 624935
-
---- kbabel/catalogmanager/libsvn/svnhandler.h.orig 2007-01-20 23:57:12.000000000 +1300
-+++ kbabel/catalogmanager/libsvn/svnhandler.h
-@@ -120,9 +120,9 @@ class SVNOutputCollector: public QObject
- SVNOutputCollector( KProcess* );
- void setProcess( KProcess* );
-
-- const QString& output() const { return m_gatheredOutput; }
-- const QString& stderr() const { return m_stderrOutput; }
-- const QString& stdout() const { return m_stdoutOutput; }
-+ const QString& getOutput() const { return m_gatheredOutput; }
-+ const QString& getStderr() const { return m_stderrOutput; }
-+ const QString& getStdout() const { return m_stdoutOutput; }
-
- private slots:
- void slotGatherStderr( KProcess*, char*, int );