Adds previously unused enums to switch-case to prevent compiler warnings

This commit is contained in:
Michael Jones 2013-08-22 14:16:26 -05:00
parent 81f56ebf5b
commit 0c098ff0e5
1 changed files with 7 additions and 0 deletions

View File

@ -302,6 +302,13 @@ void QxtSmtpPrivate::socketRead()
sendNext();
}
break;
case Disconnected:
case EhloExtensionsReceived:
case EhloDone:
case Authenticated:
case Waiting:
// Do nothing.
break;
}
}
}