summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/cable
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings2/cable') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/cable/cablerun.cpp2
-rw-r--r--noncore/settings/networksettings2/cable/cablerun.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/noncore/settings/networksettings2/cable/cablerun.cpp b/noncore/settings/networksettings2/cable/cablerun.cpp
index edb4b01..5e99237 100644
--- a/noncore/settings/networksettings2/cable/cablerun.cpp
+++ b/noncore/settings/networksettings2/cable/cablerun.cpp
@@ -10,13 +10,13 @@ void CableRun::detectState( NodeCollection * NC ) {
NC->setCurrentState( Unavailable );
}
close( fd );
NC->setCurrentState( Available );
}
-bool CableRun::setState( NodeCollection * NC, Action_t A ) {
+bool CableRun::setState( NodeCollection * NC, Action_t A, bool ) {
if( A == Activate ) {
detectState(NC);
return (NC->currentState() == Available);
}
return 1;
}
diff --git a/noncore/settings/networksettings2/cable/cablerun.h b/noncore/settings/networksettings2/cable/cablerun.h
index 7b341c4..c5b59d5 100644
--- a/noncore/settings/networksettings2/cable/cablerun.h
+++ b/noncore/settings/networksettings2/cable/cablerun.h
@@ -12,13 +12,13 @@ public :
virtual AsLine * asLine( void )
{ return (AsLine *)this; }
protected :
void detectState( NodeCollection * NC );
- bool setState( NodeCollection * NC, Action_t A );
+ bool setState( NodeCollection * NC, Action_t A, bool Force );
bool canSetState( State_t Curr, Action_t A );
private :
CableData_t * D;
};