summaryrefslogtreecommitdiffstats
path: root/app/calltype.h
diff options
context:
space:
mode:
authorMatt Porter <mporter@konsulko.com>2018-06-22 16:56:00 -0400
committerMatt Porter <mporter@konsulko.com>2018-06-22 16:57:41 -0400
commit677eb7cc1bd06058e2ac7478f6c5d3a6af4a53dc (patch)
tree8d4d59b042da0737a90d503c9cf1c28853a2113d /app/calltype.h
parenta7fb49c552a96a4f4709363a708b722e66fd343e (diff)
Remove all static call history model support
Remove all of the static call history model support that was deprecated by the new RecentCallModel support. Bug-AGL: SPEC-1436 Change-Id: Ie4354af26d946b40797f57b359dbe1de9f5a9bc3 Signed-off-by: Matt Porter <mporter@konsulko.com>
Diffstat (limited to 'app/calltype.h')
-rw-r--r--app/calltype.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/app/calltype.h b/app/calltype.h
deleted file mode 100644
index 03eb152..0000000
--- a/app/calltype.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (C) 2018 Konsulko Group
- *
- * Licensed 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 <QObject>
-
-class CallType
-{
- Q_GADGET
- public:
- enum Value {
- Missed,
- Outgoing,
- Incoming,
- };
- Q_ENUM(Value)
-
- private:
- CallType();
-};