You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by af...@apache.org on 2013/05/13 09:40:20 UTC

svn commit: r1481723 - in /openoffice/trunk/main/sfx2/source/sidebar: AsynchronousCall.cxx IContextChangeReceiver.cxx ILayoutableWindow.cxx

Author: af
Date: Mon May 13 07:40:20 2013
New Revision: 1481723

URL: http://svn.apache.org/r1481723
Log:
122047: Added missing implementation of virtual destructors.

Added:
    openoffice/trunk/main/sfx2/source/sidebar/IContextChangeReceiver.cxx
    openoffice/trunk/main/sfx2/source/sidebar/ILayoutableWindow.cxx
Modified:
    openoffice/trunk/main/sfx2/source/sidebar/AsynchronousCall.cxx

Modified: openoffice/trunk/main/sfx2/source/sidebar/AsynchronousCall.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sfx2/source/sidebar/AsynchronousCall.cxx?rev=1481723&r1=1481722&r2=1481723&view=diff
==============================================================================
--- openoffice/trunk/main/sfx2/source/sidebar/AsynchronousCall.cxx (original)
+++ openoffice/trunk/main/sfx2/source/sidebar/AsynchronousCall.cxx Mon May 13 07:40:20 2013
@@ -72,7 +72,7 @@ void AsynchronousCall::CancelRequest (vo
     if (mnCallId != 0)
     {
         Application::RemoveUserEvent(mnCallId);
-        mnCallId = -1;
+        mnCallId = 0;
     }
 }
 

Added: openoffice/trunk/main/sfx2/source/sidebar/IContextChangeReceiver.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sfx2/source/sidebar/IContextChangeReceiver.cxx?rev=1481723&view=auto
==============================================================================
--- openoffice/trunk/main/sfx2/source/sidebar/IContextChangeReceiver.cxx (added)
+++ openoffice/trunk/main/sfx2/source/sidebar/IContextChangeReceiver.cxx Mon May 13 07:40:20 2013
@@ -0,0 +1,32 @@
+/**************************************************************
+ * 
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ * 
+ *************************************************************/
+
+#include <sfx2/sidebar/IContextChangeReceiver.hxx>
+
+
+namespace sfx2 { namespace sidebar {
+
+
+IContextChangeReceiver::~IContextChangeReceiver (void)
+{
+}
+
+} } // end of namespace ::sd::sidebar

Added: openoffice/trunk/main/sfx2/source/sidebar/ILayoutableWindow.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sfx2/source/sidebar/ILayoutableWindow.cxx?rev=1481723&view=auto
==============================================================================
--- openoffice/trunk/main/sfx2/source/sidebar/ILayoutableWindow.cxx (added)
+++ openoffice/trunk/main/sfx2/source/sidebar/ILayoutableWindow.cxx Mon May 13 07:40:20 2013
@@ -0,0 +1,32 @@
+/**************************************************************
+ * 
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ * 
+ *************************************************************/
+
+#include <sfx2/sidebar/ILayoutableWindow.hxx>
+
+
+namespace sfx2 { namespace sidebar {
+
+
+ILayoutableWindow::~ILayoutableWindow (void)
+{
+}
+
+} } // end of namespace ::sd::sidebar