summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profilerun.h
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings2/profile/profilerun.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/profile/profilerun.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/networksettings2/profile/profilerun.h b/noncore/settings/networksettings2/profile/profilerun.h
index 2d48b15..9470c0f 100644
--- a/noncore/settings/networksettings2/profile/profilerun.h
+++ b/noncore/settings/networksettings2/profile/profilerun.h
@@ -2,32 +2,32 @@
#define PROFILERUN_H
#include <netnode.h>
#include "profiledata.h"
class ProfileRun : public RuntimeInfo {
public :
ProfileRun( ANetNodeInstance * NNI, ProfileData & D ) :
RuntimeInfo( NNI )
{ Data = &D; }
virtual RuntimeInfo * fullSetup( void )
{ return this; }
virtual const QString & description( void )
{ return Data->Description; }
virtual bool triggersVPN( void )
{ return Data->TriggerVPN; }
State_t detectState( void );
protected :
- QString setMyState( NodeCollection * , Action_t, bool );
+ QString setMyState( NetworkSetup * , Action_t, bool );
private :
ProfileData * Data;
};
#endif