Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 912776
Collapse All | Expand All

(-)a/src/base/absl.gyp (-1 / +1 lines)
Lines 398-404 Link Here
398
          'all_dependent_settings': {
398
          'all_dependent_settings': {
399
            'link_settings': {
399
            'link_settings': {
400
              'libraries': [
400
              'libraries': [
401
                '-labsl_synchronization -labsl_flags -labsl_graphcycles_internal',
401
                '-labsl_synchronization -labsl_flags -labsl_graphcycles_internal -labsl_string_view',
402
              ],
402
              ],
403
            },
403
            },
404
          },
404
          },
(-)a/src/unix/fcitx/surrounding_text_util.cc (-3 / +3 lines)
Lines 233-241 bool GetSurroundingText(FcitxInstance* instance, Link Here
233
233
234
    const size_t selection_start = std::min(cursor_pos, anchor_pos);
234
    const size_t selection_start = std::min(cursor_pos, anchor_pos);
235
    const size_t selection_length = std::abs(info->relative_selected_length);
235
    const size_t selection_length = std::abs(info->relative_selected_length);
236
    info->preceding_text = Util::Utf8SubString(surrounding_text, 0, selection_start);
236
    info->preceding_text = std::string(Util::Utf8SubString(surrounding_text, 0, selection_start));
237
    info->selection_text = Util::Utf8SubString(surrounding_text, selection_start, selection_length);
237
    info->selection_text = std::string(Util::Utf8SubString(surrounding_text, selection_start, selection_length));
238
    info->following_text = Util::Utf8SubString(surrounding_text, selection_start + selection_length);
238
    info->following_text = std::string(Util::Utf8SubString(surrounding_text, selection_start + selection_length));
239
    return true;
239
    return true;
240
}
240
}
(-)a/src/unix/fcitx/eim.cc (+1 lines)
Lines 33-38 Link Here
33
#include <fcitx/module.h>
33
#include <fcitx/module.h>
34
#include <fcitx/keys.h>
34
#include <fcitx/keys.h>
35
#include <fcitx-config/xdg.h>
35
#include <fcitx-config/xdg.h>
36
#undef InvokeFunction
36
#include "fcitx_mozc.h"
37
#include "fcitx_mozc.h"
37
#include "mozc_connection.h"
38
#include "mozc_connection.h"
38
#include "mozc_response_parser.h
39
#include "mozc_response_parser.h

Return to bug 912776