| 856 | |
| 857 | |
| 858 | QString Global::getEditorStyle(bool colorOnly) { |
| 859 | QString returnValue = ""; |
| 860 | if (!colorOnly) { |
| 861 | returnValue = "document.body.style.background='"+this->getEditorBackgroundColor()+"'; "; |
| 862 | } |
| 863 | returnValue = returnValue+"document.body.style.color='"+this->getEditorFontColor()+"';"; |
| 864 | |
| 865 | return "function setColor() { "+returnValue +" }; setColor();"; |
| 866 | } |
| 867 | |
| 868 | |
| 869 |
nothing calls this directly
no test coverage detected