Commit 0761df67 authored by Hiroshi Sumita's avatar Hiroshi Sumita
Browse files

Removes PyZy prefix from filename.

BUG=None
TEST=Manual

Review URL: https://codereview.appspot.com/6307059
parent 0576f609
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ m4_define([pyzy_released], [1])

m4_define([pyzy_major_version], [0])
m4_define([pyzy_minor_version], [0])
m4_define([pyzy_micro_version], [7])
m4_define([pyzy_micro_version], [8])
m4_define([pyzy_interface_age], [0])
m4_define([pyzy_binary_age],
          [m4_eval(100 * pyzy_minor_version + pyzy_micro_version)])
+3 −3
Original line number Diff line number Diff line
@@ -574,9 +574,9 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.

INPUT                  = @top_srcdir@/src/PyZyConst.h \
                         @top_srcdir@/src/PyZyInputContext.h \
                         @top_srcdir@/src/PyZyVariant.h	
INPUT                  = @top_srcdir@/src/Const.h \
                         @top_srcdir@/src/InputContext.h \
                         @top_srcdir@/src/Variant.h
                         

# This tag can be used to specify the character encoding of the source files
+0 −0

File moved.

+6 −5
Original line number Diff line number Diff line
@@ -20,13 +20,14 @@
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */
#include "PyZyBopomofoContext.h"
#include "PyZyConfig.h"
#include "PyZySimpTradConverter.h"
#include "PyZyPinyinParser.h"
#include "BopomofoContext.h"

#include "Config.h"
#include "PinyinParser.h"
#include "SimpTradConverter.h"

namespace PyZy {
#include "PyZyBopomofoKeyboard.h"
#include "BopomofoKeyboard.h"

const static char * bopomofo_select_keys[] = {
    "1234567890",
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
#ifndef __PYZY_BOPOMOFO_CONTEXT_H_
#define __PYZY_BOPOMOFO_CONTEXT_H_

#include "PyZyPhoneticContext.h"
#include "PhoneticContext.h"

namespace PyZy {

Loading