From 1e37017d4e42490dbe533b8837b2d9dc167fd8d6 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Tue, 28 Mar 2017 16:42:14 -0700 Subject: [PATCH] frontend-tools: Rename some files Changing the name of certain captions source files so it specifies which caption API the files are for. "mssapi" for Microsoft's speech API. --- UI/frontend-plugins/frontend-tools/CMakeLists.txt | 4 ++-- .../{captions-stream.cpp => captions-mssapi-stream.cpp} | 2 +- .../{captions-stream.hpp => captions-mssapi-stream.hpp} | 0 UI/frontend-plugins/frontend-tools/captions.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename UI/frontend-plugins/frontend-tools/{captions-stream.cpp => captions-mssapi-stream.cpp} (99%) rename UI/frontend-plugins/frontend-tools/{captions-stream.hpp => captions-mssapi-stream.hpp} (100%) diff --git a/UI/frontend-plugins/frontend-tools/CMakeLists.txt b/UI/frontend-plugins/frontend-tools/CMakeLists.txt index 558649538..0519eab4a 100644 --- a/UI/frontend-plugins/frontend-tools/CMakeLists.txt +++ b/UI/frontend-plugins/frontend-tools/CMakeLists.txt @@ -45,10 +45,10 @@ if(WIN32) set(frontend-tools_PLATFORM_SOURCES ${frontend-tools_PLATFORM_SOURCES} captions.cpp - captions-stream.cpp) + captions-mssapi-stream.cpp) set(frontend-tools_PLATFORM_HEADERS captions.hpp - captions-stream.hpp) + captions-mssapi-stream.hpp) set(frontend-tools_PLATFORM_UI forms/captions.ui) endif() diff --git a/UI/frontend-plugins/frontend-tools/captions-stream.cpp b/UI/frontend-plugins/frontend-tools/captions-mssapi-stream.cpp similarity index 99% rename from UI/frontend-plugins/frontend-tools/captions-stream.cpp rename to UI/frontend-plugins/frontend-tools/captions-mssapi-stream.cpp index b983bad16..cc04e93fb 100644 --- a/UI/frontend-plugins/frontend-tools/captions-stream.cpp +++ b/UI/frontend-plugins/frontend-tools/captions-mssapi-stream.cpp @@ -1,4 +1,4 @@ -#include "captions-stream.hpp" +#include "captions-mssapi-stream.hpp" #include #include #include diff --git a/UI/frontend-plugins/frontend-tools/captions-stream.hpp b/UI/frontend-plugins/frontend-tools/captions-mssapi-stream.hpp similarity index 100% rename from UI/frontend-plugins/frontend-tools/captions-stream.hpp rename to UI/frontend-plugins/frontend-tools/captions-mssapi-stream.hpp diff --git a/UI/frontend-plugins/frontend-tools/captions.cpp b/UI/frontend-plugins/frontend-tools/captions.cpp index c26d5b9f7..8e5d77bc5 100644 --- a/UI/frontend-plugins/frontend-tools/captions.cpp +++ b/UI/frontend-plugins/frontend-tools/captions.cpp @@ -1,5 +1,5 @@ #include -#include "captions-stream.hpp" +#include "captions-mssapi-stream.hpp" #include "captions.hpp" #include "tool-helpers.hpp" #include