blob: 1205c8002d3a17a11c5505d3162a1b3c3a09ab5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* kornapp.cpp -- Implementation of class KornApp.
* Author: Sirtaj Singh Kang
* Version: $Id$
* Generated: Sun Apr 22 23:50:49 EST 2001
*/
#include"kornapp.h"
#include<kdebug.h>
#include"kornshell.h"
int KornApp::newInstance()
{
if( _instanceCount ) {
_shell->optionDlg();
}
_instanceCount++;
return 0;
}
#include "kornapp.moc"
|