Fix compiler warnings (gcc)

This commit is contained in:
Kai Koehne
2010-04-06 08:33:35 +02:00
parent 2cb9e2fff7
commit e072f1c71d
2 changed files with 2 additions and 2 deletions

View File

@@ -338,7 +338,7 @@ void QmlModelView::otherPropertyChanged(const QmlObjectNode &/*qmlObjectNode*/,
{
}
void QmlModelView::stateChanged(const QmlModelState &newQmlModelState, const QmlModelState &/*oldQmlModelState*/)
void QmlModelView::stateChanged(const QmlModelState &/*newQmlModelState*/, const QmlModelState &/*oldQmlModelState*/)
{
}

View File

@@ -65,7 +65,7 @@ namespace {
MaemoSshConnection::MaemoSshConnection(const MaemoDeviceConfig &devConf,
bool shell)
: m_channel(-1), m_stopRequested(false), ssh(new ne7ssh)
: ssh(new ne7ssh), m_channel(-1), m_stopRequested(false)
{
const QString *authString;
int (ne7ssh::*connFunc)(const char *, int, const char *, const char *, bool, int);