summaryrefslogtreecommitdiffstats
path: root/tdeio/tdefile/tests/kcustommenueditortest.cpp
blob: 3d95b6c9f870266bfff660ea23b2581bae9d085c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "kcustommenueditor.h"
#include <tdeapplication.h>
#include <klocale.h>
#include <tdeconfig.h>

int main(int argc, char** argv)
{
  TDELocale::setMainCatalogue("tdelibs");
  TDEApplication app(argc, argv, "KCustomMenuEditorTest");
  KCustomMenuEditor editor(0);
  TDEConfig *cfg = new TDEConfig("kdesktop_custom_menu2");
  editor.load(cfg);
  if (editor.exec())
  {
     editor.save(cfg);
     cfg->sync();
  }
}