diff options
author | Timothy Pearson <[email protected]> | 2012-05-18 16:03:27 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-05-18 16:03:27 -0500 |
commit | 37acc91cacd3f5c85e3254fcfd5794fcdcbadc27 (patch) | |
tree | 8a724d562c4bf6b2024340f507f58b1d4cf82af6 /src/bondintropage.cpp | |
parent | 96936f9f1272296b22c7ed6d6e68e944ba78a6b6 (diff) | |
download | kcmldap-37acc91cacd3f5c85e3254fcfd5794fcdcbadc27.tar.gz kcmldap-37acc91cacd3f5c85e3254fcfd5794fcdcbadc27.zip |
Can now add/remove realms to TDE config file
Diffstat (limited to 'src/bondintropage.cpp')
-rw-r--r-- | src/bondintropage.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/bondintropage.cpp b/src/bondintropage.cpp new file mode 100644 index 0000000..34b6ab0 --- /dev/null +++ b/src/bondintropage.cpp @@ -0,0 +1,45 @@ +/*************************************************************************** + * Copyright (C) 2012 by Timothy Pearson * + * [email protected] * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include <tqstringlist.h> +#include <tqlabel.h> +#include <tqmap.h> + +#include <kapplication.h> +#include <ksimpleconfig.h> +#include <klocale.h> +#include <kdebug.h> +#include <kstandarddirs.h> +#include <kiconloader.h> +#include <dcopclient.h> +#include <kprocess.h> + +#include "bondintropage.h" + +BondIntroPage::BondIntroPage(TQWidget *parent, const char *name ) : BondIntroPageDlg(parent,name) { + + px_introSidebar->setPixmap(UserIcon("step1.png")); +} + +BondIntroPage::~BondIntroPage(){ + // +} + +#include "bondintropage.moc" |