*** empty log message ***

This commit is contained in:
chris 2002-09-22 22:17:22 +00:00
parent fab9d33e8a
commit d9bab2c0ba
4 changed files with 4 additions and 9 deletions

View File

@ -64,7 +64,7 @@ MainWindow::MainWindow(QWidget *parent, const char *name )
connect( (QObject *)quitApp, SIGNAL(clicked()), (QObject *)qApp, SLOT(quit()) );
QString cpr = "(c) 2002 by Christian@Hohnstaedt.de - Version: ";
copyright->setText(cpr + VER);
#ifndef HAVE_CONGIG_H
#ifndef HAVE_CONFIG_H
baseDir = "C:";
#else
baseDir = QDir::homeDirPath();

View File

@ -30,10 +30,7 @@ MOC_CPP=$(patsubst %,moc_%.cpp,$(MOCNAMES))
UI_CPP=$(patsubst %, %.cpp, $(UINAMES))
UI_H=$(patsubst %, %.h, $(UINAMES))
all: win libs $(OBJS) xca
win: $(UI_CPP) $(UI_H) $(MOC_CPP)
make -C lib win
all: libs $(OBJS) xca
re: clean all
@ -82,4 +79,4 @@ moc_%.cpp: %.h %.cpp
%.cpp: %.h %.ui
$(UIC) -o $@ -impl $^
.INTERMEDIATE: $(MOC_CPP) $(UI_CPP) $(UI_H)
.INTERMEDIATE: $(UI_CPP) $(UI_H) $(MOC_CPP)

View File

@ -19,7 +19,6 @@ DBOBJS=db_base.o $(patsubst %,%.o,$(DBNAMES)) $(patsubst %,moc_%.o,$(DBNAMES))
DB_CPP=$(patsubst %,moc_%.cpp,$(DBNAMES))
all: win libpki.a libxcadb.a
win: $(DB_CPP)
libpki.a: $(PKIOBJS)
ar rcs libpki.a $(PKIOBJS)
@ -37,5 +36,5 @@ distclean: clean
moc_%.cpp: %.h %.cpp
$(MOC) $< -o $@
.INTERMEDIATE: $(DB_CPP)

View File

@ -425,7 +425,6 @@ QPixmap *db_base::loadImg(const char *name )
#endif
path += QDir::separator();
path += name;
QMessageBox::information(NULL, "xca", path);
return new QPixmap(path);
}