xj qian
2024-06-25 c2e7609cd65ad838edf1b7ea909af8ac50b6b8e9
jrj/xframe/xcontrol/ximageview.hpp
@@ -15,13 +15,13 @@
        return (kimageview*)getNativePointer();
    }
public:
    int AddImages(LPCTSTR pUrl, LPTSTR pText=NULL)
    int AddImages(LPCTSTR pUrl, LPCTSTR pText=NULL)
    {
        return GetKImageView()->AddImages(pUrl, pText);
        return GetKImageView()->AddImages(pUrl, (LPTSTR)pText);
    }
    int InsertImages(LPCTSTR pUrl, LPTSTR pText, int nIndex)
    int InsertImages(LPCTSTR pUrl, LPCTSTR pText, int nIndex)
    {
        return GetKImageView()->InsertImages(pUrl, pText,nIndex);
        return GetKImageView()->InsertImages(pUrl,(LPTSTR)pText,nIndex);
    }
    int RemoveImage(int nIndex)
    {