| 2925 | } |
| 2926 | |
| 2927 | e_LineEndStyle WindowTitleWidget::getLineEndStyle() |
| 2928 | { |
| 2929 | |
| 2930 | qint32 current = m_pLineEndStyleSelector->currentIndex(); |
| 2931 | if(current == 0) |
| 2932 | return eLineEndStyleUnix; |
| 2933 | else if(current == 1) |
| 2934 | return eLineEndStyleDos; |
| 2935 | else |
| 2936 | return eLineEndStyleConflict; |
| 2937 | } |
| 2938 | |
| 2939 | void WindowTitleWidget::setEncodings(const QByteArray& pCodecForA, const QByteArray& pCodecForB, const QByteArray& pCodecForC) |
| 2940 | { |
nothing calls this directly
no outgoing calls
no test coverage detected