mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
By Andreas Piesk. Thanks! adapt to HEAD since the patch is based on 0.6.4 drop qt4/Qt include in list of includes during configuration
31 lines
499 B
C++
31 lines
499 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#include <QtCore/QString>
|
|
#include <QtGui/QWidget>
|
|
#include <QtGui/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;
|
|
}
|
|
|