xca/lib/pass_info.cpp
Christian Hohnstaedt e5541c6d67 SF. Bug. #81 Make xca qt5 compatible
Extend XCA to also compile against Qt5
Remove directory from Qt includes
2015-09-17 18:42:42 +02:00

31 lines
480 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
*
* All rights reserved.
*/
#include <QString>
#include <QWidget>
#include <QApplication>
#include "pass_info.h"
pass_info::pass_info(QString t, QString d, QWidget *w)
{
title = t;
description = d;
widget = w;
if (!widget)
widget = qApp->activeWindow();
type = tr("Password");
pixmap = MainWindow::keyImg;
}
void pass_info::setPin()
{
type = tr("PIN");
pixmap = MainWindow::scardImg;
}