Use completeBaseName instead of baseName where appropriate

Fixes issues with handling additional dots in the filename in many
places.

Task: 246390
This commit is contained in:
Thorbjørn Lindeijer
2009-03-20 16:13:46 +01:00
parent 937010f507
commit 71aeac5915
14 changed files with 28 additions and 49 deletions

View File

@@ -30,34 +30,27 @@
#ifndef PROJECTLOADWIZARD_H
#define PROJECTLOADWIZARD_H
#include "qt4project.h"
#include "qtversionmanager.h"
#include <QtGui/QWizard>
QT_BEGIN_NAMESPACE
class QWizardPage;
class QVBoxLayout;
class QHBoxLayout;
class QLabel;
class QCheckBox;
class QRadioButton;
class QListWidget;
class QLineEdit;
class QToolButton;
class QSpacerItem;
class QFormLayout;
class QComboBox;
QT_END_NAMESPACE
namespace Qt4ProjectManager {
class Qt4Project;
namespace Internal {
class ProjectLoadWizard : public QWizard
{
Q_OBJECT
public:
ProjectLoadWizard(Qt4ProjectManager::Qt4Project *project, QWidget * parent = 0, Qt::WindowFlags flags = 0);
ProjectLoadWizard(Qt4Project *project, QWidget * parent = 0, Qt::WindowFlags flags = 0);
virtual ~ProjectLoadWizard();
virtual int nextId() const;
virtual void done(int result);