mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
kpty: compiler warning fix
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
cb8b3764f4
commit
1770d5726f
2 changed files with 3 additions and 2 deletions
|
@ -33,7 +33,8 @@
|
|||
// private data //
|
||||
//////////////////
|
||||
|
||||
struct KPtyProcessPrivate : KProcessPrivate {
|
||||
class KPtyProcessPrivate : public KProcessPrivate {
|
||||
public:
|
||||
KPtyProcessPrivate() :
|
||||
ptyChannels(KPtyProcess::NoChannels),
|
||||
addUtmp(false)
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
class KPtyDevice;
|
||||
|
||||
struct KPtyProcessPrivate;
|
||||
class KPtyProcessPrivate;
|
||||
|
||||
/**
|
||||
* This class extends KProcess by support for PTYs (pseudo TTYs).
|
||||
|
|
Loading…
Add table
Reference in a new issue