AsynchronousCall.cxx (d64288ea) AsynchronousCall.cxx (3091fa8a)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 14 unchanged lines hidden (view full) ---

23
24#include "AsynchronousCall.hxx"
25
26#include <vcl/svapp.hxx>
27
28
29namespace sfx2 { namespace sidebar {
30
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 14 unchanged lines hidden (view full) ---

23
24#include "AsynchronousCall.hxx"
25
26#include <vcl/svapp.hxx>
27
28
29namespace sfx2 { namespace sidebar {
30
31AsynchronousCall::AsynchronousCall (void)
32 : maAction(),
33 mnCallId(0)
34{
35}
36
37
38
39
31AsynchronousCall::AsynchronousCall (const Action& rAction)
32 : maAction(rAction),
33 mnCallId(0)
34{
35}
36
37
38

--- 55 unchanged lines hidden ---
40AsynchronousCall::AsynchronousCall (const Action& rAction)
41 : maAction(rAction),
42 mnCallId(0)
43{
44}
45
46
47

--- 55 unchanged lines hidden ---