Git commit e6a6fc9560f64a87065b1cb2c43e282b3dabbfe9 by Jos=C3=A9 Manuel San= tamar=C3=ADa Lema. Committed on 14/07/2016 at 19:06. Pushed by joselema into branch 'master'. Fix initialization order warning. M +3 -2 src/backends/recipedb.cpp http://commits.kde.org/krecipes/e6a6fc9560f64a87065b1cb2c43e282b3dabbfe9 diff --git a/src/backends/recipedb.cpp b/src/backends/recipedb.cpp index 1ba0d7e..5afd91d 100644 --- a/src/backends/recipedb.cpp +++ b/src/backends/recipedb.cpp @@ -60,9 +60,10 @@ struct ingredient_nutrient_data }; = RecipeDB::RecipeDB() : - QObject(), m_categoryCache(0), haltOperation(false), process(NULL), + QObject(), m_categoryCache(0), m_allIngredientsModels(0), - m_allIngHeadersModels(0) + m_allIngHeadersModels(0), + haltOperation(false), process(NULL) { new KrecipesdbAdaptor( this ); QDBusConnection::sessionBus().registerObject("/KrecipesDB", this);