summaryrefslogtreecommitdiff
path: root/core/applets/vtapplet/vt.cpp
Unidiff
Diffstat (limited to 'core/applets/vtapplet/vt.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/vtapplet/vt.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/core/applets/vtapplet/vt.cpp b/core/applets/vtapplet/vt.cpp
index 0d4e657..7885f83 100644
--- a/core/applets/vtapplet/vt.cpp
+++ b/core/applets/vtapplet/vt.cpp
@@ -35,3 +35,3 @@ using namespace Opie::Core;
35VTApplet::VTApplet ( ) 35VTApplet::VTApplet ( )
36 : QObject ( 0, "VTApplet" ) 36 :QObject( 0, "VTApplet" ), m_ourVT( 0 )
37{ 37{
@@ -98,2 +98,4 @@ QPopupMenu *VTApplet::popup ( QWidget* parent ) const
98 98
99 m_ourVT = vtstat.v_active;
100
99 connect( m_subMenu, SIGNAL( activated(int) ), this, SLOT( changeVT(int) ) ); 101 connect( m_subMenu, SIGNAL( activated(int) ), this, SLOT( changeVT(int) ) );
@@ -116,2 +118,7 @@ void VTApplet::changeVT( int index )
116 ioctl( fd, VT_ACTIVATE, index-500 ); 118 ioctl( fd, VT_ACTIVATE, index-500 );
119 if ( m_ourVT )
120 {
121 odebug << "VTApplet::waiting for user to return to VT " << m_ourVT << oendl;
122 ioctl( fd, VT_WAITACTIVE, m_ourVT );
123 }
117} 124}