diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2006-02-01 09:13:29 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2006-02-01 09:13:29 +0000 |
commit | 79fc2a8db2d71f8c383c4457b4d8795116a4d927 (patch) | |
tree | b56d5720d83221f3aedc320944c71e3cbfeca62f /www/kdewebdev4/files | |
parent | 42cde963dc826aaf2b5c33ccb358738cb38e8d4d (diff) | |
download | ports-79fc2a8db2d71f8c383c4457b4d8795116a4d927.tar.gz ports-79fc2a8db2d71f8c383c4457b4d8795116a4d927.zip |
Notes
Diffstat (limited to 'www/kdewebdev4/files')
3 files changed, 0 insertions, 42 deletions
diff --git a/www/kdewebdev4/files/patch-quanta_components_debugger-variableslistview.cpp b/www/kdewebdev4/files/patch-quanta_components_debugger-variableslistview.cpp deleted file mode 100644 index e177c94e355d..000000000000 --- a/www/kdewebdev4/files/patch-quanta_components_debugger-variableslistview.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- quanta/components/debugger/variableslistview.cpp.orig Tue Dec 20 16:15:57 2005 -+++ quanta/components/debugger/variableslistview.cpp Tue Dec 20 16:20:08 2005 -@@ -215,7 +215,7 @@ - item->setText(VariablesListViewColumns::Name, oldvar->name()); - item->setText(VariablesListViewColumns::Type, oldvar->typeName()); - item->setText(VariablesListViewColumns::Size, oldvar->sizeName()); -- item->setText(VariablesListViewColumns::Value, (newvar->isScalar() ? oldvar->value() : "")); -+ item->setText(VariablesListViewColumns::Value, (newvar->isScalar() ? oldvar->value() : QString())); - - } - diff --git a/www/kdewebdev4/files/patch-quanta_treeviews-structtreeview.cpp b/www/kdewebdev4/files/patch-quanta_treeviews-structtreeview.cpp deleted file mode 100644 index 32d7b7855edf..000000000000 --- a/www/kdewebdev4/files/patch-quanta_treeviews-structtreeview.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- quanta/treeviews/structtreeview.cpp.orig Tue Dec 20 16:27:47 2005 -+++ quanta/treeviews/structtreeview.cpp Tue Dec 20 16:34:08 2005 -@@ -776,7 +776,7 @@ - m_marker = current_item; - - if(current_item == m_draggedItem || -- !(e->provides("text/x-struct_tree_tag_item") || e->source() == this) || !m_marker) -+ !(e->provides("text/x-struct_tree_tag_item") || e->source() == (QWidget *)this) || !m_marker) - { - e->accept(false); - last_accept = false; diff --git a/www/kdewebdev4/files/patch-quanta_utility-tagaction.cpp b/www/kdewebdev4/files/patch-quanta_utility-tagaction.cpp deleted file mode 100644 index a1a825eaec88..000000000000 --- a/www/kdewebdev4/files/patch-quanta_utility-tagaction.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- quanta/utility/tagaction.cpp.orig Mon Dec 19 16:28:54 2005 -+++ quanta/utility/tagaction.cpp Mon Dec 19 16:59:38 2005 -@@ -1145,7 +1145,7 @@ - long cursor_offset = selection.cursorOffset(); - kafkaCommon::splitStartAndEndNodeSubtree(start_node, start_offset, end_node, end_offset, commonParent, - commonParentStartChildLocation, commonParentEndChildLocation, -- selection, false, modifs); -+ selection, 0, modifs); - - Q_ASSERT(start_node != end_node); - -@@ -1221,7 +1221,7 @@ - int cursor_offset = selection.cursorOffset();*/ - kafkaCommon::splitStartAndEndNodeSubtree(start_node, start_offset, end_node, end_offset, commonParent, - commonParentStartChildLocation, commonParentEndChildLocation, -- selection, /*cursor_node, cursor_offset, */false, modifs); -+ selection, /*cursor_node, cursor_offset, */0, modifs); - - // kafkaCommon::coutTree(baseNode, 3); - |