summaryrefslogtreecommitdiffstats
path: root/cervisia/addremovedlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cervisia/addremovedlg.cpp')
-rw-r--r--cervisia/addremovedlg.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/cervisia/addremovedlg.cpp b/cervisia/addremovedlg.cpp
index 108ac80e..9bd3671b 100644
--- a/cervisia/addremovedlg.cpp
+++ b/cervisia/addremovedlg.cpp
@@ -20,52 +20,52 @@
#include "addremovedlg.h"
-#include <qfileinfo.h>
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qlistbox.h>
-#include <qstringlist.h>
+#include <tqfileinfo.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
+#include <tqlistbox.h>
+#include <tqstringlist.h>
#include <kapplication.h>
#include <kiconloader.h>
#include <klocale.h>
-AddRemoveDialog::AddRemoveDialog(ActionType action, QWidget* parent, const char* name)
- : KDialogBase(parent, name, true, QString::null,
+AddRemoveDialog::AddRemoveDialog(ActionType action, TQWidget* parent, const char* name)
+ : KDialogBase(parent, name, true, TQString::null,
Ok | Cancel | Help, Ok, true)
{
setCaption( (action==Add)? i18n("CVS Add") :
(action==AddBinary)? i18n("CVS Add Binary") :
i18n("CVS Remove") );
- QFrame* mainWidget = makeMainWidget();
+ TQFrame* mainWidget = makeMainWidget();
- QBoxLayout *layout = new QVBoxLayout(mainWidget, 0, spacingHint());
+ TQBoxLayout *layout = new TQVBoxLayout(mainWidget, 0, spacingHint());
- QLabel *textlabel = new QLabel
+ TQLabel *textlabel = new QLabel
( (action==Add)? i18n("Add the following files to the repository:") :
(action==AddBinary)? i18n("Add the following binary files to the repository:") :
i18n("Remove the following files from the repository:") ,
mainWidget );
layout->addWidget(textlabel);
- m_listBox = new QListBox(mainWidget);
- m_listBox->setSelectionMode(QListBox::NoSelection);
+ m_listBox = new TQListBox(mainWidget);
+ m_listBox->setSelectionMode(TQListBox::NoSelection);
layout->addWidget(m_listBox, 5);
// Add warning message to dialog when user wants to remove a file
if (action==Remove)
{
- QBoxLayout *warningLayout = new QHBoxLayout;
+ TQBoxLayout *warningLayout = new QHBoxLayout;
- QLabel *warningIcon = new QLabel(mainWidget);
+ TQLabel *warningIcon = new TQLabel(mainWidget);
KIconLoader *loader = kapp->iconLoader();
warningIcon->setPixmap(loader->loadIcon("messagebox_warning", KIcon::NoGroup,
KIcon::SizeMedium, KIcon::DefaultState,
0, true));
warningLayout->addWidget(warningIcon);
- QLabel *warningText = new QLabel(i18n("This will also remove the files from "
+ TQLabel *warningText = new TQLabel(i18n("This will also remove the files from "
"your local working copy."), mainWidget);
warningLayout->addWidget(warningText);
@@ -81,15 +81,15 @@ AddRemoveDialog::AddRemoveDialog(ActionType action, QWidget* parent, const char*
}
-void AddRemoveDialog::setFileList(const QStringList& files)
+void AddRemoveDialog::setFileList(const TQStringList& files)
{
// the dot for the root directory is hard to see, so
// we convert it to the absolut path
if( files.find(".") != files.end() )
{
- QStringList copy(files);
+ TQStringList copy(files);
int idx = copy.findIndex(".");
- copy[idx] = QFileInfo(".").absFilePath();
+ copy[idx] = TQFileInfo(".").absFilePath();
m_listBox->insertStringList(copy);
}