diff options
author | Michele Calgaro <[email protected]> | 2025-01-22 12:59:13 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 22:37:57 +0900 |
commit | f6082cf0a5a2d044400fbdc99cb5747589f31889 (patch) | |
tree | b655f92d73cd1fd6cf363ddbcf64c5fe471490a7 /src/dialogs/similarcategoriesdialog.cpp | |
parent | 6d9717eb18526dc2e204ac49a68e35406e442083 (diff) | |
download | krecipes-f6082cf0a5a2d044400fbdc99cb5747589f31889.tar.gz krecipes-f6082cf0a5a2d044400fbdc99cb5747589f31889.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/dialogs/similarcategoriesdialog.cpp')
-rw-r--r-- | src/dialogs/similarcategoriesdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dialogs/similarcategoriesdialog.cpp b/src/dialogs/similarcategoriesdialog.cpp index 75d9721..eaf1d16 100644 --- a/src/dialogs/similarcategoriesdialog.cpp +++ b/src/dialogs/similarcategoriesdialog.cpp @@ -268,7 +268,7 @@ void RecipeActionsHandler::mergeSimilar() { TQPtrList<TQListViewItem> items = parentListView->selectedItems(); if ( items.count() > 1 ) - KMessageBox::sorry( kapp->mainWidget(), i18n("Please select only one category."), TQString::null ); + KMessageBox::sorry( tdeApp->mainWidget(), i18n("Please select only one category."), TQString::null ); else if ( items.count() == 1 && items.at(0)->rtti() == 1001 ) { CategoryListItem * cat_it = ( CategoryListItem* ) items.at(0); TQString name = cat_it->categoryName(); @@ -297,7 +297,7 @@ void RecipeActionsHandler::mergeSimilar() } else //either nothing was selected or a recipe was selected - KMessageBox::sorry( kapp->mainWidget(), i18n("No recipes selected."), i18n("Edit Recipe") ); + KMessageBox::sorry( tdeApp->mainWidget(), i18n("No recipes selected."), i18n("Edit Recipe") ); } #endif |