1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

- Removed patch that was integrated upstream

PR:		ports/138471
Submitted by:	Andrei Lavreniyuk
This commit is contained in:
Thomas Abthorpe 2009-09-02 06:34:21 +00:00
parent 42d3e0d328
commit d32ef5ceea
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=240695
2 changed files with 0 additions and 42 deletions

View File

@ -1,21 +0,0 @@
--- plasma/applets/system-monitor/net.cpp.orig 2009-08-21 01:22:09.000000000 +0200
+++ plasma/applets/system-monitor/net.cpp 2009-08-21 01:28:00.000000000 +0200
@@ -26,7 +26,7 @@
SM::Net::Net(QObject *parent, const QVariantList &args)
: SM::Applet(parent, args)
- , m_rx("network/interfaces/(\\w+)/transmitter/data")
+ , m_rx("^network/interfaces/(\\w+)/transmitter/data$")
{
setHasConfigurationInterface(true);
resize(234 + 20 + 23, 135 + 20 + 25);
@@ -58,7 +58,8 @@
connect(engine(), SIGNAL(sourceRemoved(const QString&)),
this, SLOT(sourceRemoved(const QString&)));
if (!engine()->sources().isEmpty()) {
- sourcesAdded();
+ foreach (const QString& source, engine()->sources())
+ sourceAdded(source);
}
}

View File

@ -1,21 +0,0 @@
--- plasma/applets/system-monitor/net.cpp.orig 2009-08-21 01:22:09.000000000 +0200
+++ plasma/applets/system-monitor/net.cpp 2009-08-21 01:28:00.000000000 +0200
@@ -26,7 +26,7 @@
SM::Net::Net(QObject *parent, const QVariantList &args)
: SM::Applet(parent, args)
- , m_rx("network/interfaces/(\\w+)/transmitter/data")
+ , m_rx("^network/interfaces/(\\w+)/transmitter/data$")
{
setHasConfigurationInterface(true);
resize(234 + 20 + 23, 135 + 20 + 25);
@@ -58,7 +58,8 @@
connect(engine(), SIGNAL(sourceRemoved(const QString&)),
this, SLOT(sourceRemoved(const QString&)));
if (!engine()->sources().isEmpty()) {
- sourcesAdded();
+ foreach (const QString& source, engine()->sources())
+ sourceAdded(source);
}
}