| Summary: | need an easy way to copy and paste an address from the editor window | ||
|---|---|---|---|
| Product: | [Unmaintained] kab3 | Reporter: | Jens Herden <jens> |
| Component: | general | Assignee: | Tobias Koenig <tokoe> |
| Status: | RESOLVED UNMAINTAINED | ||
| Severity: | minor | ||
| Priority: | NOR | ||
| Version First Reported In: | 3.5 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Jens Herden
2005-12-19 13:46:26 UTC
I change this to a minor bug because it is really annoying and should be fixed for KDE 3.5.1. SVN commit 492514 by tokoe:
Allow the selection/copy of the formatted address by replacing QLabel
with KActiveLabel.
BUGS: 118634
M +2 -1 addresseditwidget.cpp
M +2 -1 addresseditwidget.h
--- branches/KDE/3.5/kdepim/kaddressbook/addresseditwidget.cpp #492513:492514
@@ -37,6 +37,7 @@
#include <qtooltip.h>
#include <kaccelmanager.h>
+#include <kactivelabel.h>
#include <kapplication.h>
#include <kbuttonbox.h>
#include <kcombobox.h>
@@ -89,7 +90,7 @@
SLOT( updateAddressEdit() ) );
layout->addWidget( mTypeCombo );
- mAddressField = new QLabel( this );
+ mAddressField = new KActiveLabel( this );
mAddressField->setFrameStyle( QFrame::Panel | QFrame::Sunken );
mAddressField->setMinimumHeight( 20 );
mAddressField->setAlignment( Qt::AlignTop );
--- branches/KDE/3.5/kdepim/kaddressbook/addresseditwidget.h #492513:492514
@@ -39,6 +39,7 @@
class QTextEdit;
class QToolButton;
+class KActiveLabel;
class KComboBox;
class KLineEdit;
class KListView;
@@ -78,7 +79,7 @@
AddressTypeCombo *mTypeCombo;
QPushButton *mEditButton;
- QLabel *mAddressField;
+ KActiveLabel *mAddressField;
KABC::Address::List mAddressList;
KABC::Addressee mAddressee;
The development of the old KAddressBook will be discontinued for KDE 4.4. Since the new application has the same name, but a completly new code base we close all bug reports against the old version and ask the submitters to resend there reports against the new product. |