summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--svtools/source/control/headbar.cxx6
-rw-r--r--svtools/source/control/tabbar.cxx6
-rw-r--r--svtools/source/control/taskstat.cxx6
-rw-r--r--vcl/source/app/help.cxx16
-rw-r--r--vcl/source/control/tabctrl.cxx6
-rw-r--r--vcl/source/window/menu.cxx8
-rw-r--r--vcl/source/window/status.cxx6
-rw-r--r--vcl/source/window/toolbox.cxx6
-rw-r--r--vcl/source/window/window.cxx6
9 files changed, 29 insertions, 37 deletions
diff --git a/svtools/source/control/headbar.cxx b/svtools/source/control/headbar.cxx
index 051c4cb8a61e..de908bcd9e3f 100644
--- a/svtools/source/control/headbar.cxx
+++ b/svtools/source/control/headbar.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: headbar.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: vg $ $Date: 2001-04-18 13:55:41 $
+ * last change: $Author: mt $ $Date: 2001-04-20 07:37:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1178,7 +1178,7 @@ void HeaderBar::RequestHelp( const HelpEvent& rHEvt )
// Wenn eine Hilfe existiert, dann ausloesen
Help* pHelp = Application::GetHelp();
if ( pHelp )
- pHelp->Start( nHelpId );
+ pHelp->Start( nHelpId, this );
return;
}
}
diff --git a/svtools/source/control/tabbar.cxx b/svtools/source/control/tabbar.cxx
index 37af7853a84e..6ed575510137 100644
--- a/svtools/source/control/tabbar.cxx
+++ b/svtools/source/control/tabbar.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tabbar.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: vg $ $Date: 2001-04-18 13:55:41 $
+ * last change: $Author: mt $ $Date: 2001-04-20 07:37:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1420,7 +1420,7 @@ void TabBar::RequestHelp( const HelpEvent& rHEvt )
// Wenn eine Hilfe existiert, dann ausloesen
Help* pHelp = Application::GetHelp();
if ( pHelp )
- pHelp->Start( nHelpId );
+ pHelp->Start( nHelpId, this );
return;
}
}
diff --git a/svtools/source/control/taskstat.cxx b/svtools/source/control/taskstat.cxx
index 4c83b4bd09e9..f0c602a9ef16 100644
--- a/svtools/source/control/taskstat.cxx
+++ b/svtools/source/control/taskstat.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: taskstat.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:58:57 $
+ * last change: $Author: mt $ $Date: 2001-04-20 07:37:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -636,7 +636,7 @@ void TaskStatusBar::RequestHelp( const HelpEvent& rHEvt )
// Wenn eine Hilfe existiert, dann ausloesen
Help* pHelp = Application::GetHelp();
if ( pHelp )
- pHelp->Start( nHelpId );
+ pHelp->Start( nHelpId, this );
return;
}
}
diff --git a/vcl/source/app/help.cxx b/vcl/source/app/help.cxx
index f08bdc5ac053..b86ad07fa5ac 100644
--- a/vcl/source/app/help.cxx
+++ b/vcl/source/app/help.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: help.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mt $ $Date: 2001-04-12 09:45:49 $
+ * last change: $Author: mt $ $Date: 2001-04-20 07:33:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -108,27 +108,19 @@ Help::Help()
// -----------------------------------------------------------------------
-BOOL Help::Start( ULONG )
+BOOL Help::Start( ULONG, const Window* )
{
return FALSE;
}
// -----------------------------------------------------------------------
-BOOL Help::Start( const XubString& )
+BOOL Help::Start( const XubString&, const Window* )
{
return FALSE;
}
// -----------------------------------------------------------------------
-#if SUPD <= 627
-XubString Help::GetHelpText( ULONG nHelpId )
-{
- return ImplGetSVEmptyStr();
-}
-#endif
-
-// -----------------------------------------------------------------------
XubString Help::GetHelpText( ULONG, const Window* )
{
diff --git a/vcl/source/control/tabctrl.cxx b/vcl/source/control/tabctrl.cxx
index b9b79b2837b8..cc047eb4f413 100644
--- a/vcl/source/control/tabctrl.cxx
+++ b/vcl/source/control/tabctrl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tabctrl.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mt $ $Date: 2001-04-12 10:01:31 $
+ * last change: $Author: mt $ $Date: 2001-04-20 07:33:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1233,7 +1233,7 @@ void TabControl::RequestHelp( const HelpEvent& rHEvt )
// Wenn eine Hilfe existiert, dann ausloesen
Help* pHelp = Application::GetHelp();
if ( pHelp )
- pHelp->Start( nHelpId );
+ pHelp->Start( nHelpId, this );
return;
}
}
diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx
index 5d2d731dc15b..437afbf5ee79 100644
--- a/vcl/source/window/menu.cxx
+++ b/vcl/source/window/menu.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: menu.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: mt $ $Date: 2001-04-12 09:49:41 $
+ * last change: $Author: mt $ $Date: 2001-04-20 07:34:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -491,9 +491,9 @@ static BOOL ImplHandleHelpEvent( Window* pMenuWindow, Menu* pMenu, USHORT nHighl
// den Hilfe-Index
ULONG nHelpId = pMenu->GetHelpId( nId );
if ( nHelpId )
- pHelp->Start( nHelpId );
+ pHelp->Start( nHelpId, NULL );
else
- pHelp->Start( HELP_INDEX );
+ pHelp->Start( HELP_INDEX, NULL );
}
bDone = TRUE;
}
diff --git a/vcl/source/window/status.cxx b/vcl/source/window/status.cxx
index e6ffc8019a63..b17700e8fd3b 100644
--- a/vcl/source/window/status.cxx
+++ b/vcl/source/window/status.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: status.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mt $ $Date: 2001-04-12 09:49:41 $
+ * last change: $Author: mt $ $Date: 2001-04-20 07:34:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -763,7 +763,7 @@ void StatusBar::RequestHelp( const HelpEvent& rHEvt )
// Wenn eine Hilfe existiert, dann ausloesen
Help* pHelp = Application::GetHelp();
if ( pHelp )
- pHelp->Start( nHelpId );
+ pHelp->Start( nHelpId, this );
return;
}
}
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx
index 1585e9d7ce62..03c9d25bda40 100644
--- a/vcl/source/window/toolbox.cxx
+++ b/vcl/source/window/toolbox.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: toolbox.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: th $ $Date: 2001-03-20 17:46:36 $
+ * last change: $Author: mt $ $Date: 2001-04-20 07:34:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -3726,7 +3726,7 @@ void ToolBox::RequestHelp( const HelpEvent& rHEvt )
// Wenn eine Hilfe existiert, dann ausloesen
Help* pHelp = Application::GetHelp();
if ( pHelp )
- pHelp->Start( nHelpId );
+ pHelp->Start( nHelpId, this );
return;
}
}
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 87201d3b8c42..ba84ad671073 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: window.cxx,v $
*
- * $Revision: 1.19 $
+ * $Revision: 1.20 $
*
- * last change: $Author: mt $ $Date: 2001-04-12 09:49:41 $
+ * last change: $Author: mt $ $Date: 2001-04-20 07:34:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -4370,7 +4370,7 @@ void Window::RequestHelp( const HelpEvent& rHEvt )
Help* pHelp = Application::GetHelp();
if ( pHelp )
- pHelp->Start( nStartHelpId );
+ pHelp->Start( nStartHelpId, this );
}
}
}