SVN_SILENT made messages (.desktop file)
[kdeadmin.git] / kpackage / kpSettings.cpp
blobf197de422fe1d06b4c62bead7864fb6459f559e6
1 /*
2 ** Copyright (C) 1999,2007 Toivo Pedaste <toivo@ucs.uwa.edu.au>
3 **
4 */
6 /*
7 ** This program is free software; you can redistribute it and/or modify
8 ** it under the terms of the GNU General Public License as published by
9 ** the Free Software Foundation; either version 2 of the License, or
10 ** (at your option) any later version.
12 ** This program is distributed in the hope that it will be useful,
13 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ** GNU General Public License for more details.
17 ** You should have received a copy of the GNU General Public License
18 ** along with this program in a file called COPYING; if not, write to
19 ** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20 ** MA 02110-1301, USA.
23 #include "kpackageSettings.h"
24 #include "kpSettings.h"
26 kpSettings::kpSettings():
27 Settings()
31 void kpSettings::readSettings()
33 privCommand = Settings::privCommand();
34 verify = Settings::verify();
37 void kpSettings::writeSettings()
39 Settings::setPrivCommand(privCommand);
40 Settings::setVerify(verify);
41 Settings::writeConfig();