summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/kdejava/KDESupport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/kdejava/KDESupport.cpp')
-rw-r--r--kdejava/koala/kdejava/KDESupport.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdejava/koala/kdejava/KDESupport.cpp b/kdejava/koala/kdejava/KDESupport.cpp
index 9c3059d1..ea0f9649 100644
--- a/kdejava/koala/kdejava/KDESupport.cpp
+++ b/kdejava/koala/kdejava/KDESupport.cpp
@@ -123,19 +123,19 @@ KDESupport::toKFileItemList(JNIEnv * env, jobjectArray itemList, KFileItemList *
return *kitemList;
}
-KCmdLineOptions *
-KDESupport::toKCmdLineOptions(JNIEnv * env, jobjectArray optionsArray)
+TDECmdLineOptions *
+KDESupport::toTDECmdLineOptions(JNIEnv * env, jobjectArray optionsArray)
{
jstring jstr;
const char * str;
int length;
int index;
jobjectArray optionEntry;
- KCmdLineOptions * cmdLineOptions;
+ TDECmdLineOptions * cmdLineOptions;
length = env->GetArrayLength(optionsArray);
// Allocate 'length + 1' entries, to include an all NULLs last entry
- cmdLineOptions = (KCmdLineOptions *) calloc(length + 1, sizeof(struct KCmdLineOptions));
+ cmdLineOptions = (TDECmdLineOptions *) calloc(length + 1, sizeof(struct TDECmdLineOptions));
for (index = 0; index < length; index++) {
optionEntry = (jobjectArray) env->GetObjectArrayElement(optionsArray, index);