| 56 | } |
| 57 | |
| 58 | int CParameterFilter::AddKey(const QString& szKey) |
| 59 | { |
| 60 | if(m_pDatabase) |
| 61 | return m_pDatabase->AddKey(szKey); |
| 62 | |
| 63 | if(contains(szKey)) |
| 64 | return 0; |
| 65 | m_Key.insert(szKey); |
| 66 | SetModified(true); |
| 67 | return 0; |
| 68 | } |
| 69 | |
| 70 | int CParameterFilter::RemoveKey(const QString& szKey) |
| 71 | { |
nothing calls this directly
no outgoing calls
no test coverage detected